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

Commit

Permalink
feat: upgrade to GA (#96)
Browse files Browse the repository at this point in the history
* 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 <bencoe@google.com>
Co-authored-by: Dina Graves Portman <dinagraves@google.com>
Co-authored-by: Ace Nassri <anassri@google.com>
  • Loading branch information
5 people authored Feb 24, 2022
1 parent 0305ab4 commit 1e71407
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .repo-metadata.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down Expand Up @@ -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]
Expand Down
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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};
Expand Down

0 comments on commit 1e71407

Please sign in to comment.