Skip to content

Commit

Permalink
Prepare for next release v1.0.50 (#205)
Browse files Browse the repository at this point in the history
  • Loading branch information
sotuzun authored Jul 9, 2024
1 parent 0bc0340 commit 23884cb
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.49",
"version": "1.0.50",
"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.49';
config.headers[CLIENT_VERSION_HEADER_NAME] = 'craftgate-node-client:1.0.50';
if (this._options.language) {
config.headers[LANGUAGE_HEADER_NAME] = this._options.language;
}
Expand Down

0 comments on commit 23884cb

Please sign in to comment.