Skip to content

Commit

Permalink
Merge pull request #70 from appwrite/chore-bump-version
Browse files Browse the repository at this point in the history
Bump version
  • Loading branch information
abnegate authored Feb 23, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
2 parents 3e4e6ce + e7cde31 commit 9e4e014
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@ node_js:
jobs:
include:
- stage: NPM RC Release
if: tag == *-RC*
if: tag =~ /-(rc|RC)/
node_js: "14.16"
script: echo "Deploying RC to NPM..."
deploy:
@@ -14,7 +14,7 @@ jobs:
api_key: $NPM_API_KEY
tag: next
- stage: NPM Release
if: tag != *-RC*
if: not tag =~ /-(rc|RC)/
node_js: "14.16"
script: echo "Deploying to NPM..."
deploy:
4 changes: 2 additions & 2 deletions lib/client.js
Original file line number Diff line number Diff line change
@@ -13,11 +13,11 @@ class Client {
this.headers = {
'accept-encoding': '*',
'content-type': '',
'user-agent' : `AppwriteNodeJSSDK/11.1.0 (${os.type()}; ${os.version()}; ${os.arch()})`,
'user-agent' : `AppwriteNodeJSSDK/11.1.1 (${os.type()}; ${os.version()}; ${os.arch()})`,
'x-sdk-name': 'Node.js',
'x-sdk-platform': 'server',
'x-sdk-language': 'nodejs',
'x-sdk-version': '11.1.0',
'x-sdk-version': '11.1.1',
'X-Appwrite-Response-Format' : '1.4.0',
};
this.selfSigned = false;
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
"name": "node-appwrite",
"homepage": "https://appwrite.io/support",
"description": "Appwrite is an open-source self-hosted backend server that abstract and simplify complex and repetitive development tasks behind a very simple REST API",
"version": "11.1.0",
"version": "11.1.1",
"license": "BSD-3-Clause",
"main": "./index.js",
"types": "./index.d.ts",

0 comments on commit 9e4e014

Please sign in to comment.