Skip to content

Commit

Permalink
Target CK/librdkafka 1.5.3 (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
bartelink authored Dec 11, 2020
1 parent d581594 commit 6c94696
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ The `Unreleased` section name is replaced by the expected version of next releas

### Added
### Changed

- Target [`Confluent.Kafka [1.5.3]`](https://github.com/confluentinc/confluent-kafka-dotnet/blob/v1.5.3/CHANGELOG.md#153), [`librdkafka.redist [1.5.3]`](https://github.com/edenhill/librdkafka/releases/tag/v1.5.3) [#82](https://github.com/jet/FsKafka/pull/82)

### Removed
### Fixed

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ F# friendly wrapper for `Confluent.Kafka`, with minimal dependencies or addition

The components within this repository are delivered as a multi-targeted Nuget package targeting `net461` (F# 3.1+) and `netstandard2.0` (F# 4.5+) profiles

- [![NuGet](https://img.shields.io/nuget/v/FsKafka.svg)](https://www.nuget.org/packages/FsKafka/) `FsKafka`: Wraps `Confluent.Kafka` to provide efficient batched Kafka Producer and Consumer configurations with basic logging instrumentation. [Depends](https://www.fuget.org/packages/FsKafka) on `Confluent.Kafka [1.5.2]`, `librdkafka [1.5.2]` (pinned to ensure we use a tested pairing), `Serilog` (but no specific Serilog sinks, i.e. you configure to emit to `NLog` etc) and `Newtonsoft.Json` (used internally to parse Broker-provided Statistics for logging purposes).
- [![NuGet](https://img.shields.io/nuget/v/FsKafka.svg)](https://www.nuget.org/packages/FsKafka/) `FsKafka`: Wraps `Confluent.Kafka` to provide efficient batched Kafka Producer and Consumer configurations with basic logging instrumentation. [Depends](https://www.fuget.org/packages/FsKafka) on `Confluent.Kafka [1.5.3]`, `librdkafka [1.5.3]` (pinned to ensure we use a tested pairing), `Serilog` (but no specific Serilog sinks, i.e. you configure to emit to `NLog` etc) and `Newtonsoft.Json` (used internally to parse Broker-provided Statistics for logging purposes).
- [![NuGet](https://img.shields.io/nuget/v/FsKafka0.svg)](https://www.nuget.org/packages/FsKafka0/) `FsKafka0`: As per `FsKafka`; [Depends](https://www.fuget.org/packages/FsKafka0) on `Confluent.Kafka [0.11.3]`, `librdkafka [0.11.4]`, `Serilog` and `Newtonsoft.Json`.

## Related repos
Expand Down
4 changes: 2 additions & 2 deletions src/FsKafka/FsKafka.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
<PackageReference Include="FSharp.Core" Version="4.3.4" Condition=" '$(TargetFramework)' != 'net461' " />

<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
<PackageReference Include="Confluent.Kafka" Version="[1.5.2]" />
<PackageReference Include="librdkafka.redist" Version="[1.5.2]" />
<PackageReference Include="Confluent.Kafka" Version="[1.5.3]" />
<PackageReference Include="librdkafka.redist" Version="[1.5.3]" />
<PackageReference Include="Serilog" Version="2.7.1" />
</ItemGroup>

Expand Down

0 comments on commit 6c94696

Please sign in to comment.