From 1e71407f9251ececddc945e0511b63cee2965fee Mon Sep 17 00:00:00 2001 From: sofisl <55454395+sofisl@users.noreply.github.com> Date: Thu, 24 Feb 2022 13:16:09 -0800 Subject: [PATCH] feat: upgrade to GA (#96) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * 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 Co-authored-by: Benjamin E. Coe Co-authored-by: Dina Graves Portman Co-authored-by: Ace Nassri --- .repo-metadata.json | 4 ++-- README.md | 10 ++++++---- src/index.ts | 4 ++-- 3 files changed, 10 insertions(+), 8 deletions(-) diff --git a/.repo-metadata.json b/.repo-metadata.json index 27e1eb6..4aecf9e 100644 --- a/.repo-metadata.json +++ b/.repo-metadata.json @@ -1,6 +1,6 @@ { - "default_version": "v1beta2", - "release_level": "preview", + "default_version": "v1", + "release_level": "ga", "requires_billing": true, "client_documentation": "https://cloud.google.com/nodejs/docs/reference/artifact-registry/latest", "codeowner_team": "@googleapis/aap-dpes", diff --git a/README.md b/README.md index 3487ce5..7883a10 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ # [Artifact Registry: Node.js Client](https://github.com/googleapis/nodejs-artifact-registry) -[![release level](https://img.shields.io/badge/release%20level-preview-yellow.svg?style=flat)](https://cloud.google.com/terms/launch-stages) +[![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) [![npm version](https://img.shields.io/npm/v/@google-cloud/artifact-registry.svg)](https://www.npmjs.org/package/@google-cloud/artifact-registry) @@ -121,14 +121,16 @@ for versions compatible with Node.js 8. This library follows [Semantic Versioning](http://semver.org/). +This library is considered to be **General Availability (GA)**. This means it +is stable; the code surface will not change in backwards-incompatible ways +unless absolutely necessary (e.g. because of critical security issues) or with +an extensive deprecation period. Issues and requests against **GA** libraries +are addressed with the highest priority. -This library is considered to be in **preview**. This means it is still a -work-in-progress and under active development. Any release is subject to -backwards-incompatible changes at any time. More Information: [Google Cloud Platform Launch Stages][launch_stages] diff --git a/src/index.ts b/src/index.ts index d947b7f..0f8d058 100644 --- a/src/index.ts +++ b/src/index.ts @@ -19,8 +19,8 @@ import * as v1 from './v1'; import * as v1beta2 from './v1beta2'; -const ArtifactRegistryClient = v1beta2.ArtifactRegistryClient; -type ArtifactRegistryClient = v1beta2.ArtifactRegistryClient; +const ArtifactRegistryClient = v1.ArtifactRegistryClient; +type ArtifactRegistryClient = v1.ArtifactRegistryClient; export {v1, v1beta2, ArtifactRegistryClient}; export default {v1, v1beta2, ArtifactRegistryClient};