Skip to content

Commit 2e07ad1

Browse files
committed
docs: Update to 1.14.0
1 parent b33ccb8 commit 2e07ad1

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
44
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

7+
## [1.14.0] - 2025-02-25
8+
### Added
9+
* Added support for the `output_format` parameter when translating documents.
10+
* [#50](https://github.com/DeepLcom/deepl-dotnet/pull/50) thanks for [JuergenRB](https://github.com/JuergenRB)
11+
712
## [1.13.0] - 2025-01-28
813
### Added
914
* Added support for the Write API in the client library, the implementation
@@ -187,6 +192,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
187192
## [0.1.0] - 2021-11-05
188193
Initial release.
189194

195+
[1.14.0]: https://github.com/DeepLcom/deepl-dotnet/compare/v1.13.0...v1.14.0
190196
[1.13.0]: https://github.com/DeepLcom/deepl-dotnet/compare/v1.12.0...v1.13.0
191197
[1.12.0]: https://github.com/DeepLcom/deepl-dotnet/compare/v1.11.0...v1.12.0
192198
[1.11.0]: https://github.com/DeepLcom/deepl-dotnet/compare/v1.10.0...v1.11.0

DeepL/DeepL.csproj

+3-3
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.13.0</Version>
7-
<PackageVersion>1.13.0</PackageVersion>
8-
<FileVersion>1.13.0.0</FileVersion>
6+
<Version>1.14.0</Version>
7+
<PackageVersion>1.14.0</PackageVersion>
8+
<FileVersion>1.14.0.0</FileVersion>
99
<AssemblyVersion>1.0.0.0</AssemblyVersion>
1010
<TargetFrameworks>net5.0;netstandard2.0</TargetFrameworks>
1111
<LangVersion>8</LangVersion>

DeepLTests/GeneralTest.cs

+1-1
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.13.0", Translator.Version());
21+
Assert.Equal("1.14.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)