Skip to content

Commit 9976f4c

Browse files
Bump version to 1.19.0
1 parent f5ab171 commit 9976f4c

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.18.0"
4+
current_version = "1.19.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.19.0] - 2025-12-10
810
### Added
911
- Added `TagHandlingVersion` parameter to `TextTranslateOptions` to specify which version of the tag handling algorithm to use. Options are `v1` and `v2`.
1012

@@ -215,7 +217,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
215217
## [0.1.0] - 2021-11-05
216218
Initial release.
217219

218-
[Unreleased]: https://github.com/DeepLcom/deepl-dotnet/compare/v1.18.0...HEAD
220+
[Unreleased]: https://github.com/DeepLcom/deepl-dotnet/compare/v1.19.0...HEAD
221+
[1.19.0]: https://github.com/DeepLcom/deepl-dotnet/compare/v1.18.0...v1.19.0
219222
[1.18.0]: https://github.com/DeepLcom/deepl-dotnet/compare/v1.17.0...v1.18.0
220223
[1.17.0]: https://github.com/DeepLcom/deepl-dotnet/compare/v1.16.0...v1.17.0
221224
[1.16.0]: https://github.com/DeepLcom/deepl-dotnet/compare/v1.15.0...v1.16.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.18.0</Version>
7-
<PackageVersion>1.18.0</PackageVersion>
8-
<FileVersion>1.18.0.0</FileVersion>
6+
<Version>1.19.0</Version>
7+
<PackageVersion>1.19.0</PackageVersion>
8+
<FileVersion>1.19.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.18.0", Translator.Version());
21+
Assert.Equal("1.19.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)