Skip to content

Commit a72cdf6

Browse files
docs: Increase version to 1.11.0
1 parent f657496 commit a72cdf6

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77

8-
## [Unreleased]
8+
## [1.11.0] - 2024-11-15
99
### Added
1010
* Added `ModelType` option for text translation to use models with higher
1111
translation quality (available for some language pairs), or better latency.
@@ -170,7 +170,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
170170
Initial release.
171171

172172

173-
[Unreleased]: https://github.com/DeepLcom/deepl-dotnet/compare/v1.10.0...HEAD
173+
[1.11.0]: https://github.com/DeepLcom/deepl-dotnet/compare/v1.10.0...v1.11.0
174174
[1.10.0]: https://github.com/DeepLcom/deepl-dotnet/compare/v1.9.0...v1.10.0
175175
[1.9.0]: https://github.com/DeepLcom/deepl-dotnet/compare/v1.8.0...v1.9.0
176176
[1.8.0]: https://github.com/DeepLcom/deepl-dotnet/compare/v1.7.1...v1.8.0

DeepL/DeepL.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
<PropertyGroup>
44
<Description>DeepL.net is the official DeepL .NET client library.</Description>
55
<AssemblyTitle>DeepL.net</AssemblyTitle>
6-
<Version>1.10.0</Version>
7-
<PackageVersion>1.10.0</PackageVersion>
8-
<FileVersion>1.10.0.0</FileVersion>
6+
<Version>1.11.0</Version>
7+
<PackageVersion>1.11.0</PackageVersion>
8+
<FileVersion>1.11.0.0</FileVersion>
99
<AssemblyVersion>1.0.0.0</AssemblyVersion>
1010
<TargetFrameworks>net5.0;netstandard2.0</TargetFrameworks>
1111
<LangVersion>8</LangVersion>

DeepLTests/GeneralTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public sealed class GeneralTest : BaseDeepLTest {
1818
/// </summary>
1919
[Fact]
2020
public void TestVersion() {
21-
Assert.Equal("1.10.0", Translator.Version());
21+
Assert.Equal("1.11.0", Translator.Version());
2222

2323
// Note the assembly version must remain unchanged for binary compatibility, excepting the major version.
2424
Assert.Equal("1.0.0.0", typeof(Translator).Assembly.GetName().Version?.ToString());

0 commit comments

Comments
 (0)