Skip to content

Commit 863f2ee

Browse files
docs: Update to version 1.21.0
1 parent e8dd1c4 commit 863f2ee

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.20.0"
4+
current_version = "1.21.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
@@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [1.21.0] - 2025-11-03
10+
911
### Added
1012
* Added `extraRequestParameters` 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.).
1113

@@ -330,7 +332,8 @@ client library took over this package name. Thanks to
330332
ownership.
331333

332334
<!-- (Unreleased should never be deleted) -->
333-
[Unreleased]: https://github.com/DeepLcom/deepl-node/compare/v1.20.0...HEAD
335+
[Unreleased]: https://github.com/DeepLcom/deepl-node/compare/v1.21.1...HEAD
336+
[1.21.0]: https://github.com/DeepLcom/deepl-node/compare/v1.20.0...v1.21.1
334337
[1.20.0]: https://github.com/DeepLcom/deepl-node/compare/v1.19.1...v1.20.0
335338
[1.19.1]: https://github.com/DeepLcom/deepl-node/compare/v1.19.0...v1.19.1
336339
[1.19.0]: https://github.com/DeepLcom/deepl-node/compare/v1.18.0...v1.19.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.20.0",
4+
"version": "1.21.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.20.0';
700+
let libraryInfoString = 'deepl-node/1.21.0';
701701
if (sendPlatformInfo) {
702702
const systemType = os.type();
703703
const systemVersion = os.version();

0 commit comments

Comments
 (0)