Skip to content

Commit

Permalink
Release 10.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dstelljes committed Nov 3, 2023
1 parent ebd0599 commit 00f19b3
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
set -xe

release_directory=releases
push_flags="--api-key '$NUGET_API_KEY' --skip-duplicate --source https://api.nuget.org/v3/index.json"
push_flags="--api-key $NUGET_API_KEY --skip-duplicate --source https://api.nuget.org/v3/index.json"

dotnet nuget push $push_flags "$release_directory/*.nupkg"
dotnet nuget push $push_flags "$release_directory/*.snupkg"
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
source_directory=src
release_directory=releases
pack_flags="--configuration Release --output '$release_directory' /p:ContinuousIntegrationBuild=true"
pack_flags="--configuration Release --output $release_directory /p:ContinuousIntegrationBuild=true"
dotnet pack $pack_flags "$source_directory\\Chr.Avro"
dotnet pack $pack_flags "$source_directory\\Chr.Avro.Binary"
Expand Down
4 changes: 2 additions & 2 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<AnalysisLevel>8</AnalysisLevel>
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)\Chr.Avro.snk</AssemblyOriginatorKeyFile>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<Authors>C.H. Robinson</Authors>
<Company>C.H. Robinson</Company>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
Expand All @@ -15,7 +15,7 @@
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<SignAssembly>true</SignAssembly>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<Version>9.6.0</Version>
<Version>10.0.0</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 '9.6.0') was successfully installed.
Tool 'chr.avro.cli' (version '10.0.0') was successfully installed.
$ dotnet avro help
Chr.Avro 9.6.0
Chr.Avro 10.0.0
...
```

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 '9.6.0') was successfully installed.
Tool 'chr.avro.cli' (version '10.0.0') 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 '9.6.0') was successfully installed.
Tool 'chr.avro.cli' (version '10.0.0') 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 9.6.0
$ dotnet add package Chr.Avro.Confluent --version 10.0.0
```

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 00f19b3

Please sign in to comment.