Skip to content

Commit fd3323c

Browse files
docs: Increase version to 1.16.0
1 parent d82df1d commit fd3323c

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-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.15.0"
4+
current_version = "1.16.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: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ 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
## [Unreleased]
8+
9+
## [1.16.0] - 2025-11-04
810
### Added
911
- 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.).
1012

@@ -196,7 +198,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
196198
## [0.1.0] - 2021-11-05
197199
Initial release.
198200

199-
[Unreleased]: https://github.com/DeepLcom/deepl-dotnet/compare/v1.15.0...HEAD
201+
[Unreleased]: https://github.com/DeepLcom/deepl-dotnet/compare/v1.16.0...HEAD
202+
[1.16.0]: https://github.com/DeepLcom/deepl-dotnet/compare/v1.15.0...v1.16.0
200203
[1.15.0]: https://github.com/DeepLcom/deepl-dotnet/compare/v1.14.0...v1.15.0
201204
[1.14.0]: https://github.com/DeepLcom/deepl-dotnet/compare/v1.13.0...v1.14.0
202205
[1.13.0]: https://github.com/DeepLcom/deepl-dotnet/compare/v1.12.0...v1.13.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.15.0</Version>
7-
<PackageVersion>1.15.0</PackageVersion>
8-
<FileVersion>1.15.0.0</FileVersion>
6+
<Version>1.16.0</Version>
7+
<PackageVersion>1.16.0</PackageVersion>
8+
<FileVersion>1.16.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.15.0", Translator.Version());
21+
Assert.Equal("1.16.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)