diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c88a27..9f8761e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] +## [1.6.0] - 2023-01-26 ### Added * New languages available: Korean (`'ko'`) and Norwegian (bokmål) (`'nb'`). Add language code constants and tests. @@ -120,7 +120,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 Initial release. -[Unreleased]: https://github.com/DeepLcom/deepl-dotnet/compare/v1.5.1...HEAD +[1.6.0]: https://github.com/DeepLcom/deepl-dotnet/compare/v1.5.1...v1.6.0 [1.5.1]: https://github.com/DeepLcom/deepl-dotnet/compare/v1.5.0...v1.5.1 [1.5.0]: https://github.com/DeepLcom/deepl-dotnet/compare/v1.4.0...v1.5.0 [1.4.0]: https://github.com/DeepLcom/deepl-dotnet/compare/v1.3.0...v1.4.0 diff --git a/DeepL/DeepL.csproj b/DeepL/DeepL.csproj index 30078c5..63d3a94 100644 --- a/DeepL/DeepL.csproj +++ b/DeepL/DeepL.csproj @@ -3,9 +3,9 @@ DeepL.net is the official DeepL .NET client library. DeepL.net - 1.5.1 - 1.5.1 - 1.5.1.0 + 1.6.0 + 1.6.0 + 1.6.0.0 1.0.0.0 net5.0;netstandard2.0 8 diff --git a/DeepLTests/GeneralTest.cs b/DeepLTests/GeneralTest.cs index 5e8008c..e0c98f0 100644 --- a/DeepLTests/GeneralTest.cs +++ b/DeepLTests/GeneralTest.cs @@ -16,7 +16,7 @@ public sealed class GeneralTest : BaseDeepLTest { /// [Fact] public void TestVersion() { - Assert.Equal("1.5.1", Translator.Version()); + Assert.Equal("1.6.0", Translator.Version()); // Note the assembly version must remain unchanged for binary compatibility, excepting the major version. Assert.Equal("1.0.0.0", typeof(Translator).Assembly.GetName().Version?.ToString());