Skip to content

Commit

Permalink
Release 3.0.2
Browse files Browse the repository at this point in the history
FsCodec.SystemTextJson only
  • Loading branch information
bartelink committed Jul 11, 2024
1 parent e18a668 commit f7fb98b
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 5 deletions.
12 changes: 10 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,15 @@ The `Unreleased` section name is replaced by the expected version of next releas
### Removed
### Fixed

<a name="3.0.2"></a>
## [3.0.2] - 2024-7-11

### Fix

- `SystemTextJson`: Relax dependency to `FsCodec.Box` v `3.0.0`

<a name="3.0.1"></a>
## [3.0.1] - 2024-7-11
## [3.0.1] - 2024-7-11 (Unlisted)

### Changed

Expand Down Expand Up @@ -475,7 +482,8 @@ Initial release based on merge of [Jet.JsonNet.Converters v0](https://github.com

Final release of Jet.JsonNet.Converters archived on [v0 branch](https://github.com/jet/FsCodec/tree/v0)

[Unreleased]: https://github.com/jet/FsCodec/compare/3.0.1...HEAD
[Unreleased]: https://github.com/jet/FsCodec/compare/3.0.2...HEAD
[3.0.2]: https://github.com/jet/FsCodec/compare/3.0.1...3.0.2
[3.0.1]: https://github.com/jet/FsCodec/compare/3.0.0...3.0.1
[3.0.0]: https://github.com/jet/FsCodec/compare/3.0.0-rc.18...3.0.0
[3.0.0-rc.18]: https://github.com/jet/FsCodec/compare/3.0.0-rc.17...3.0.0-rc.18
Expand Down
3 changes: 2 additions & 1 deletion src/FsCodec.Box/FsCodec.Box.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="../FsCodec/FsCodec.fsproj" />
<ProjectReference Condition=" '$(Configuration)' == 'Debug' " Include="../FsCodec/FsCodec.fsproj" />
<PackageReference Condition=" '$(Configuration)' == 'Release' " Include="FsCodec" Version="[3.0.0, 4.0.0)" />
</ItemGroup>

</Project>
3 changes: 2 additions & 1 deletion src/FsCodec.NewtonsoftJson/FsCodec.NewtonsoftJson.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="../FsCodec.Box/FsCodec.Box.fsproj" />
<ProjectReference Condition=" '$(Configuration)' == 'Debug' " Include="../FsCodec.Box/FsCodec.Box.fsproj" />
<PackageReference Condition=" '$(Configuration)' == 'Release' " Include="FsCodec.Box" Version="[3.0.0, 4.0.0)" />
</ItemGroup>

</Project>
3 changes: 2 additions & 1 deletion src/FsCodec.SystemTextJson/FsCodec.SystemTextJson.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="../FsCodec.Box/FsCodec.Box.fsproj" />
<ProjectReference Condition=" '$(Configuration)' == 'Debug' " Include="../FsCodec.Box/FsCodec.Box.fsproj" />
<PackageReference Condition=" '$(Configuration)' == 'Release' " Include="FsCodec.Box" Version="[3.0.0, 4.0.0)" />
</ItemGroup>

</Project>

0 comments on commit f7fb98b

Please sign in to comment.