Skip to content

Commit 380d861

Browse files
authored
Bump version to 2.5.0 (#2261)
* Bump version to 2.5.0 * Version in README * Updated error codes
1 parent a9404da commit 380d861

File tree

38 files changed

+84
-39
lines changed

38 files changed

+84
-39
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,13 @@ confluent-kafka-dotnet is distributed via NuGet. We provide the following packa
4949
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:
5050

5151
```
52-
Install-Package Confluent.Kafka -Version 2.4.0
52+
Install-Package Confluent.Kafka -Version 2.5.0
5353
```
5454

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

5757
```
58-
dotnet add package -v 2.4.0 Confluent.Kafka
58+
dotnet add package -v 2.5.0 Confluent.Kafka
5959
```
6060

6161
Note: `Confluent.Kafka` depends on the `librdkafka.redist` package which provides a number of different builds of `librdkafka` that are compatible with [common platforms](https://github.com/edenhill/librdkafka/wiki/librdkafka.redist-NuGet-package-runtime-libraries). If you are on one of these platforms this will all work seamlessly (and you don't need to explicitly reference `librdkafka.redist`). If you are on a different platform, you may need to [build librdkafka](https://github.com/edenhill/librdkafka#building) manually (or acquire it via other means) and load it using the [Library.Load](https://docs.confluent.io/current/clients/confluent-kafka-dotnet/api/Confluent.Kafka.Library.html#Confluent_Kafka_Library_Load_System_String_) method.

examples/AdminClient/AdminClient.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<!-- nuget package reference: <PackageReference Include="Confluent.Kafka" Version="2.5.0-RC5" /> -->
12+
<!-- nuget package reference: <PackageReference Include="Confluent.Kafka" Version="2.5.0" /> -->
1313
<ProjectReference Include="../../src/Confluent.Kafka/Confluent.Kafka.csproj" />
1414
</ItemGroup>
1515

examples/AvroBlogExamples/AvroBlogExamples.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<!-- nuget package reference: <PackageReference Include="Confluent.SchemaRegistry.Serdes.Avro" Version="2.5.0-RC5" /> -->
11+
<!-- nuget package reference: <PackageReference Include="Confluent.SchemaRegistry.Serdes.Avro" Version="2.5.0" /> -->
1212
<ProjectReference Include="../../src/Confluent.SchemaRegistry.Serdes.Avro/Confluent.SchemaRegistry.Serdes.Avro.csproj" />
1313
</ItemGroup>
1414

examples/AvroGeneric/AvroGeneric.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<!-- nuget package reference: <PackageReference Include="Confluent.SchemaRegistry.Serdes.Avro" Version="2.5.0-RC5" /> -->
12+
<!-- nuget package reference: <PackageReference Include="Confluent.SchemaRegistry.Serdes.Avro" Version="2.5.0" /> -->
1313
<ProjectReference Include="../../src/Confluent.SchemaRegistry.Serdes.Avro/Confluent.SchemaRegistry.Serdes.Avro.csproj" />
1414
</ItemGroup>
1515

examples/AvroGenericEncryption/AvroGenericEncryption.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<!-- nuget package reference: <PackageReference Include="Confluent.SchemaRegistry.Serdes.Avro" Version="2.5.0-RC5" /> -->
12+
<!-- nuget package reference: <PackageReference Include="Confluent.SchemaRegistry.Serdes.Avro" Version="2.5.0" /> -->
1313
<ProjectReference Include="../../src/Confluent.SchemaRegistry.Serdes.Avro/Confluent.SchemaRegistry.Serdes.Avro.csproj" />
1414
<ProjectReference Include="../../src/Confluent.SchemaRegistry.Encryption.Aws/Confluent.SchemaRegistry.Encryption.Aws.csproj" />
1515
<ProjectReference Include="../../src/Confluent.SchemaRegistry.Encryption.Azure/Confluent.SchemaRegistry.Encryption.Azure.csproj" />

examples/AvroGenericMigration/AvroGenericMigration.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<!-- nuget package reference: <PackageReference Include="Confluent.SchemaRegistry.Serdes.Avro" Version="2.5.0-RC5" /> -->
12+
<!-- nuget package reference: <PackageReference Include="Confluent.SchemaRegistry.Serdes.Avro" Version="2.5.0" /> -->
1313
<ProjectReference Include="../../src/Confluent.SchemaRegistry.Serdes.Avro/Confluent.SchemaRegistry.Serdes.Avro.csproj" />
1414
<ProjectReference Include="../../src/Confluent.SchemaRegistry.Rules/Confluent.SchemaRegistry.Rules.csproj" />
1515
</ItemGroup>

examples/AvroSpecific/AvroSpecific.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<!-- nuget package reference: <PackageReference Include="Confluent.SchemaRegistry.Serdes.Avro" Version="2.5.0-RC5" /> -->
12+
<!-- nuget package reference: <PackageReference Include="Confluent.SchemaRegistry.Serdes.Avro" Version="2.5.0" /> -->
1313
<ProjectReference Include="../../src/Confluent.SchemaRegistry.Serdes.Avro/Confluent.SchemaRegistry.Serdes.Avro.csproj" />
1414
</ItemGroup>
1515

examples/AvroSpecificEncryption/AvroSpecificEncryption.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<!-- nuget package reference: <PackageReference Include="Confluent.SchemaRegistry.Serdes.Avro" Version="2.5.0-RC5" /> -->
12+
<!-- nuget package reference: <PackageReference Include="Confluent.SchemaRegistry.Serdes.Avro" Version="2.5.0" /> -->
1313
<ProjectReference Include="../../src/Confluent.SchemaRegistry.Serdes.Avro/Confluent.SchemaRegistry.Serdes.Avro.csproj" />
1414
<ProjectReference Include="../../src/Confluent.SchemaRegistry.Encryption.Aws/Confluent.SchemaRegistry.Encryption.Aws.csproj" />
1515
<ProjectReference Include="../../src/Confluent.SchemaRegistry.Encryption.Azure/Confluent.SchemaRegistry.Encryption.Azure.csproj" />

examples/Configuration/Configuration.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<!-- nuget package reference: <PackageReference Include="Confluent.Kafka" Version="2.5.0-RC5" /> -->
11+
<!-- nuget package reference: <PackageReference Include="Confluent.Kafka" Version="2.5.0" /> -->
1212
<ProjectReference Include="../../src/Confluent.Kafka/Confluent.Kafka.csproj" />
1313
<PackageReference Include="Microsoft.Extensions.Configuration" Version="6.0.0" />
1414
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="6.0.0" />

examples/ConfluentCloud/ConfluentCloud.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<!-- nuget package reference: <PackageReference Include="Confluent.Kafka" Version="2.5.0-RC5" /> -->
10+
<!-- nuget package reference: <PackageReference Include="Confluent.Kafka" Version="2.5.0" /> -->
1111
<ProjectReference Include="../../src/Confluent.Kafka/Confluent.Kafka.csproj" />
1212
</ItemGroup>
1313

examples/Consumer/Consumer.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<!-- nuget package reference: <PackageReference Include="Confluent.Kafka" Version="2.5.0-RC5" /> -->
11+
<!-- nuget package reference: <PackageReference Include="Confluent.Kafka" Version="2.5.0" /> -->
1212
<ProjectReference Include="../../src/Confluent.Kafka/Confluent.Kafka.csproj" />
1313
</ItemGroup>
1414

examples/ExactlyOnce/ExactlyOnce.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<!-- nuget package reference: <PackageReference Include="Confluent.Kafka" Version="2.5.0-RC5" /> -->
12+
<!-- nuget package reference: <PackageReference Include="Confluent.Kafka" Version="2.5.0" /> -->
1313
<ProjectReference Include="../../src/Confluent.Kafka/Confluent.Kafka.csproj" />
1414
<PackageReference Include="Microsoft.FASTER.Core" Version="1.8.0" />
1515
</ItemGroup>

examples/ExactlyOnceOldBroker/ExactlyOnceOldBroker.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<!-- nuget package reference: <PackageReference Include="Confluent.Kafka" Version="2.5.0-RC5" /> -->
12+
<!-- nuget package reference: <PackageReference Include="Confluent.Kafka" Version="2.5.0" /> -->
1313
<ProjectReference Include="../../src/Confluent.Kafka/Confluent.Kafka.csproj" />
1414
<PackageReference Include="RocksDbSharp" Version="6.2.2" />
1515
<PackageReference Include="RocksDbNative" Version="6.2.2" />

examples/JsonEncryption/JsonSerializationEncryption.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<!-- nuget package reference: <PackageReference Include="Confluent.SchemaRegistry.Serdes.Json" Version="2.5.0-RC5" /> -->
12+
<!-- nuget package reference: <PackageReference Include="Confluent.SchemaRegistry.Serdes.Json" Version="2.5.0" /> -->
1313
<ProjectReference Include="../../src/Confluent.SchemaRegistry.Serdes.Json/Confluent.SchemaRegistry.Serdes.Json.csproj" />
1414
<ProjectReference Include="../../src/Confluent.SchemaRegistry.Encryption.Aws/Confluent.SchemaRegistry.Encryption.Aws.csproj" />
1515
<ProjectReference Include="../../src/Confluent.SchemaRegistry.Encryption.Azure/Confluent.SchemaRegistry.Encryption.Azure.csproj" />

examples/JsonSerialization/JsonSerialization.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<!-- nuget package reference: <PackageReference Include="Confluent.SchemaRegistry.Serdes.Json" Version="2.5.0-RC5" /> -->
12+
<!-- nuget package reference: <PackageReference Include="Confluent.SchemaRegistry.Serdes.Json" Version="2.5.0" /> -->
1313
<ProjectReference Include="../../src/Confluent.SchemaRegistry.Serdes.Json/Confluent.SchemaRegistry.Serdes.Json.csproj" />
1414
</ItemGroup>
1515

examples/JsonWithReferences/JsonWithReferences.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<!-- nuget package reference: <PackageReference Include="Confluent.SchemaRegistry.Serdes.Json" Version="2.5.0-RC5" /> -->
12+
<!-- nuget package reference: <PackageReference Include="Confluent.SchemaRegistry.Serdes.Json" Version="2.5.0" /> -->
1313
<ProjectReference Include="../../src/Confluent.SchemaRegistry.Serdes.Json/Confluent.SchemaRegistry.Serdes.Json.csproj" />
1414
<ProjectReference Include="../../src/Confluent.SchemaRegistry/Confluent.SchemaRegistry.csproj" />
1515
</ItemGroup>

examples/MultiProducer/MultiProducer.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<!-- nuget package reference: <PackageReference Include="Confluent.Kafka" Version="1.9.4-RC1" /> -->
11+
<!-- nuget package reference: <PackageReference Include="Confluent.Kafka" Version="2.5.0" /> -->
1212
<ProjectReference Include="../../src/Confluent.Kafka/Confluent.Kafka.csproj" />
1313
</ItemGroup>
1414

examples/OAuthConsumer/OAuthConsumer.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<!-- nuget package reference: <PackageReference Include="Confluent.Kafka" Version="2.5.0-RC5" /> -->
12+
<!-- nuget package reference: <PackageReference Include="Confluent.Kafka" Version="2.5.0" /> -->
1313
<ProjectReference Include="../../src/Confluent.Kafka/Confluent.Kafka.csproj" />
1414
</ItemGroup>
1515

examples/OAuthOIDC/OAuthOIDC.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<!-- nuget package reference: <PackageReference Include="Confluent.Kafka" Version="2.5.0-RC5" /> -->
12+
<!-- nuget package reference: <PackageReference Include="Confluent.Kafka" Version="2.5.0" /> -->
1313
<ProjectReference Include="../../src/Confluent.Kafka/Confluent.Kafka.csproj" />
1414
</ItemGroup>
1515

examples/OAuthProducer/OAuthProducer.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<!-- nuget package reference: <PackageReference Include="Confluent.Kafka" Version="2.5.0-RC5" /> -->
12+
<!-- nuget package reference: <PackageReference Include="Confluent.Kafka" Version="2.5.0" /> -->
1313
<ProjectReference Include="../../src/Confluent.Kafka/Confluent.Kafka.csproj" />
1414
</ItemGroup>
1515

examples/Producer/Producer.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<!-- nuget package reference: <PackageReference Include="Confluent.Kafka" Version="2.5.0-RC5" /> -->
12+
<!-- nuget package reference: <PackageReference Include="Confluent.Kafka" Version="2.5.0" /> -->
1313
<ProjectReference Include="../../src/Confluent.Kafka/Confluent.Kafka.csproj" />
1414
</ItemGroup>
1515

examples/Protobuf/Protobuf.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<!-- nuget package reference: <PackageReference Include="Confluent.SchemaRegistry.Serdes.Protobuf" Version="2.5.0-RC5" /> -->
12+
<!-- nuget package reference: <PackageReference Include="Confluent.SchemaRegistry.Serdes.Protobuf" Version="2.5.0" /> -->
1313
<ProjectReference Include="../../src/Confluent.SchemaRegistry.Serdes.Protobuf/Confluent.SchemaRegistry.Serdes.Protobuf.csproj" />
1414
</ItemGroup>
1515

examples/ProtobufEncryption/ProtobufEncryption.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<!-- nuget package reference: <PackageReference Include="Confluent.SchemaRegistry.Serdes.Protobuf" Version="2.5.0-RC5" /> -->
12+
<!-- nuget package reference: <PackageReference Include="Confluent.SchemaRegistry.Serdes.Protobuf" Version="2.5.0" /> -->
1313
<ProjectReference Include="../../src/Confluent.SchemaRegistry.Serdes.Protobuf/Confluent.SchemaRegistry.Serdes.Protobuf.csproj" />
1414
<ProjectReference Include="../../src/Confluent.SchemaRegistry.Encryption.Aws/Confluent.SchemaRegistry.Encryption.Aws.csproj" />
1515
<ProjectReference Include="../../src/Confluent.SchemaRegistry.Encryption.Azure/Confluent.SchemaRegistry.Encryption.Azure.csproj" />

examples/TlsAuth/TlsAuth.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<!-- nuget package reference: <PackageReference Include="Confluent.Kafka" Version="2.5.0-RC5" /> -->
12+
<!-- nuget package reference: <PackageReference Include="Confluent.Kafka" Version="2.5.0" /> -->
1313
<ProjectReference Include="../../src/Confluent.Kafka/Confluent.Kafka.csproj" />
1414
</ItemGroup>
1515

examples/Web/Web.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
</PropertyGroup>
66

77
<ItemGroup>
8-
<PackageReference Include="Confluent.Kafka" Version="1.9.4-RC1" />
8+
<PackageReference Include="Confluent.Kafka" Version="2.5.0" />
99
</ItemGroup>
1010

1111
</Project>

src/Confluent.Kafka/Config_gen.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// *** Auto-generated from librdkafka v2.5.0-RC5 *** - do not modify manually.
1+
// *** Auto-generated from librdkafka v2.5.0 *** - do not modify manually.
22
//
33
// Copyright 2018-2022 Confluent Inc.
44
//

src/Confluent.Kafka/Confluent.Kafka.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<PackageReadmeFile>README.md</PackageReadmeFile>
1717
<Title>Confluent.Kafka</Title>
1818
<AssemblyName>Confluent.Kafka</AssemblyName>
19-
<VersionPrefix>2.5.0-RC5</VersionPrefix>
19+
<VersionPrefix>2.5.0</VersionPrefix>
2020
<TargetFrameworks>netstandard2.0;netstandard1.3;net462;net6.0</TargetFrameworks>
2121
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
2222
<GenerateDocumentationFile>true</GenerateDocumentationFile>

src/Confluent.Kafka/ErrorCode.cs

+46-1
Original file line numberDiff line numberDiff line change
@@ -335,6 +335,12 @@ public enum ErrorCode
335335
/// </summary>
336336
Local_LogTruncation = -139,
337337

338+
/// <summary>
339+
/// A different record in the batch was invalid
340+
/// and this message failed persisting
341+
/// </summary>
342+
Local_InvalidDifferentRecord = -138,
343+
338344
/// <summary>
339345
/// Unknown broker error
340346
/// </summary>
@@ -834,7 +840,46 @@ public enum ErrorCode
834840
/// <summary>
835841
/// Request principal deserialization failed during forwarding.
836842
/// </summary>
837-
PrincipalDeserializationFailure = 97
843+
PrincipalDeserializationFailure = 97,
844+
845+
/// <summary>
846+
/// Unknown Topic Id.
847+
/// </summary>
848+
UnknownTopicId = 100,
849+
850+
/// <summary>
851+
/// The member epoch is fenced by the group coordinator.
852+
/// </summary>
853+
FencedMemberEpoch = 110,
854+
855+
/// <summary>
856+
/// The instance ID is still used by another member in the
857+
/// consumer group.
858+
/// </summary>
859+
UnreleasedInstanceId = 111,
860+
861+
/// <summary>
862+
/// The assignor or its version range is not supported by
863+
/// the consumer group.
864+
/// </summary>
865+
UnsupportedAssignor = 112,
866+
867+
/// <summary>
868+
/// The member epoch is stale.
869+
/// </summary>
870+
StaleMemberEpoch = 113,
871+
872+
/// <summary>
873+
/// Client sent a push telemetry request with an invalid or outdated
874+
/// subscription ID.
875+
/// </summary>
876+
UnknownSubscriptionId = 117,
877+
878+
/// <summary>
879+
/// Client sent a push telemetry request larger than the maximum size
880+
/// the broker will accept.
881+
/// </summary>
882+
TelemetryTooLarge = 118,
838883
};
839884

840885
/// <summary>

src/Confluent.SchemaRegistry.Encryption.Aws/Confluent.SchemaRegistry.Encryption.Aws.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<PackageId>Confluent.SchemaRegistry.Encryption.Aws</PackageId>
1616
<Title>Confluent.SchemaRegistry.Encryption.Aws</Title>
1717
<AssemblyName>Confluent.SchemaRegistry.Encryption.Aws</AssemblyName>
18-
<VersionPrefix>2.5.0-RC5</VersionPrefix>
18+
<VersionPrefix>2.5.0</VersionPrefix>
1919
<TargetFrameworks>netcoreapp3.1;net6.0</TargetFrameworks>
2020
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
2121
<GenerateDocumentationFile>true</GenerateDocumentationFile>

src/Confluent.SchemaRegistry.Encryption.Azure/Confluent.SchemaRegistry.Encryption.Azure.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<PackageId>Confluent.SchemaRegistry.Encryption.Azure</PackageId>
1616
<Title>Confluent.SchemaRegistry.Encryption.Azure</Title>
1717
<AssemblyName>Confluent.SchemaRegistry.Encryption.Azure</AssemblyName>
18-
<VersionPrefix>2.5.0-RC5</VersionPrefix>
18+
<VersionPrefix>2.5.0</VersionPrefix>
1919
<TargetFrameworks>netcoreapp3.1;net6.0</TargetFrameworks>
2020
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
2121
<GenerateDocumentationFile>true</GenerateDocumentationFile>

src/Confluent.SchemaRegistry.Encryption.Gcp/Confluent.SchemaRegistry.Encryption.Gcp.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<PackageId>Confluent.SchemaRegistry.Encryption.Gcp</PackageId>
1616
<Title>Confluent.SchemaRegistry.Encryption.Gcp</Title>
1717
<AssemblyName>Confluent.SchemaRegistry.Encryption.Gcp</AssemblyName>
18-
<VersionPrefix>2.5.0-RC5</VersionPrefix>
18+
<VersionPrefix>2.5.0</VersionPrefix>
1919
<TargetFrameworks>netcoreapp3.1;net6.0</TargetFrameworks>
2020
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
2121
<GenerateDocumentationFile>true</GenerateDocumentationFile>

src/Confluent.SchemaRegistry.Encryption.HcVault/Confluent.SchemaRegistry.Encryption.HcVault.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<PackageId>Confluent.SchemaRegistry.Encryption.HcVault</PackageId>
1616
<Title>Confluent.SchemaRegistry.Encryption.HcVault</Title>
1717
<AssemblyName>Confluent.SchemaRegistry.Encryption.HcVault</AssemblyName>
18-
<VersionPrefix>2.5.0-RC5</VersionPrefix>
18+
<VersionPrefix>2.5.0</VersionPrefix>
1919
<TargetFrameworks>netcoreapp3.1;net6.0</TargetFrameworks>
2020
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
2121
<GenerateDocumentationFile>true</GenerateDocumentationFile>

src/Confluent.SchemaRegistry.Encryption/Confluent.SchemaRegistry.Encryption.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<PackageId>Confluent.SchemaRegistry.Encryption</PackageId>
1616
<Title>Confluent.SchemaRegistry.Encryption</Title>
1717
<AssemblyName>Confluent.SchemaRegistry.Encryption</AssemblyName>
18-
<VersionPrefix>2.5.0-RC5</VersionPrefix>
18+
<VersionPrefix>2.5.0</VersionPrefix>
1919
<TargetFrameworks>netcoreapp3.1;net6.0</TargetFrameworks>
2020
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
2121
<GenerateDocumentationFile>true</GenerateDocumentationFile>

src/Confluent.SchemaRegistry.Rules/Confluent.SchemaRegistry.Rules.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<PackageId>Confluent.SchemaRegistry.Rules</PackageId>
1616
<Title>Confluent.SchemaRegistry.Rules</Title>
1717
<AssemblyName>Confluent.SchemaRegistry.Rules</AssemblyName>
18-
<VersionPrefix>2.5.0-RC5</VersionPrefix>
18+
<VersionPrefix>2.5.0</VersionPrefix>
1919
<TargetFrameworks>net6.0</TargetFrameworks>
2020
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
2121
<GenerateDocumentationFile>true</GenerateDocumentationFile>

src/Confluent.SchemaRegistry.Serdes.Avro/Confluent.SchemaRegistry.Serdes.Avro.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<PackageId>Confluent.SchemaRegistry.Serdes.Avro</PackageId>
1616
<Title>Confluent.SchemaRegistry.Serdes.Avro</Title>
1717
<AssemblyName>Confluent.SchemaRegistry.Serdes.Avro</AssemblyName>
18-
<VersionPrefix>2.5.0-RC5</VersionPrefix>
18+
<VersionPrefix>2.5.0</VersionPrefix>
1919
<TargetFrameworks>netstandard2.0;net6.0</TargetFrameworks>
2020
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
2121
<GenerateDocumentationFile>true</GenerateDocumentationFile>

src/Confluent.SchemaRegistry.Serdes.Json/Confluent.SchemaRegistry.Serdes.Json.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<PackageId>Confluent.SchemaRegistry.Serdes.Json</PackageId>
1616
<Title>Confluent.SchemaRegistry.Serdes.Json</Title>
1717
<AssemblyName>Confluent.SchemaRegistry.Serdes.Json</AssemblyName>
18-
<VersionPrefix>2.5.0-RC5</VersionPrefix>
18+
<VersionPrefix>2.5.0</VersionPrefix>
1919
<TargetFrameworks>netstandard2.0;net6.0</TargetFrameworks>
2020
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
2121
<GenerateDocumentationFile>true</GenerateDocumentationFile>

src/Confluent.SchemaRegistry.Serdes.Protobuf/Confluent.SchemaRegistry.Serdes.Protobuf.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<PackageId>Confluent.SchemaRegistry.Serdes.Protobuf</PackageId>
1717
<Title>Confluent.SchemaRegistry.Serdes.Protobuf</Title>
1818
<AssemblyName>Confluent.SchemaRegistry.Serdes.Protobuf</AssemblyName>
19-
<VersionPrefix>2.5.0-RC5</VersionPrefix>
19+
<VersionPrefix>2.5.0</VersionPrefix>
2020
<TargetFrameworks>netstandard2.0;net6.0</TargetFrameworks>
2121
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
2222
<GenerateDocumentationFile>true</GenerateDocumentationFile>

src/Confluent.SchemaRegistry/Confluent.SchemaRegistry.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<PackageId>Confluent.SchemaRegistry</PackageId>
1717
<Title>Confluent.SchemaRegistry</Title>
1818
<AssemblyName>Confluent.SchemaRegistry</AssemblyName>
19-
<VersionPrefix>2.5.0-RC5</VersionPrefix>
19+
<VersionPrefix>2.5.0</VersionPrefix>
2020
<TargetFrameworks>netstandard2.0;net6.0</TargetFrameworks>
2121
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
2222
<GenerateDocumentationFile>true</GenerateDocumentationFile>

0 commit comments

Comments
 (0)