Skip to content

Commit

Permalink
Prepare for next release v1.0.54 (#224)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlicanAkkus authored Dec 16, 2024
1 parent 2036d13 commit e562af1
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.53",
"version": "1.0.54",
"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.53';
config.headers[CLIENT_VERSION_HEADER_NAME] = 'craftgate-node-client:1.0.54';
if (this._options.language) {
config.headers[LANGUAGE_HEADER_NAME] = this._options.language;
}
Expand Down

0 comments on commit e562af1

Please sign in to comment.