Skip to content

Commit 40c9c3e

Browse files
committed
chore: cleanup for 1.17.1 release
1 parent ed5395d commit 40c9c3e

File tree

4 files changed

+17
-9
lines changed

4 files changed

+17
-9
lines changed

Diff for: CHANGELOG.md

+9-3
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88
### Added
99
<!-- * add to here... -->
1010
### Changed
11-
- Adjust environment variable handling to avoid side effects in the published library
1211
<!-- * add to here... -->
1312

13+
## [1.17.1] - 2025-03-04
14+
### Added
15+
- Update list of supported target languages
16+
### Changed
17+
- Adjust environment variable handling to avoid side effects in the published library
18+
1419
## [1.17.0] - 2025-02-25
1520
### Added
1621
* Added document minification as a feature before document translation, to
@@ -290,8 +295,9 @@ client library took over this package name. Thanks to
290295
[Tristan De Oliveira](https://github.com/icrotz) for transferring the package
291296
ownership.
292297

293-
[//]: # (Unreleased should never be deleted)
294-
[Unreleased]: https://github.com/DeepLcom/deepl-node/compare/v1.17.0...HEAD
298+
<!-- (Unreleased should never be deleted) -->
299+
[Unreleased]: https://github.com/DeepLcom/deepl-node/compare/v1.17.1...HEAD
300+
[1.17.1]: https://github.com/DeepLcom/deepl-node/compare/v1.17.0...v1.17.1
295301
[1.17.0]: https://github.com/DeepLcom/deepl-node/compare/v1.16.0...v1.17.0
296302
[1.16.0]: https://github.com/DeepLcom/deepl-node/compare/v1.15.0...v1.16.0
297303
[1.15.0]: https://github.com/DeepLcom/deepl-node/compare/v1.14.0...v1.15.0

Diff for: package-lock.json

+6-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package.json

+1-1
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.17.0",
4+
"version": "1.17.1",
55
"author": "DeepL SE <[email protected]> (https://www.deepl.com)",
66
"license": "MIT",
77
"repository": {

Diff for: src/translator.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -693,7 +693,7 @@ export class Translator {
693693
sendPlatformInfo: boolean,
694694
appInfo: AppInfo | undefined,
695695
): string {
696-
let libraryInfoString = 'deepl-node/1.17.0';
696+
let libraryInfoString = 'deepl-node/1.17.1';
697697
if (sendPlatformInfo) {
698698
const systemType = os.type();
699699
const systemVersion = os.version();

0 commit comments

Comments
 (0)