Skip to content

Commit 6dd8bf4

Browse files
Increase version to 1.3.1
1 parent 6efb113 commit 6dd8bf4

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed

CHANGELOG.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ 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-
## [1.3.0] - 2022-05-18
8+
## [1.3.1] - 2022-05-18
9+
Replaces version 1.3.0 which was broken due an incorrect package version.
910
### Added
1011
* New languages available: Indonesian (`'id'`) and Turkish (`'tr'`). Add
1112
language code constants and tests.
@@ -17,6 +18,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1718
`NonRegionalLanguageCode`.
1819

1920

21+
## [1.3.0] - 2022-05-18
22+
Due to an incorrect package version, this version was removed.
23+
24+
2025
## [1.2.2] - 2022-04-20
2126
### Added
2227
* Glossaries are now supported for language pairs: English <-> Japanese and
@@ -75,7 +80,8 @@ client library took over this package name. Thanks to
7580
ownership.
7681

7782

78-
[1.3.0]: https://github.com/DeepLcom/deepl-node/compare/v1.2.2...v1.3.0
83+
[1.3.1]: https://github.com/DeepLcom/deepl-node/compare/v1.2.2...v1.3.1
84+
[1.3.0]: https://github.com/DeepLcom/deepl-node/releases/tag/v1.3.0
7985
[1.2.2]: https://github.com/DeepLcom/deepl-node/compare/v1.2.1...v1.2.2
8086
[1.2.1]: https://github.com/DeepLcom/deepl-node/compare/v1.2.0...v1.2.1
8187
[1.2.0]: https://github.com/DeepLcom/deepl-node/compare/v1.1.1...v1.2.0

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.3.0",
4+
"version": "1.3.1",
55
"author": "DeepL SE <open-source@deepl.com> (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
@@ -471,7 +471,7 @@ export class Translator {
471471
}
472472
const headers = {
473473
Authorization: `DeepL-Auth-Key ${authKey}`,
474-
'User-Agent': 'deepl-node/1.3.0',
474+
'User-Agent': 'deepl-node/1.3.1',
475475
...(options?.headers ?? {}),
476476
};
477477

0 commit comments

Comments
 (0)