Skip to content

Commit 0dc59ba

Browse files
Merge pull request #83 from appwrite/dev
fix: travis
2 parents 8cbc520 + 1fb9c75 commit 0dc59ba

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.travis.yml

+3
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ jobs:
1616
email: $NPM_EMAIL
1717
api_key: $NPM_API_KEY
1818
tag: next
19+
skip_cleanup: true
20+
on:
21+
tags: true
1922
- stage: NPM Release
2023
if: not tag =~ /-(rc|RC)/
2124
node_js: "16"

package.json

+1-1
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": "12.1.0-rc.3",
5+
"version": "12.1.0-rc.4",
66
"license": "BSD-3-Clause",
77
"main": "dist/index.js",
88
"type": "commonjs",

src/client.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class AppwriteException extends Error {
3333
}
3434

3535
function getUserAgent() {
36-
let ua = 'AppwriteNodeJSSDK/12.1.0-rc.3';
36+
let ua = 'AppwriteNodeJSSDK/12.1.0-rc.4';
3737

3838
// `process` is a global in Node.js, but not fully available in all runtimes.
3939
const platform: string[] = [];
@@ -82,7 +82,7 @@ class Client {
8282
'x-sdk-name': 'Node.js',
8383
'x-sdk-platform': 'server',
8484
'x-sdk-language': 'nodejs',
85-
'x-sdk-version': '12.1.0-rc.3',
85+
'x-sdk-version': '12.1.0-rc.4',
8686
'user-agent' : getUserAgent(),
8787
'X-Appwrite-Response-Format': '1.5.0',
8888
};

0 commit comments

Comments
 (0)