Skip to content

Commit 0301927

Browse files
docs: Update to version 1.19.1
1 parent a2da935 commit 0301927

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

CHANGELOG.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@ 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-
### Added
9-
<!-- * add to here... -->
8+
9+
10+
## [1.19.1] - 2025-09-16
1011
### Changed
1112
* Update form-data lib due to https://github.com/advisories/GHSA-fjxv-7rqg-78g4
1213
* Fixed `targetLang` parameter in `DeepLClient::rephraseText` to be an optional `string` parameter.
@@ -320,7 +321,8 @@ client library took over this package name. Thanks to
320321
ownership.
321322

322323
<!-- (Unreleased should never be deleted) -->
323-
[Unreleased]: https://github.com/DeepLcom/deepl-node/compare/v1.19.0...HEAD
324+
[Unreleased]: https://github.com/DeepLcom/deepl-node/compare/v1.19.1...HEAD
325+
[1.19.1]: https://github.com/DeepLcom/deepl-node/compare/v1.19.0...v1.19.1
324326
[1.19.0]: https://github.com/DeepLcom/deepl-node/compare/v1.18.0...v1.19.0
325327
[1.18.0]: https://github.com/DeepLcom/deepl-node/compare/v1.17.3...v1.18.0
326328
[1.17.3]: https://github.com/DeepLcom/deepl-node/compare/v1.17.2...v1.17.3

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.19.0",
4+
"version": "1.19.1",
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
@@ -695,7 +695,7 @@ export class Translator {
695695
sendPlatformInfo: boolean,
696696
appInfo: AppInfo | undefined,
697697
): string {
698-
let libraryInfoString = 'deepl-node/1.19.0';
698+
let libraryInfoString = 'deepl-node/1.19.1';
699699
if (sendPlatformInfo) {
700700
const systemType = os.type();
701701
const systemVersion = os.version();

0 commit comments

Comments
 (0)