Skip to content

Commit 45790d9

Browse files
authored
-> 0.11.3 (#387)
1 parent 0f25765 commit 45790d9

File tree

3 files changed

+9
-10
lines changed

3 files changed

+9
-10
lines changed

README.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -33,23 +33,21 @@ client. Thanks Andreas!
3333

3434
## Usage
3535

36-
Refer to the [API docs](https://docs.confluent.io/current/clients/confluent-kafka-dotnet/api/Confluent.Kafka.html).
36+
Reference the [Confluent.Kafka](https://www.nuget.org/packages/Confluent.Kafka/) NuGet package (version 0.11.3).
3737

38-
Reference the [Confluent.Kafka](https://www.nuget.org/packages/Confluent.Kafka/) NuGet package (version 0.11.3-RC1).
39-
40-
To install confluent-kafka-dotnet from within Visual Studio, search for Confluent.Kafka and librdkafka.redist in the
41-
NuGet Package Manager UI, or run the following command in the Package Manager Console:
38+
To install confluent-kafka-dotnet from within Visual Studio, search for Confluent.Kafka in the NuGet Package
39+
Manager UI, or run the following command in the Package Manager Console:
4240

4341
```
44-
Install-Package Confluent.Kafka -Version 0.11.3-RC1
42+
Install-Package Confluent.Kafka -Version 0.11.3
4543
```
4644

4745
To reference in a dotnet core project, explicitly add a package reference to your .csproj file:
4846

4947
```
5048
<ItemGroup>
5149
...
52-
<PackageReference Include="Confluent.Kafka" Version="0.11.3-RC1" />
50+
<PackageReference Include="Confluent.Kafka" Version="0.11.3" />
5351
...
5452
</ItemGroup>
5553
```
@@ -61,6 +59,7 @@ The version suffix of these nuget packages matches the appveyor build number. Yo
6159
particular build number corresponds to by looking at the
6260
[AppVeyor build history](https://ci.appveyor.com/project/ConfluentClientEngineering/confluent-kafka-dotnet/history)
6361

62+
See the [API documentation](https://docs.confluent.io/current/clients/confluent-kafka-dotnet/api/Confluent.Kafka.html) for more information.
6463

6564
## Examples
6665

src/Confluent.Kafka/Confluent.Kafka.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@
1212
<PackageId>Confluent.Kafka</PackageId>
1313
<Title>Confluent.Kafka</Title>
1414
<AssemblyName>Confluent.Kafka</AssemblyName>
15-
<VersionPrefix>0.11.3-RC1</VersionPrefix>
15+
<VersionPrefix>0.11.3</VersionPrefix>
1616
<TargetFrameworks>net45;net46;netstandard1.3;</TargetFrameworks>
1717
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
1818
<GenerateDocumentationFile>true</GenerateDocumentationFile>
1919
</PropertyGroup>
2020

2121
<ItemGroup>
22-
<PackageReference Include="librdkafka.redist" Version="0.11.3-RC1" />
22+
<PackageReference Include="librdkafka.redist" Version="0.11.3" />
2323
</ItemGroup>
2424

2525
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.3' ">

test/Confluent.Kafka.StrongName.UnitTests/Confluent.Kafka.StrongName.UnitTests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
</ItemGroup>
2525

2626
<ItemGroup>
27-
<PackageReference Include="librdkafka.redist" Version="0.11.3-RC1" />
27+
<PackageReference Include="librdkafka.redist" Version="0.11.3" />
2828
</ItemGroup>
2929

3030
<ItemGroup>

0 commit comments

Comments
 (0)