Skip to content
This repository has been archived by the owner on Dec 19, 2023. It is now read-only.

Commit

Permalink
release: nodejs-text-to-speech v0.3.0 (#55)
Browse files Browse the repository at this point in the history
* Release v0.3.0

* chore: bump samples deps version to 0.3.0

* Update config.yml

* fix: link the tts package

* fix: try linking

* update package-lock.json

* fix package-lock.json

* cleanup: no need for npm link when installing main pacakge
  • Loading branch information
jkwlui committed Jul 11, 2018
1 parent 75f1128 commit edef1da
Show file tree
Hide file tree
Showing 6 changed files with 12,864 additions and 4,551 deletions.
12 changes: 6 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
else
echo "Not a nightly build, skipping this step."
fi
- run: &npm_install_and_link
- run: &npm_install
name: Install and link the module
command: |-
mkdir -p /home/node/.npm-global
Expand All @@ -92,13 +92,13 @@ jobs:
steps:
- checkout
- run: *remove_package_lock
- run: *npm_install_and_link
- run: *npm_install
- run: &samples_npm_install_and_link
name: Link the module being tested to the samples.
command: |
cd samples/
npm install
npm link ../
npm install
environment:
NPM_CONFIG_PREFIX: /home/node/.npm-global
- run:
Expand All @@ -113,7 +113,7 @@ jobs:
steps:
- checkout
- run: *remove_package_lock
- run: *npm_install_and_link
- run: *npm_install
- run:
name: Build documentation.
command: npm run docs
Expand All @@ -130,7 +130,7 @@ jobs:
openssl aes-256-cbc -d -in .circleci/key.json.enc \
-out .circleci/key.json \
-k "${SYSTEM_TESTS_ENCRYPTION_KEY}"
- run: *npm_install_and_link
- run: *npm_install
- run: *samples_npm_install_and_link
- run:
name: Run sample tests.
Expand All @@ -150,5 +150,5 @@ jobs:
user: node
steps:
- checkout
- run: 'echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc'
- run: echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc
- run: npm publish
32 changes: 32 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Changelog

[npm history][1]

[1]: https://www.npmjs.com/package/@google-cloud/text-to-speech?activeTab=versions

## v0.3.0

### Implementation Changes
- Fixed the wrong region tag (#46)

#### Breaking Change:
- fix: drop support for node.js 4.x and 9.x (#49)

### New Features
- v1 GA is released (#29) 🎉

### Dependencies
- Update synth.py and update google-gax to 0.17.0 (#45)
- chore(deps): update dependency eslint to v5 (#42)
- fix(deps): update dependency yargs to v12 (#44)
- chore(deps): update dependency ava to ^0.25.0 (#37)
- fix(deps): update dependency yargs to v11 (#43)
- chore(deps): update dependency @google-cloud/nodejs-repo-tools to v2.3.0 (#36)

### Documentation
- fix: update linking for samples (#33)

### Internal / Testing Changes
- Configure Renovate (#30)
- refactor: drop repo-tool as an exec wrapper (#35)

2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@google-cloud/text-to-speech",
"description": "Cloud Text-to-Speech API client for Node.js",
"version": "0.2.0",
"version": "0.3.0",
"license": "Apache-2.0",
"author": "Google LLC",
"engines": {
Expand Down

0 comments on commit edef1da

Please sign in to comment.