-
Notifications
You must be signed in to change notification settings - Fork 184
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #104 from Nexmo/develop
Bump to 1.1.2 - fixes JSON parse error
- Loading branch information
Showing
5 changed files
with
107 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,13 @@ | ||
language: node_js | ||
node_js: | ||
- 4 | ||
- 5 | ||
- 6 | ||
- 4 | ||
- 5 | ||
- 6 | ||
deploy: | ||
provider: npm | ||
email: [email protected] | ||
api_key: | ||
secure: dIwjf+unoDvAX/oId0TiXZ1/KNgzxZ3sqk/nquKVu0Ln5hEmePiuFEYUlpI7Lz3xVgwJqvlOJwdqGZjTT1xuih9FtOTjYxmAmF+KvfQxlMmHMpQAiOOQryLbEPMJg4lHoCinqOaw9I/cWt0Dad2+OHvzdJ+hBYC9Q54vYguBj1Dq2ENf47Ay0T2w+s6AFDOEvDF7vprFFJFY9xGhTgvJR2AuixaffKMi06CA3+G7WyNCFyYGfZgMdsx+E6rh2RC6ZntWOxR/+DbNROF96RQ4zyPflPk52A5yGeIal15tfegF4ZZ912escYeEfXn2DM2xe98qcnUBexYRGCvQQYI0E3rUDs+wrAI84NeylZEVnDXRnRgBpx8KxAF3vBsh2v+FeWySGEy+w9stISXNuWx7VkhaKd8GDicATILE8jRMivu+LmObslrLWbFIn50j6yNltWZjcioDHAuUavIsHYAb42dtg0STpnAZXFkxv8lrIoJehGURRRl9sjaokHZXM7BoQNL08Jfyi6DCage9JokpRalkg89tlAkYynuM5dBaqJopQrr3+gpLmxUhYBik1nCR9/TF8NxcaoeRzLlam4anerXEz5MECtymnOKH9nYdiCFCftOWSgVJ3pZYmq1SXmMEAAFEVGHs2K8sA/9gmNFfseHAoQq4vMkR0rYnrCYcCkU= | ||
on: | ||
tags: true | ||
repo: Nexmo/nexmo-node |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
## A quick guide for maintainers | ||
|
||
The following is a quick cheatsheet for maintainers. | ||
|
||
* New commits are pushed to the `develop` branch or their own feature branch and merged into `develop`. | ||
* The `master` branch is to be kept up to date with the latest release on [NPMjs.com](https://www.npmjs.com/). | ||
* When rolling a new release, update the package version on the `develop` branch and merge `develop` into `master`. Then tag this new release: | ||
* `git checkout master` | ||
* `git pull master` to make sure you have the merged content | ||
* `git tag -v v0.0.0` where `0.0.0` is your release | ||
* `git push origin v0.0.0` to push your tag to GitHub | ||
* **Note:** when merging `develop` into `master` make sure to use `rebase and merge` in order to keep `develop` in sync with `master`. | ||
* When a new tag is pushed to Github the new release will automatically be pushed to NPM by Travis. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters