Skip to content

Commit ae61bdd

Browse files
fix-travis-release (#16)
* Update package.json * Update .travis.yml * Update README.md * Update sdk.ts
1 parent 633fa50 commit ae61bdd

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,6 @@ jobs:
1717
provider: npm
1818
email: $NPM_EMAIL
1919
api_key: $NPM_API_KEY
20+
skip_cleanup: true
2021
on:
21-
tags: true
22+
tags: true

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ import { Appwrite } from "appwrite";
3434
To install with a CDN (content delivery network) add the following scripts to the bottom of your <body> tag, but before you use any Appwrite services:
3535

3636
```html
37-
<script src="https://cdn.jsdelivr.net/npm/[email protected].2"></script>
37+
<script src="https://cdn.jsdelivr.net/npm/[email protected].3"></script>
3838
```
3939

4040

@@ -109,4 +109,4 @@ This library is auto-generated by Appwrite custom [SDK Generator](https://github
109109

110110
## License
111111

112-
Please see the [BSD-3-Clause license](https://raw.githubusercontent.com/appwrite/appwrite/master/LICENSE) file for more information.
112+
Please see the [BSD-3-Clause license](https://raw.githubusercontent.com/appwrite/appwrite/master/LICENSE) file for more information.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "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": "3.0.2",
5+
"version": "3.0.3",
66
"license": "BSD-3-Clause",
77
"main": "dist/cjs/sdk.js",
88
"exports": {

src/sdk.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class Appwrite {
2929
locale: '',
3030
};
3131
headers: Headers = {
32-
'x-sdk-version': 'appwrite:web:3.0.2',
32+
'x-sdk-version': 'appwrite:web:3.0.3',
3333
'X-Appwrite-Response-Format': '0.8.0',
3434
};
3535

@@ -2308,4 +2308,4 @@ class Appwrite {
23082308
};
23092309

23102310
export { Appwrite }
2311-
export type { AppwriteException }
2311+
export type { AppwriteException }

0 commit comments

Comments
 (0)