Skip to content

Commit f7fb98b

Browse files
committed
Release 3.0.2
FsCodec.SystemTextJson only
1 parent e18a668 commit f7fb98b

File tree

4 files changed

+16
-5
lines changed

4 files changed

+16
-5
lines changed

CHANGELOG.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,15 @@ The `Unreleased` section name is replaced by the expected version of next releas
1313
### Removed
1414
### Fixed
1515

16+
<a name="3.0.2"></a>
17+
## [3.0.2] - 2024-7-11
18+
19+
### Fix
20+
21+
- `SystemTextJson`: Relax dependency to `FsCodec.Box` v `3.0.0`
22+
1623
<a name="3.0.1"></a>
17-
## [3.0.1] - 2024-7-11
24+
## [3.0.1] - 2024-7-11 (Unlisted)
1825

1926
### Changed
2027

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

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

478-
[Unreleased]: https://github.com/jet/FsCodec/compare/3.0.1...HEAD
485+
[Unreleased]: https://github.com/jet/FsCodec/compare/3.0.2...HEAD
486+
[3.0.2]: https://github.com/jet/FsCodec/compare/3.0.1...3.0.2
479487
[3.0.1]: https://github.com/jet/FsCodec/compare/3.0.0...3.0.1
480488
[3.0.0]: https://github.com/jet/FsCodec/compare/3.0.0-rc.18...3.0.0
481489
[3.0.0-rc.18]: https://github.com/jet/FsCodec/compare/3.0.0-rc.17...3.0.0-rc.18

src/FsCodec.Box/FsCodec.Box.fsproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@
2323
</ItemGroup>
2424

2525
<ItemGroup>
26-
<ProjectReference Include="../FsCodec/FsCodec.fsproj" />
26+
<ProjectReference Condition=" '$(Configuration)' == 'Debug' " Include="../FsCodec/FsCodec.fsproj" />
27+
<PackageReference Condition=" '$(Configuration)' == 'Release' " Include="FsCodec" Version="[3.0.0, 4.0.0)" />
2728
</ItemGroup>
2829

2930
</Project>

src/FsCodec.NewtonsoftJson/FsCodec.NewtonsoftJson.fsproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@
2929
</ItemGroup>
3030

3131
<ItemGroup>
32-
<ProjectReference Include="../FsCodec.Box/FsCodec.Box.fsproj" />
32+
<ProjectReference Condition=" '$(Configuration)' == 'Debug' " Include="../FsCodec.Box/FsCodec.Box.fsproj" />
33+
<PackageReference Condition=" '$(Configuration)' == 'Release' " Include="FsCodec.Box" Version="[3.0.0, 4.0.0)" />
3334
</ItemGroup>
3435

3536
</Project>

src/FsCodec.SystemTextJson/FsCodec.SystemTextJson.fsproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@
3030
</ItemGroup>
3131

3232
<ItemGroup>
33-
<ProjectReference Include="../FsCodec.Box/FsCodec.Box.fsproj" />
33+
<ProjectReference Condition=" '$(Configuration)' == 'Debug' " Include="../FsCodec.Box/FsCodec.Box.fsproj" />
34+
<PackageReference Condition=" '$(Configuration)' == 'Release' " Include="FsCodec.Box" Version="[3.0.0, 4.0.0)" />
3435
</ItemGroup>
3536

3637
</Project>

0 commit comments

Comments
 (0)