Skip to content

Commit 9766590

Browse files
docs: Bump version to 1.18.0
1 parent d8c7ed8 commit 9766590

File tree

4 files changed

+16
-6
lines changed

4 files changed

+16
-6
lines changed

.bumpversion.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Configuration file for bumpversion
22
# See https://github.com/callowayproject/bump-my-version
33
[tool.bumpversion]
4-
current_version = "1.17.0"
4+
current_version = "1.18.0"
55
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
66
serialize = ["{major}.{minor}.{patch}"]
77
search = "{current_version}"

CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [1.18.0] - 2025-12-03
10+
### Added
11+
- Added `CustomInstructions` property to `TextTranslateOptions` to customize translation
12+
behavior with up to 10 instructions (max 300 characters each). Only supported for
13+
target languages: `de`, `en`, `es`, `fr`, `it`, `ja`, `ko`, `zh` and their variants.
14+
Note: using the `CustomInstructions` parameter will use `quality_optimized` model type
15+
as the default. Requests combining `CustomInstructions` and the `LatencyOptimized`
16+
model type will be rejected.
17+
918
## [1.17.0] - 2025-11-12
1019
### Added
1120
- Added support for style rules in text translation via the `StyleId` property in `TextTranslateOptions`.
@@ -204,7 +213,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
204213
## [0.1.0] - 2021-11-05
205214
Initial release.
206215

207-
[Unreleased]: https://github.com/DeepLcom/deepl-dotnet/compare/v1.17.0...HEAD
216+
[Unreleased]: https://github.com/DeepLcom/deepl-dotnet/compare/v1.18.0...HEAD
217+
[1.18.0]: https://github.com/DeepLcom/deepl-dotnet/compare/v1.17.0...v1.18.0
208218
[1.17.0]: https://github.com/DeepLcom/deepl-dotnet/compare/v1.16.0...v1.17.0
209219
[1.16.0]: https://github.com/DeepLcom/deepl-dotnet/compare/v1.15.0...v1.16.0
210220
[1.15.0]: https://github.com/DeepLcom/deepl-dotnet/compare/v1.14.0...v1.15.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.17.0</Version>
7-
<PackageVersion>1.17.0</PackageVersion>
8-
<FileVersion>1.17.0.0</FileVersion>
6+
<Version>1.18.0</Version>
7+
<PackageVersion>1.18.0</PackageVersion>
8+
<FileVersion>1.18.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.17.0", Translator.Version());
21+
Assert.Equal("1.18.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)