From 745426029fda78c0661a4be732d441224f907808 Mon Sep 17 00:00:00 2001 From: Jan Ebbing Date: Mon, 17 Apr 2023 09:03:51 +0100 Subject: [PATCH] docs: Increase version to 1.7.1 --- CHANGELOG.md | 3 ++- DeepL/DeepL.csproj | 6 +++--- DeepLTests/GeneralTest.cs | 2 +- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4fa33ab..88b5a56 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.7.1] - 2023-04-17 ### Fixed * Changed document translation to poll the server every 5 seconds. This should greatly reduce observed document translation processing time. @@ -130,6 +130,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 Initial release. +[1.7.1]: https://github.com/DeepLcom/deepl-dotnet/compare/v1.7.0...v1.7.1 [1.7.0]: https://github.com/DeepLcom/deepl-dotnet/compare/v1.6.0...v1.7.0 [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 diff --git a/DeepL/DeepL.csproj b/DeepL/DeepL.csproj index 76888c8..c0c4fb0 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.7.0 - 1.7.0 - 1.7.0.0 + 1.7.1 + 1.7.1 + 1.7.1.0 1.0.0.0 net5.0;netstandard2.0 8 diff --git a/DeepLTests/GeneralTest.cs b/DeepLTests/GeneralTest.cs index 2235e6a..5068e1c 100644 --- a/DeepLTests/GeneralTest.cs +++ b/DeepLTests/GeneralTest.cs @@ -17,7 +17,7 @@ public sealed class GeneralTest : BaseDeepLTest { /// [Fact] public void TestVersion() { - Assert.Equal("1.7.0", Translator.Version()); + Assert.Equal("1.7.1", 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());