Skip to content

Commit 53e4634

Browse files
authored
changes for rc3 (#483)
* changes for rc3 * review changes
1 parent 6c4536b commit 53e4634

File tree

5 files changed

+18
-13
lines changed

5 files changed

+18
-13
lines changed

README.md

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -42,18 +42,24 @@ confluent-kafka-dotnet is distributed via NuGet. We provide three packages:
4242
To install Confluent.Kafka from within Visual Studio, search for Confluent.Kafka in the NuGet Package Manager UI, or run the following command in the Package Manager Console:
4343

4444
```
45-
Install-Package Confluent.Kafka -Version 0.11.4-RC2
45+
Install-Package Confluent.Kafka -Version 0.11.4-RC3
4646
```
4747

4848
To add a reference to a dotnet core project, execute the following at the command line:
4949

5050
```
51-
dotnet add package -v 0.11.4-RC2 Confluent.Kafka
51+
dotnet add package -v 0.11.4-RC3 Confluent.Kafka
5252
```
5353

54-
Pre-release nuget packages are available from the following nuget package source (Note: this is not a web url - you should specify it in the nuget package manger):
55-
[https://ci.appveyor.com/nuget/confluent-kafka-dotnet](https://ci.appveyor.com/nuget/confluent-kafka-dotnet). The version suffix of these nuget packages matches the appveyor build number. You can see which commit a
56-
particular build number corresponds to by looking at the
54+
### Development Branch
55+
56+
We have started working towards a 1.0 release of the library which will occur after we add idempotence and transaction features. In order to best accomodate these and other changes,
57+
we will be making breaking changes to the API in that release. You can track our progress on the `1.0-experimental` branch (as well as corresponding packages on
58+
[nuget.org](https://www.nuget.org/packages/Confluent.Kafka/)). We have already added support for message headers and custom timestamps amongst other things. Note that all work on
59+
this branch is subject to change and should not be considered production ready. All feedback is very welcome!
60+
61+
Also, nuget packages corresponding to all release branch commits are available from the following nuget package source (Note: this is not a web url - you should specify it in the nuget package manger):
62+
[https://ci.appveyor.com/nuget/confluent-kafka-dotnet](https://ci.appveyor.com/nuget/confluent-kafka-dotnet). The version suffix of these nuget packages matches the appveyor build number. You can see which commit a particular build number corresponds to by looking at the
5763
[AppVeyor build history](https://ci.appveyor.com/project/ConfluentClientEngineering/confluent-kafka-dotnet/history)
5864

5965

@@ -116,8 +122,7 @@ public class Program
116122
using (var consumer = new Consumer<Null, string>(conf, null, new StringDeserializer(Encoding.UTF8)))
117123
{
118124
consumer.OnMessage += (_, msg)
119-
=> Console.WriteLine(
120-
$"Read '{msg.Value}' from: {msg.TopicPartitionOffset}");
125+
=> Console.WriteLine($"Read '{msg.Value}' from: {msg.TopicPartitionOffset}");
121126
122127
consumer.OnError += (_, error)
123128
=> Console.WriteLine($"Error: {error}");

src/Confluent.Kafka.Avro/Confluent.Kafka.Avro.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@
1212
<PackageId>Confluent.Kafka.Avro</PackageId>
1313
<Title>Confluent.Kafka.Avro</Title>
1414
<AssemblyName>Confluent.Kafka.Avro</AssemblyName>
15-
<VersionPrefix>0.11.4-RC2</VersionPrefix>
15+
<VersionPrefix>0.11.4-RC3</VersionPrefix>
1616
<TargetFrameworks>netstandard2.0;net452;</TargetFrameworks>
1717
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
1818
<GenerateDocumentationFile>true</GenerateDocumentationFile>
1919
</PropertyGroup>
2020

2121
<ItemGroup>
22-
<PackageReference Include="Confluent.Apache.Avro" Version="1.7.7.4" />
22+
<PackageReference Include="Confluent.Apache.Avro" Version="1.7.7.5" />
2323
<PackageReference Include="Newtonsoft.Json" Version="9.0.1" />
2424
</ItemGroup>
2525

src/Confluent.Kafka/Confluent.Kafka.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@
1111
<PackageId>Confluent.Kafka</PackageId>
1212
<Title>Confluent.Kafka</Title>
1313
<AssemblyName>Confluent.Kafka</AssemblyName>
14-
<VersionPrefix>0.11.4-RC2</VersionPrefix>
14+
<VersionPrefix>0.11.4-RC3</VersionPrefix>
1515
<TargetFrameworks>net45;net46;netstandard1.3;</TargetFrameworks>
1616
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
1717
<GenerateDocumentationFile>true</GenerateDocumentationFile>
1818
</PropertyGroup>
1919

2020
<ItemGroup>
21-
<PackageReference Include="librdkafka.redist" Version="0.11.4-RC2" />
21+
<PackageReference Include="librdkafka.redist" Version="0.11.4" />
2222
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="4.0.0" />
2323
</ItemGroup>
2424

src/Confluent.SchemaRegistry/Confluent.SchemaRegistry.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<PackageId>Confluent.SchemaRegistry</PackageId>
1313
<Title>Confluent.SchemaRegistry</Title>
1414
<AssemblyName>Confluent.SchemaRegistry</AssemblyName>
15-
<VersionPrefix>0.11.4-RC2</VersionPrefix>
15+
<VersionPrefix>0.11.4-RC3</VersionPrefix>
1616
<TargetFrameworks>net452;netstandard1.4;</TargetFrameworks>
1717
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
1818
<GenerateDocumentationFile>true</GenerateDocumentationFile>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
</ItemGroup>
3030

3131
<ItemGroup>
32-
<PackageReference Include="librdkafka.redist" Version="0.11.4-RC2" />
32+
<PackageReference Include="librdkafka.redist" Version="0.11.4" />
3333
</ItemGroup>
3434

3535
<ItemGroup>

0 commit comments

Comments
 (0)