From b7815072e957b3347046a8bc5118a28ef33b2de8 Mon Sep 17 00:00:00 2001 From: Daniel Jones Date: Wed, 13 Apr 2022 12:48:27 +0200 Subject: [PATCH] Increase version to 1.1.0 --- CHANGELOG.md | 9 ++------- DeepL/DeepL.csproj | 6 +++--- DeepLTests/GeneralTest.cs | 2 +- 3 files changed, 6 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e27b09c..e20fdf2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,15 +5,10 @@ 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.1.0] - 2022-04-13 ### Added * Add `ErrorMessage` property to `DocumentStatus` that contains a short description of document translation error, if available. -### Changed -### Deprecated -### Removed -### Fixed -### Security ## [1.0.5] - 2022-04-12 @@ -61,7 +56,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.0.5..HEAD +[1.1.0]: https://github.com/DeepLcom/deepl-dotnet/compare/v1.0.5..v1.1.0 [1.0.5]: https://github.com/DeepLcom/deepl-dotnet/compare/v1.0.4..v1.0.5 [1.0.4]: https://github.com/DeepLcom/deepl-dotnet/compare/v1.0.3..v1.0.4 [1.0.3]: https://github.com/DeepLcom/deepl-dotnet/compare/v1.0.2..v1.0.3 diff --git a/DeepL/DeepL.csproj b/DeepL/DeepL.csproj index bd8c573..b1e032b 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.0.5 - 1.0.5 - 1.0.5.0 + 1.1.0 + 1.1.0 + 1.1.0.0 1.0.0.0 net5.0;netstandard2.0 8 diff --git a/DeepLTests/GeneralTest.cs b/DeepLTests/GeneralTest.cs index 811367c..caa6fa0 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.0.5", Translator.Version()); + Assert.Equal("1.1.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());