Skip to content

Commit 5050109

Browse files
committed
Release 2.12.2
1 parent 78f4658 commit 5050109

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

CHANGELOG.md

+9-4
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,16 @@ The `Unreleased` section name is replaced by the expected version of next releas
1010

1111
### Added
1212
### Changed
13-
14-
- Target `FsCodec.SystemTextJson` v `2.3.0` [#138](https://github.com/jet/propulsion/pull/138)
15-
1613
### Removed
1714
### Fixed
1815

16+
<a name="2.12.2"></a>
17+
## [2.12.2] - 2022-03-10
18+
19+
### Changed
20+
21+
- `Kafka`: Target `FsCodec.NewtonsoftJson` v `2.3.2` [#138](https://github.com/jet/propulsion/pull/138)
22+
1923
<a name="2.12.1"></a>
2024
## [2.12.1] - 2022-02-15
2125

@@ -707,7 +711,8 @@ The `Unreleased` section name is replaced by the expected version of next releas
707711

708712
## squashed prior to initial relevant commit
709713

710-
[Unreleased]: https://github.com/jet/propulsion/compare/2.12.1...HEAD
714+
[Unreleased]: https://github.com/jet/propulsion/compare/2.12.2...HEAD
715+
[2.12.2]: https://github.com/jet/propulsion/compare/2.12.1...2.12.2
711716
[2.12.1]: https://github.com/jet/propulsion/compare/2.12.0...2.12.1
712717
[2.12.0]: https://github.com/jet/propulsion/compare/2.12.0-rc.3...2.12.0
713718
[2.12.0-rc.3]: https://github.com/jet/propulsion/compare/2.12.0-rc.2...2.12.0-rc.3

src/Propulsion.Kafka/Codec.fs

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ open Propulsion.Streams
1111
/// Prepackaged serialization helpers with appropriate settings given the types will roundtrip correctly with default Json.net settings
1212
type Serdes private () =
1313

14-
static let serdes = lazy NewtonsoftJson.Serdes(Settings.CreateDefault())
14+
static let serdes = lazy NewtonsoftJson.Serdes Settings.Default
1515

1616
static member Serialize<'T>(value : 'T) : string = serdes.Value.Serialize(value)
1717
static member Deserialize(json : string) : 'T = serdes.Value.Deserialize(json)

src/Propulsion.Kafka/Propulsion.Kafka.fsproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<PackageReference Include="FSharp.Core" Version="4.3.4" />
2727
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
2828

29-
<PackageReference Include="FsCodec.NewtonsoftJson" Version="2.3.0" />
29+
<PackageReference Include="FsCodec.NewtonsoftJson" Version="2.3.2" />
3030
<PackageReference Include="FsKafka" Version="[1.7.0, 1.9.99)" />
3131
</ItemGroup>
3232

0 commit comments

Comments
 (0)