Skip to content

Commit 54250f2

Browse files
committed
docs: Increase version to 1.9.0
1 parent 9c772b5 commit 54250f2

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,14 @@ 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

8-
## [Unreleased]
8+
## [1.9.0] - 2023-03-22
99
### Added
1010
* Added platform and node version information to the user-agent string that is sent with API calls, along with an opt-out.
1111
* Added method for applications that use this library to identify themselves in API requests they make.
1212
### Fixed
1313
* Fixed proxy example code in README
1414

15+
1516
## [1.8.0] - 2023-01-26
1617
### Added
1718
* New languages available: Korean (`'ko'`) and Norwegian (bokmål) (`'nb'`). Add
@@ -171,7 +172,7 @@ client library took over this package name. Thanks to
171172
ownership.
172173

173174

174-
[Unreleased]: https://github.com/DeepLcom/deepl-node/compare/v1.8.0...HEAD
175+
[1.9.0]: https://github.com/DeepLcom/deepl-node/compare/v1.8.0...v1.9.0
175176
[1.8.0]: https://github.com/DeepLcom/deepl-node/compare/v1.7.5...v1.8.0
176177
[1.7.5]: https://github.com/DeepLcom/deepl-node/compare/v1.7.4...v1.7.5
177178
[1.7.4]: https://github.com/DeepLcom/deepl-node/compare/v1.7.3...v1.7.4

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

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -990,7 +990,7 @@ export class Translator {
990990
sendPlatformInfo: boolean,
991991
appInfo: AppInfo | undefined,
992992
): string {
993-
let libraryInfoString = 'deepl-node/1.8.0';
993+
let libraryInfoString = 'deepl-node/1.9.0';
994994
if (sendPlatformInfo) {
995995
const systemType = os.type();
996996
const systemVersion = os.version();

0 commit comments

Comments
 (0)