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

feat: upgrade to GA #96

Merged
merged 17 commits into from
Feb 24, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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