From d4e6c257c3f86e9b92f81c32fb561fd64fa4e56b Mon Sep 17 00:00:00 2001 From: Morley Zhi Date: Fri, 19 Apr 2019 14:58:26 -0400 Subject: [PATCH] v0.13.1 (#178) * deploy to NPM with an env variable, not an encrypted key * cache node_modules --- .travis.yml | 6 ++++-- CHANGELOG.md | 5 +++++ package.json | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index c4f5957a8..72a3b50f8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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 @@ -38,8 +41,7 @@ after_deploy: './after_deploy.sh' deploy: - provider: npm email: npm@stellar.org - api_key: - secure: UHevh5JXNHILJeMNMfgU77noiOndjx9N3+RvTxUoR2PaoJhLqpnzlmmwsX7rp6dXyByoNv3AMp1Dt8tSMpX+oZRiofnbh1wGhAKs5ZRxqiZUPQPjIaqcDnT2PhkLr573BR6Nf9+/mePlSangD0rkdSxAxYv1m/Inn+3Bc3dIphM= + api_key: $NPM_TOKEN skip_cleanup: true on: tags: true diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d99ba2d9..065d53c02 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/package.json b/package.json index 7129df6c4..286bbb3d6 100644 --- a/package.json +++ b/package.json @@ -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": {