File tree 3 files changed +11
-6
lines changed
3 files changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -10,12 +10,16 @@ The `Unreleased` section name is replaced by the expected version of next releas
10
10
11
11
### Added
12
12
### Changed
13
-
14
- - Target ` FsCodec.SystemTextJson ` v ` 2.3.0 ` [ #138 ] ( https://github.com/jet/propulsion/pull/138 )
15
-
16
13
### Removed
17
14
### Fixed
18
15
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
+
19
23
<a name =" 2.12.1 " ></a >
20
24
## [ 2.12.1] - 2022-02-15
21
25
@@ -707,7 +711,8 @@ The `Unreleased` section name is replaced by the expected version of next releas
707
711
708
712
## squashed prior to initial relevant commit
709
713
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
711
716
[ 2.12.1 ] : https://github.com/jet/propulsion/compare/2.12.0...2.12.1
712
717
[ 2.12.0 ] : https://github.com/jet/propulsion/compare/2.12.0-rc.3...2.12.0
713
718
[ 2.12.0-rc.3 ] : https://github.com/jet/propulsion/compare/2.12.0-rc.2...2.12.0-rc.3
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ open Propulsion.Streams
11
11
/// Prepackaged serialization helpers with appropriate settings given the types will roundtrip correctly with default Json.net settings
12
12
type Serdes private () =
13
13
14
- static let serdes = lazy NewtonsoftJson.Serdes( Settings.CreateDefault ())
14
+ static let serdes = lazy NewtonsoftJson.Serdes Settings.Default
15
15
16
16
static member Serialize < 'T >( value : 'T ) : string = serdes.Value.Serialize( value)
17
17
static member Deserialize ( json : string ) : 'T = serdes.Value.Deserialize( json)
Original file line number Diff line number Diff line change 26
26
<PackageReference Include =" FSharp.Core" Version =" 4.3.4" />
27
27
<PackageReference Include =" System.ValueTuple" Version =" 4.5.0" />
28
28
29
- <PackageReference Include =" FsCodec.NewtonsoftJson" Version =" 2.3.0 " />
29
+ <PackageReference Include =" FsCodec.NewtonsoftJson" Version =" 2.3.2 " />
30
30
<PackageReference Include =" FsKafka" Version =" [1.7.0, 1.9.99)" />
31
31
</ItemGroup >
32
32
You can’t perform that action at this time.
0 commit comments