Skip to content

Commit

Permalink
update version and release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
gregsdennis committed Mar 25, 2024
1 parent 101012e commit 5192b84
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 4 deletions.
4 changes: 2 additions & 2 deletions JsonSchema.Generation/JsonSchema.Generation.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<DocumentationFile>JsonSchema.Net.Generation.xml</DocumentationFile>
<LangVersion>latest</LangVersion>
<Version>4.1.1</Version>
<FileVersion>4.1.1.0</FileVersion>
<Version>4.2.0</Version>
<FileVersion>4.2.0.0</FileVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
Expand Down
4 changes: 2 additions & 2 deletions JsonSchema/JsonSchema.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
<PackageProjectUrl>https://github.com/gregsdennis/json-everything</PackageProjectUrl>
<RepositoryUrl>https://github.com/gregsdennis/json-everything</RepositoryUrl>
<PackageTags>json-schema validation schema json</PackageTags>
<Version>6.0.6</Version>
<FileVersion>6.0.6.0</FileVersion>
<Version>6.0.7</Version>
<FileVersion>6.0.7.0</FileVersion>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<AssemblyName>JsonSchema.Net</AssemblyName>
Expand Down
15 changes: 15 additions & 0 deletions tools/ApiDocsGenerator/release-notes/rn-json-schema-generation.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,21 @@ title: JsonSchema.Net.Generation
icon: fas fa-tag
order: "09.05"
---
# [4.2.0](https://github.com/gregsdennis/json-everything/pull/698) {#release-schema-4.2.0}

[#696](https://github.com/gregsdennis/json-everything/issues/696) - Number-based constraints ignored for nullable number types. Thanks to [@rhwork](https://github.com/rhwork) for reporting this.

The following have been updated:

- `[Minimum]`
- `[ExclusiveMinimum]`
- `[Maximum]`
- `[ExclusiveMaximum]`
- `[IfMin]`
- `[IfMax]`

Added extension method `bool IsNullableNumber(this Type)`.

# [4.1.1](https://github.com/gregsdennis/json-everything/pull/670)

Add support for multiple `[If]` attributes for the same property under the same group creating an `enum` keyword with all of the values.
Expand Down
4 changes: 4 additions & 0 deletions tools/ApiDocsGenerator/release-notes/rn-json-schema.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ title: JsonSchema.Net
icon: fas fa-tag
order: "09.01"
---
# [6.0.7](https://github.com/gregsdennis/json-everything/pull/698) {#release-schema-6.0.7}

[#697](https://github.com/gregsdennis/json-everything/issues/697) - `allOf`, `anyOf`, `oneOf`, and `prefixItems` all require at least one subschema, but deserialization of these keywords didn't enforce this. Fix will throw `ArgumentException` when attempting to deserialize empty subschema sets. Thanks to [@Era-cell](https://github.com/Era-cell) for reporting this.

# [6.0.6](https://github.com/gregsdennis/json-everything/pull/695) {#release-schema-6.0.6}

Marked `Pre202012EvaluationResultsJsonConverter` as obsolete. The 2019-09/2020-12 output structure isn't very well specified, and making the current `EvaluationResults` architecture serialize to these formats isn't worth the effort.
Expand Down

0 comments on commit 5192b84

Please sign in to comment.