From 5dc96476fb3fe9ff01ad6a2bb355acc9a1548569 Mon Sep 17 00:00:00 2001 From: Daniel Jones Date: Fri, 30 Sep 2022 09:40:04 +0200 Subject: [PATCH] Increase version to 1.5.0 --- CHANGELOG.md | 4 ++-- DeepL/DeepL.csproj | 6 +++--- DeepLTests/GeneralTest.cs | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 515a5ad..e82fb82 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.5.0] - 2022-09-30 ### Added * Add new `Formality` options: `PreferLess` and `PreferMore`. ### Changed @@ -104,7 +104,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.4.0..HEAD +[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 [1.3.0]: https://github.com/DeepLcom/deepl-dotnet/compare/v1.2.1...v1.3.0 [1.2.1]: https://github.com/DeepLcom/deepl-dotnet/compare/v1.2.0...v1.2.1 diff --git a/DeepL/DeepL.csproj b/DeepL/DeepL.csproj index c954fc7..b3894f0 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.4.0 - 1.4.0 - 1.4.0.0 + 1.5.0 + 1.5.0 + 1.5.0.0 1.0.0.0 net5.0;netstandard2.0 8 diff --git a/DeepLTests/GeneralTest.cs b/DeepLTests/GeneralTest.cs index 6b2b670..b7a4eee 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.4.0", Translator.Version()); + Assert.Equal("1.5.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());