Skip to content

Commit e97a4d2

Browse files
committed
docs: Increase version to 1.10.0
1 parent 60cb937 commit e97a4d2

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77

88
## [Unreleased]
9+
10+
11+
## [1.10.0] - 2023-06-01
912
### Fixed
1013
* Changed document translation to poll the server every 5 seconds. This should greatly reduce observed document translation processing time.
1114
* Fix getUsage request to be a HTTP GET request, not POST.
@@ -178,7 +181,8 @@ client library took over this package name. Thanks to
178181
ownership.
179182

180183

181-
[Unreleased]: https://github.com/DeepLcom/deepl-node/compare/v1.9.0...HEAD
184+
[Unreleased]: https://github.com/DeepLcom/deepl-node/compare/v1.10.0...HEAD
185+
[1.10.0]: https://github.com/DeepLcom/deepl-node/compare/v1.9.0...v1.10.0
182186
[1.9.0]: https://github.com/DeepLcom/deepl-node/compare/v1.8.0...v1.9.0
183187
[1.8.0]: https://github.com/DeepLcom/deepl-node/compare/v1.7.5...v1.8.0
184188
[1.7.5]: https://github.com/DeepLcom/deepl-node/compare/v1.7.4...v1.7.5

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.9.0",
4+
"version": "1.10.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
@@ -989,7 +989,7 @@ export class Translator {
989989
sendPlatformInfo: boolean,
990990
appInfo: AppInfo | undefined,
991991
): string {
992-
let libraryInfoString = 'deepl-node/1.9.0';
992+
let libraryInfoString = 'deepl-node/1.10.0';
993993
if (sendPlatformInfo) {
994994
const systemType = os.type();
995995
const systemVersion = os.version();

0 commit comments

Comments
 (0)