Skip to content

Commit 9e4e014

Browse files
authored
Merge pull request #70 from appwrite/chore-bump-version
Bump version
2 parents 3e4e6ce + e7cde31 commit 9e4e014

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ node_js:
55
jobs:
66
include:
77
- stage: NPM RC Release
8-
if: tag == *-RC*
8+
if: tag =~ /-(rc|RC)/
99
node_js: "14.16"
1010
script: echo "Deploying RC to NPM..."
1111
deploy:
@@ -14,7 +14,7 @@ jobs:
1414
api_key: $NPM_API_KEY
1515
tag: next
1616
- stage: NPM Release
17-
if: tag != *-RC*
17+
if: not tag =~ /-(rc|RC)/
1818
node_js: "14.16"
1919
script: echo "Deploying to NPM..."
2020
deploy:

lib/client.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ class Client {
1313
this.headers = {
1414
'accept-encoding': '*',
1515
'content-type': '',
16-
'user-agent' : `AppwriteNodeJSSDK/11.1.0 (${os.type()}; ${os.version()}; ${os.arch()})`,
16+
'user-agent' : `AppwriteNodeJSSDK/11.1.1 (${os.type()}; ${os.version()}; ${os.arch()})`,
1717
'x-sdk-name': 'Node.js',
1818
'x-sdk-platform': 'server',
1919
'x-sdk-language': 'nodejs',
20-
'x-sdk-version': '11.1.0',
20+
'x-sdk-version': '11.1.1',
2121
'X-Appwrite-Response-Format' : '1.4.0',
2222
};
2323
this.selfSigned = false;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "node-appwrite",
33
"homepage": "https://appwrite.io/support",
44
"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",
5-
"version": "11.1.0",
5+
"version": "11.1.1",
66
"license": "BSD-3-Clause",
77
"main": "./index.js",
88
"types": "./index.d.ts",

0 commit comments

Comments
 (0)