Skip to content

Commit

Permalink
Release 2.12.2
Browse files Browse the repository at this point in the history
  • Loading branch information
bartelink committed Mar 10, 2022
1 parent 78f4658 commit 5050109
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
13 changes: 9 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,16 @@ The `Unreleased` section name is replaced by the expected version of next releas

### Added
### Changed

- Target `FsCodec.SystemTextJson` v `2.3.0` [#138](https://github.com/jet/propulsion/pull/138)

### Removed
### Fixed

<a name="2.12.2"></a>
## [2.12.2] - 2022-03-10

### Changed

- `Kafka`: Target `FsCodec.NewtonsoftJson` v `2.3.2` [#138](https://github.com/jet/propulsion/pull/138)

<a name="2.12.1"></a>
## [2.12.1] - 2022-02-15

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

## squashed prior to initial relevant commit

[Unreleased]: https://github.com/jet/propulsion/compare/2.12.1...HEAD
[Unreleased]: https://github.com/jet/propulsion/compare/2.12.2...HEAD
[2.12.2]: https://github.com/jet/propulsion/compare/2.12.1...2.12.2
[2.12.1]: https://github.com/jet/propulsion/compare/2.12.0...2.12.1
[2.12.0]: https://github.com/jet/propulsion/compare/2.12.0-rc.3...2.12.0
[2.12.0-rc.3]: https://github.com/jet/propulsion/compare/2.12.0-rc.2...2.12.0-rc.3
Expand Down
2 changes: 1 addition & 1 deletion src/Propulsion.Kafka/Codec.fs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ open Propulsion.Streams
/// Prepackaged serialization helpers with appropriate settings given the types will roundtrip correctly with default Json.net settings
type Serdes private () =

static let serdes = lazy NewtonsoftJson.Serdes(Settings.CreateDefault())
static let serdes = lazy NewtonsoftJson.Serdes Settings.Default

static member Serialize<'T>(value : 'T) : string = serdes.Value.Serialize(value)
static member Deserialize(json : string) : 'T = serdes.Value.Deserialize(json)
Expand Down
2 changes: 1 addition & 1 deletion src/Propulsion.Kafka/Propulsion.Kafka.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<PackageReference Include="FSharp.Core" Version="4.3.4" />
<PackageReference Include="System.ValueTuple" Version="4.5.0" />

<PackageReference Include="FsCodec.NewtonsoftJson" Version="2.3.0" />
<PackageReference Include="FsCodec.NewtonsoftJson" Version="2.3.2" />
<PackageReference Include="FsKafka" Version="[1.7.0, 1.9.99)" />
</ItemGroup>

Expand Down

0 comments on commit 5050109

Please sign in to comment.