Skip to content

Commit 1cb5f7c

Browse files
Increase version to 0.1.1
1 parent 792ab71 commit 1cb5f7c

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ 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+
## [0.1.1] - 2022-03-04
9+
### Fixed
10+
- Fix error in package version.
11+
12+
813
## [0.1.0] - 2022-03-04
914
Initial release.
1015

@@ -17,5 +22,6 @@ client library took over this package name. Thanks to
1722
ownership.
1823

1924

25+
[0.1.1]: https://github.com/DeepLcom/deepl-node/compare/v0.1.0...v0.1.1
2026
[0.1.0]: https://github.com/DeepLcom/deepl-node/releases/tag/v0.1.0
2127
[1.0.0]: https://github.com/icrotz/deepl

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": "0.1.0",
4+
"version": "0.1.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
@@ -249,7 +249,7 @@ export class Translator {
249249
}
250250
const headers = {
251251
"Authorization": `DeepL-Auth-Key ${authKey}`,
252-
"User-Agent": "deepl-node/0.1.0",
252+
"User-Agent": "deepl-node/0.1.1",
253253
...(options?.headers ?? {})
254254
};
255255

0 commit comments

Comments
 (0)