Skip to content

Commit a35d363

Browse files
release 1.0.0 for GA (#9)
1 parent ef11d5b commit a35d363

File tree

6 files changed

+36
-10
lines changed

6 files changed

+36
-10
lines changed

packages/google-cloud-node/.circleci/config.yml

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ jobs:
9191
node4:
9292
docker:
9393
- image: node:4
94+
user: node
9495
steps:
9596
- checkout
9697
- run:
@@ -106,44 +107,57 @@ jobs:
106107
node6:
107108
docker:
108109
- image: node:6
110+
user: node
109111
<<: *unit_tests
110112
node7:
111113
docker:
112114
- image: node:7
115+
user: node
113116
<<: *unit_tests
114117
node8:
115118
docker:
116119
- image: node:8
120+
user: node
117121
<<: *unit_tests
118122
node9:
119123
docker:
120124
- image: node:9
125+
user: node
121126
<<: *unit_tests
122127

123128
lint:
124129
docker:
125130
- image: node:8
131+
user: node
126132
steps:
127133
- checkout
128134
- run:
129135
name: Install modules and dependencies.
130136
command: |
137+
mkdir -p /home/node/.npm-global
131138
npm install
132139
npm link
140+
environment:
141+
NPM_CONFIG_PREFIX: /home/node/.npm-global
133142
- run:
134143
name: Link the module being tested to the samples.
135144
command: |
136145
cd samples/
137146
npm link @google-cloud/speech
138147
npm install
139148
cd ..
149+
environment:
150+
NPM_CONFIG_PREFIX: /home/node/.npm-global
140151
- run:
141152
name: Run linting.
142153
command: npm run lint
154+
environment:
155+
NPM_CONFIG_PREFIX: /home/node/.npm-global
143156

144157
docs:
145158
docker:
146159
- image: node:8
160+
user: node
147161
steps:
148162
- checkout
149163
- run:
@@ -156,6 +170,7 @@ jobs:
156170
sample_tests:
157171
docker:
158172
- image: node:8
173+
user: node
159174
steps:
160175
- checkout
161176
- run:
@@ -167,30 +182,37 @@ jobs:
167182
- run:
168183
name: Install and link the module.
169184
command: |
185+
mkdir -p /home/node/.npm-global
170186
npm install
171187
npm link
188+
environment:
189+
NPM_CONFIG_PREFIX: /home/node/.npm-global
172190
- run:
173191
name: Link the module being tested to the samples.
174192
command: |
175193
cd samples/
176194
npm link @google-cloud/speech
177195
npm install
178196
cd ..
197+
environment:
198+
NPM_CONFIG_PREFIX: /home/node/.npm-global
179199
- run:
180200
name: Run sample tests.
181201
command: npm run samples-test
182202
environment:
183203
GCLOUD_PROJECT: long-door-651
184-
GOOGLE_APPLICATION_CREDENTIALS: /var/speech/.circleci/key.json
204+
GOOGLE_APPLICATION_CREDENTIALS: /home/node/speech-samples/.circleci/key.json
205+
NPM_CONFIG_PREFIX: /home/node/.npm-global
185206
- run:
186207
name: Remove unencrypted key.
187208
command: rm .circleci/key.json
188209
when: always
189-
working_directory: /var/speech/
210+
working_directory: /home/node/speech-samples/
190211

191212
system_tests:
192213
docker:
193214
- image: node:8
215+
user: node
194216
steps:
195217
- checkout
196218
- run:
@@ -215,6 +237,7 @@ jobs:
215237
publish_npm:
216238
docker:
217239
- image: node:8
240+
user: node
218241
steps:
219242
- checkout
220243
- run:

packages/google-cloud-node/.cloud-repo-tools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"requiresProjectId": true,
44
"product": "speech",
55
"client_reference_url": "https://cloud.google.com/nodejs/docs/reference/speech/latest/",
6-
"release_quality": "beta",
6+
"release_quality": "ga",
77
"samples": [
88
{
99
"id": "recognize",

packages/google-cloud-node/CONTRIBUTORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,5 @@ Puneith Kaul <[email protected]>
2020
Song Wang <[email protected]>
2121
Stephen Sawchuk <[email protected]>
2222
Tim Swast <[email protected]>
23+
greenkeeper[bot] <greenkeeper[bot]@users.noreply.github.com>
2324

packages/google-cloud-node/README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# [Google Cloud Speech API: Node.js Client](https://github.com/googleapis/nodejs-speech)
44

5-
[![release level](https://img.shields.io/badge/release%20level-beta-yellow.svg?style&#x3D;flat)](https://cloud.google.com/terms/launch-stages)
5+
[![release level](https://img.shields.io/badge/release%20level-general%20availability%20%28GA%29-brightgreen.svg?style&#x3D;flat)](https://cloud.google.com/terms/launch-stages)
66
[![CircleCI](https://img.shields.io/circleci/project/github/googleapis/nodejs-speech.svg?style=flat)](https://circleci.com/gh/googleapis/nodejs-speech)
77
[![AppVeyor](https://ci.appveyor.com/api/projects/status/github/googleapis/nodejs-speech?branch=master&svg=true)](https://ci.appveyor.com/project/googleapis/nodejs-speech)
88
[![codecov](https://img.shields.io/codecov/c/github/googleapis/nodejs-speech/master.svg?style=flat)](https://codecov.io/gh/googleapis/nodejs-speech)
@@ -127,10 +127,11 @@ also contains samples.
127127

128128
This library follows [Semantic Versioning](http://semver.org/).
129129

130-
This library is considered to be in **beta**. This means it is expected to be
131-
mostly stable while we work toward a general availability release; however,
132-
complete stability is not guaranteed. We will address issues and requests
133-
against beta libraries with a high priority.
130+
This library is considered to be **General Availability (GA)**. This means it
131+
is stable; the code surface will not change in backwards-incompatible ways
132+
unless absolutely necessary (e.g. because of critical security issues) or with
133+
an extensive deprecation period. Issues and requests against **GA** libraries
134+
are addressed with the highest priority.
134135

135136
More Information: [Google Cloud Platform Launch Stages][launch_stages]
136137

packages/google-cloud-node/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@google-cloud/speech",
33
"description": "Cloud Speech Client Library for Node.js",
4-
"version": "0.11.0",
4+
"version": "1.0.0",
55
"license": "Apache-2.0",
66
"author": "Google Inc.",
77
"engines": {
@@ -46,6 +46,7 @@
4646
"Song Wang <[email protected]>",
4747
"Stephen Sawchuk <[email protected]>",
4848
"Tim Swast <[email protected]>",
49+
"greenkeeper[bot] <greenkeeper[bot]@users.noreply.github.com>",
4950
"wanacode <[email protected]>"
5051
],
5152
"scripts": {

packages/google-cloud-node/samples/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"test": "repo-tools test run --cmd ava -- -T 20s --verbose system-test/*.test.js"
1313
},
1414
"dependencies": {
15-
"@google-cloud/speech": "0.11.0",
15+
"@google-cloud/speech": "1.0.0",
1616
"@google-cloud/storage": "1.4.0",
1717
"node-record-lpcm16": "0.3.0",
1818
"yargs": "10.0.3"

0 commit comments

Comments
 (0)