Skip to content

Commit

Permalink
publish: bump version to v10.0.0-rc7
Browse files Browse the repository at this point in the history
  • Loading branch information
sagold committed Jan 5, 2025
1 parent af672ef commit 751fed3
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
> footprint or high performance, this package focuses on exposing utilities for browser and node environments and
> lessens the pain to build custom tools around json-schema.
> ⚠️ This documentation refers to the upcoming release version 10, which can be installed by `npm install [email protected]rc6`. For the latest release please refer to the [documentation of version 9.3.5](https://github.com/sagold/json-schema-library/tree/v9.3.5)
> ⚠️ This documentation refers to the upcoming release version 10, which can be installed by `npm install [email protected]rc7`. For the latest release please refer to the [documentation of version 9.3.5](https://github.com/sagold/json-schema-library/tree/v9.3.5)
<p style="text-align:center">
<a href="#draft-methods">draft methods</a> | <a href="#draft-extensions">draft extensions</a> | <a href="#draft-customization">draft customization</a> | <a href="#breaking-changes">breaking changes</a>
Expand Down
2 changes: 1 addition & 1 deletion dist/jsonSchemaLibrary.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/module/lib/config/strings.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@ export default {
MaximumError: "Value in `{{pointer}}` is `{{length}}`, but should be `{{maximum}}` at maximum",
MaxItemsError: "Too many items in `{{pointer}}`, should be `{{maximum}}` at most, but got `{{length}}`",
MaxLengthError: "Value `{{pointer}}` should have a maximum length of `{{maxLength}}`, but got `{{length}}`.",
MaxPropertiesError: "Too many properties in `{{pointer}}`, should be `{{maximum}}` at most, but got `{{length}}`",
MaxPropertiesError: "Too many properties in `{{pointer}}`, should be `{{maxProperties}}` at most, but got `{{length}}`",
MinimumError: "Value in `{{pointer}}` is `{{length}}`, but should be `{{minimum}}` at minimum",
MinItemsError: "Too few items in `{{pointer}}`, should be at least `{{minItems}}`, but got `{{length}}`",
MinItemsOneError: "At least one item is required in `{{pointer}}`",
MinLengthError: "Value `{{pointer}}` should have a minimum length of `{{minLength}}`, but got `{{length}}`.",
MinLengthOneError: "A value is required in `{{pointer}}`",
MinPropertiesError: "Too few properties in `{{pointer}}`, should be at least `{{minimum}}`, but got `{{length}}`",
MinPropertiesError: "Too few properties in `{{pointer}}`, should be at least `{{minProperties}}`, but got `{{length}}`",
MissingDependencyError: "The required propery '{{missingProperty}}' in `{{pointer}}` is missing",
MissingOneOfPropertyError: "Value at `{{pointer}}` property: `{{property}}`",
MultipleOfError: "Expected `{{value}}` in `{{pointer}}` to be multiple of `{{multipleOf}}`",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "json-schema-library",
"version": "10.0.0-rc6",
"version": "10.0.0-rc7",
"description": "Customizable and hackable json-validator and json-schema utilities for traversal, data generation and validation",
"module": "dist/module/index.js",
"types": "dist/index.d.ts",
Expand Down

0 comments on commit 751fed3

Please sign in to comment.