Skip to content

Commit 357525e

Browse files
sofislgcf-owl-bot[bot]bcoedinagravesAce Nassri
authored
feat: upgrade to GA (#96)
* feat: upgrade to GA * 🦉 Updates from OwlBot See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * Update .repo-metadata.json * 🦉 Updates from OwlBot See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * v1beta2 -> v1 * 🦉 Updates from OwlBot See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * 🦉 Updates from OwlBot See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * 🦉 Updates from OwlBot See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com> Co-authored-by: Benjamin E. Coe <[email protected]> Co-authored-by: Dina Graves Portman <[email protected]> Co-authored-by: Ace Nassri <[email protected]>
1 parent 92bb8c6 commit 357525e

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

packages/google-devtools-artifactregistry/.repo-metadata.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"default_version": "v1beta2",
3-
"release_level": "preview",
2+
"default_version": "v1",
3+
"release_level": "ga",
44
"requires_billing": true,
55
"client_documentation": "https://cloud.google.com/nodejs/docs/reference/artifact-registry/latest",
66
"codeowner_team": "@googleapis/aap-dpes",

packages/google-devtools-artifactregistry/README.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
# [Artifact Registry: Node.js Client](https://github.com/googleapis/nodejs-artifact-registry)
66

7-
[![release level](https://img.shields.io/badge/release%20level-preview-yellow.svg?style=flat)](https://cloud.google.com/terms/launch-stages)
7+
[![release level](https://img.shields.io/badge/release%20level-general%20availability%20%28GA%29-brightgreen.svg?style=flat)](https://cloud.google.com/terms/launch-stages)
88
[![npm version](https://img.shields.io/npm/v/@google-cloud/artifact-registry.svg)](https://www.npmjs.org/package/@google-cloud/artifact-registry)
99

1010

@@ -121,14 +121,16 @@ for versions compatible with Node.js 8.
121121
This library follows [Semantic Versioning](http://semver.org/).
122122

123123

124+
This library is considered to be **General Availability (GA)**. This means it
125+
is stable; the code surface will not change in backwards-incompatible ways
126+
unless absolutely necessary (e.g. because of critical security issues) or with
127+
an extensive deprecation period. Issues and requests against **GA** libraries
128+
are addressed with the highest priority.
124129

125130

126131

127132

128133

129-
This library is considered to be in **preview**. This means it is still a
130-
work-in-progress and under active development. Any release is subject to
131-
backwards-incompatible changes at any time.
132134

133135

134136
More Information: [Google Cloud Platform Launch Stages][launch_stages]

packages/google-devtools-artifactregistry/src/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
import * as v1 from './v1';
2020
import * as v1beta2 from './v1beta2';
2121

22-
const ArtifactRegistryClient = v1beta2.ArtifactRegistryClient;
23-
type ArtifactRegistryClient = v1beta2.ArtifactRegistryClient;
22+
const ArtifactRegistryClient = v1.ArtifactRegistryClient;
23+
type ArtifactRegistryClient = v1.ArtifactRegistryClient;
2424

2525
export {v1, v1beta2, ArtifactRegistryClient};
2626
export default {v1, v1beta2, ArtifactRegistryClient};

0 commit comments

Comments
 (0)