Skip to content

Commit

Permalink
prepares for next release v1.0.44
Browse files Browse the repository at this point in the history
  • Loading branch information
sotuzun committed Dec 13, 2023
1 parent 19f5af7 commit 988ea18
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@craftgate/craftgate",
"version": "1.0.43",
"version": "1.0.44",
"description": "Craftgate API JavaScript Client",
"main": "dist/index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/lib/HttpClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export class HttpClient {
config.headers[API_KEY_HEADER_NAME] = this._options.apiKey;
config.headers[RANDOM_HEADER_NAME] = randomStr;
config.headers[AUTH_VERSION_HEADER_NAME] = '1';
config.headers[CLIENT_VERSION_HEADER_NAME] = 'craftgate-node-client:1.0.43';
config.headers[CLIENT_VERSION_HEADER_NAME] = 'craftgate-node-client:1.0.44';
if (this._options.language) {
config.headers[LANGUAGE_HEADER_NAME] = this._options.language;
}
Expand Down

0 comments on commit 988ea18

Please sign in to comment.