Skip to content

Commit d8750ad

Browse files
Bump version to 1.24.0
1 parent 5942bdf commit d8750ad

File tree

5 files changed

+9
-6
lines changed

5 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.23.0"
4+
current_version = "1.24.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.24.0] - 2025-12-10
810
### Added
911
- Added `tagHandlingVersion` parameter to `translateText()` to specify which version of the tag handling algorithm to use. Options are `v1` and `v2`.
1012

@@ -322,7 +324,8 @@ official DeepL Node.js client library took over this package name. Thanks to
322324
[Tristan De Oliveira](https://github.com/icrotz) for transferring the package
323325
ownership.
324326

325-
[Unreleased]: https://github.com/DeepLcom/deepl-node/compare/v1.23.0...HEAD
327+
[Unreleased]: https://github.com/DeepLcom/deepl-node/compare/v1.24.0...HEAD
328+
[1.24.0]: https://github.com/DeepLcom/deepl-node/compare/v1.23.0...v1.24.0
326329
[1.23.0]: https://github.com/DeepLcom/deepl-node/compare/v1.22.0...v1.23.0
327330
[1.22.0]: https://github.com/DeepLcom/deepl-node/compare/v1.21.0...v1.22.0
328331
[1.21.0]: https://github.com/DeepLcom/deepl-node/compare/v1.20.0...v1.21.0

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "deepl-node",
33
"description": "deepl-node is the official DeepL Node.js client library",
4-
"version": "1.23.0",
4+
"version": "1.24.0",
55
"author": "DeepL SE <[email protected]> (https://www.deepl.com)",
66
"license": "MIT",
77
"repository": {

src/translator.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -697,7 +697,7 @@ export class Translator {
697697
sendPlatformInfo: boolean,
698698
appInfo: AppInfo | undefined,
699699
): string {
700-
let libraryInfoString = 'deepl-node/1.21.0';
700+
let libraryInfoString = 'deepl-node/1.24.0';
701701
if (sendPlatformInfo) {
702702
const systemType = os.type();
703703
const systemVersion = os.version();

0 commit comments

Comments
 (0)