Skip to content

Commit

Permalink
Release 10.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dstelljes committed Jun 5, 2024
1 parent 05061d8 commit 36e8967
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<SignAssembly>true</SignAssembly>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<Version>10.3.0</Version>
<Version>10.3.1</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ Chr.Avro is an Avro implementation for .NET. It’s designed to serve as a flexi
```
$ dotnet tool install Chr.Avro.Cli --global
You can invoke the tool using the following command: dotnet-avro
Tool 'chr.avro.cli' (version '10.3.0') was successfully installed.
Tool 'chr.avro.cli' (version '10.3.1') was successfully installed.
$ dotnet avro help
Chr.Avro 10.3.0
Chr.Avro 10.3.1
...
```

Expand Down
2 changes: 1 addition & 1 deletion docs/guides/cli-create.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ If you haven’t already, install the Chr.Avro CLI:

```
$ dotnet tool install Chr.Avro.Cli --global
Tool 'chr.avro.cli' (version '10.3.0') was successfully installed.
Tool 'chr.avro.cli' (version '10.3.1') was successfully installed.
```

After the CLI tool has been installed, you can invoke it using `dotnet avro`. If the install command fails, make sure you have the latest version of the [.NET Core SDK](https://dotnet.microsoft.com/download) installed.
Expand Down
2 changes: 1 addition & 1 deletion docs/guides/cli-generate.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ If you haven’t already, install the Chr.Avro CLI:

```
$ dotnet tool install Chr.Avro.Cli --global
Tool 'chr.avro.cli' (version '10.3.0') was successfully installed.
Tool 'chr.avro.cli' (version '10.3.1') was successfully installed.
```

After the CLI tool has been installed, you can invoke it using `dotnet avro`. If the install command fails, make sure you have the latest version of the [.NET Core SDK](https://dotnet.microsoft.com/download) installed.
Expand Down
2 changes: 1 addition & 1 deletion docs/guides/kafka.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Chr.Avro ships with first-class support for [Confluent’s Kafka clients](https:
First, add a reference to the Chr.Avro.Confluent package:

```
$ dotnet add package Chr.Avro.Confluent --version 10.3.0
$ dotnet add package Chr.Avro.Confluent --version 10.3.1
```

Chr.Avro.Confluent depends on [Confluent.Kafka](https://www.nuget.org/packages/Confluent.Kafka), which contains [producer](https://docs.confluent.io/platform/current/clients/confluent-kafka-dotnet/_site/api/Confluent.Kafka.ProducerBuilder-2.html) and [consumer](https://docs.confluent.io/platform/current/clients/confluent-kafka-dotnet/_site/api/Confluent.Kafka.ConsumerBuilder-2.html) builders. To build a [Schema Registry](https://www.confluent.io/confluent-schema-registry/)-integrated producer, use the producer builder in tandem with Chr.Avro.Confluent’s Avro extension methods:
Expand Down

0 comments on commit 36e8967

Please sign in to comment.