Skip to content

Commit

Permalink
v0.13.1 (#178)
Browse files Browse the repository at this point in the history
* deploy to NPM with an env variable, not an encrypted key
* cache node_modules
  • Loading branch information
morleyzhi authored Apr 19, 2019
1 parent aea9fd1 commit d4e6c25
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ matrix:
- node_js: 10
- node_js: 6.14.0
env: SAUCE=true
cache:
directories:
- node_modules
script:
- |
echo "machine github.com login stellar-jenkins password $GITHUB_TOKEN" >~/.netrc
Expand Down Expand Up @@ -38,8 +41,7 @@ after_deploy: './after_deploy.sh'
deploy:
- provider: npm
email: [email protected]
api_key:
secure: UHevh5JXNHILJeMNMfgU77noiOndjx9N3+RvTxUoR2PaoJhLqpnzlmmwsX7rp6dXyByoNv3AMp1Dt8tSMpX+oZRiofnbh1wGhAKs5ZRxqiZUPQPjIaqcDnT2PhkLr573BR6Nf9+/mePlSangD0rkdSxAxYv1m/Inn+3Bc3dIphM=
api_key: $NPM_TOKEN
skip_cleanup: true
on:
tags: true
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
As this project is pre 1.0, breaking changes may happen for minor version bumps.
A breaking change will get clearly notified in this log.

## [v0.13.1](https://github.com/stellar/js-stellar-base/compare/v0.13.0...v0.13.1)

- Travis: Deploy NPM with an environment variable instead of an encrypted API key.
- Instruct Travis to cache node_modules

## [v0.13.0](https://github.com/stellar/js-stellar-base/compare/v0.12.0...v0.13.0)

- Remove the `crypto` library. This reduces the number of Node built-ins we have
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "stellar-base",
"version": "0.13.0",
"version": "0.13.1",
"description": "Low level stellar support library",
"main": "lib/index.js",
"scripts": {
Expand Down

0 comments on commit d4e6c25

Please sign in to comment.