diff --git a/CHANGELOG.md b/CHANGELOG.md index d76434a..84c6e0a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,16 +5,12 @@ 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.3.0] - 2022-08-02 ### Added * Add `Translator.createGlossaryFromCsvAsync()` allowing glossaries downloaded from website to be easily uploaded to API. ### Changed -* Strong-named DeepL.net assembly. -### Deprecated -### Removed -### Fixed -### Security +* Strong name DeepL.net assembly. ## [1.2.1] - 2022-06-29 @@ -90,7 +86,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.2.1..HEAD +[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 [1.2.0]: https://github.com/DeepLcom/deepl-dotnet/compare/v1.1.0..v1.2.0 [1.1.0]: https://github.com/DeepLcom/deepl-dotnet/compare/v1.0.5..v1.1.0 diff --git a/DeepL/DeepL.csproj b/DeepL/DeepL.csproj index c29e07e..75211f5 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.2.1 - 1.2.1 - 1.2.1.0 + 1.3.0 + 1.3.0 + 1.3.0.0 1.0.0.0 net5.0;netstandard2.0 8 diff --git a/DeepLTests/GeneralTest.cs b/DeepLTests/GeneralTest.cs index 7bd8642..f9582b3 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.2.1", Translator.Version()); + Assert.Equal("1.3.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());