Skip to content

Commit 57aa2ce

Browse files
docs: Increase version to 1.17.0
1 parent 06e87b0 commit 57aa2ce

File tree

4 files changed

+13
-6
lines changed

4 files changed

+13
-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.16.0"
4+
current_version = "1.17.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: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [1.17.0] - 2025-11-12
10+
### Added
11+
- Added support for style rules in text translation via the `StyleId` property in `TextTranslateOptions`.
12+
- Added `GetAllStyleRulesAsync()` method to `DeepLClient` to retrieve all available style rules with optional pagination and detailed configuration.
13+
- Added new model classes: `StyleRuleInfo`, `ConfiguredRules`, and `CustomInstruction` to support style rules functionality.
14+
915
## [1.16.0] - 2025-11-04
1016
### Added
1117
- Added `ExtraBodyParameters` option to text and document translation methods to pass arbitrary parameters in the request body. This can be used to access beta features or override built-in parameters (such as `target_lang`, `source_lang`, etc.).
@@ -198,7 +204,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
198204
## [0.1.0] - 2021-11-05
199205
Initial release.
200206

201-
[Unreleased]: https://github.com/DeepLcom/deepl-dotnet/compare/v1.16.0...HEAD
207+
[Unreleased]: https://github.com/DeepLcom/deepl-dotnet/compare/v1.17.0...HEAD
208+
[1.17.0]: https://github.com/DeepLcom/deepl-dotnet/compare/v1.16.0...v1.17.0
202209
[1.16.0]: https://github.com/DeepLcom/deepl-dotnet/compare/v1.15.0...v1.16.0
203210
[1.15.0]: https://github.com/DeepLcom/deepl-dotnet/compare/v1.14.0...v1.15.0
204211
[1.14.0]: https://github.com/DeepLcom/deepl-dotnet/compare/v1.13.0...v1.14.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.16.0</Version>
7-
<PackageVersion>1.16.0</PackageVersion>
8-
<FileVersion>1.16.0.0</FileVersion>
6+
<Version>1.17.0</Version>
7+
<PackageVersion>1.17.0</PackageVersion>
8+
<FileVersion>1.17.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.16.0", Translator.Version());
21+
Assert.Equal("1.17.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)