Skip to content

Commit

Permalink
docs: Increase version to 1.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
JanEbbing committed Jun 1, 2023
1 parent 60cb937 commit e97a4d2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0


## [Unreleased]


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


[Unreleased]: https://github.com/DeepLcom/deepl-node/compare/v1.9.0...HEAD
[Unreleased]: https://github.com/DeepLcom/deepl-node/compare/v1.10.0...HEAD
[1.10.0]: https://github.com/DeepLcom/deepl-node/compare/v1.9.0...v1.10.0
[1.9.0]: https://github.com/DeepLcom/deepl-node/compare/v1.8.0...v1.9.0
[1.8.0]: https://github.com/DeepLcom/deepl-node/compare/v1.7.5...v1.8.0
[1.7.5]: https://github.com/DeepLcom/deepl-node/compare/v1.7.4...v1.7.5
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "deepl-node",
"description": "deepl-node is the official DeepL Node.js client library",
"version": "1.9.0",
"version": "1.10.0",
"author": "DeepL SE <open-source@deepl.com> (https://www.deepl.com)",
"license": "MIT",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -989,7 +989,7 @@ export class Translator {
sendPlatformInfo: boolean,
appInfo: AppInfo | undefined,
): string {
let libraryInfoString = 'deepl-node/1.9.0';
let libraryInfoString = 'deepl-node/1.10.0';
if (sendPlatformInfo) {
const systemType = os.type();
const systemVersion = os.version();
Expand Down

0 comments on commit e97a4d2

Please sign in to comment.