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};