diff --git a/CHANGELOG.md b/CHANGELOG.md index 2fd4281..7c60549 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ Changelog ============================== -## 5.3.2 (2019, May 13) +## 5.3.3 (2019, May 13) ### Fixes - [(# 63)](https://github.com/triniwiz/nativescript-stripe/issues/63) Properly handle no shipping method or address - [(# 56)](https://github.com/triniwiz/nativescript-stripe/issues/56) Update Stripe to iOS 15 and Android 8.7; some support for Strong Customer Authentication diff --git a/publish/instructions.md b/publish/instructions.md index d9fef87..d99c314 100644 --- a/publish/instructions.md +++ b/publish/instructions.md @@ -1,5 +1,8 @@ Process for publishing a new release: +Note: The `git` and `npm` commands are shown here using command line but can also be +performed in VS Code. + Sync local copy to latest source: ``` git checkout master @@ -12,20 +15,12 @@ cd src npm run ngc.clean ``` -Bump version in `package.json`: +Update version in `package.json` and `CHANGELOG.md` then commit with commit message: +`chore(): ver bump`. Sync to `github`. ``` cd src -npm version patch|minor|major -m "chore(): ver bump" -``` - -Update `CHANGELOG.md` as necessary and add it to the commit: -``` -git add package.json -git add ../CHANGELOG.md -``` - -Sync to `git`: -``` +npm version patch|minor|major +git commit -a -m "chore(): ver bump" git push ``` diff --git a/src/package.json b/src/package.json index 12a4d8b..cf7505a 100644 --- a/src/package.json +++ b/src/package.json @@ -1,6 +1,6 @@ { "name": "nativescript-stripe", - "version": "5.3.2", + "version": "5.3.3", "description": "NativeScript Stripe sdk", "main": "stripe", "typings": "index.d.ts",