From 4ccb185e968ce1a35e8c7a9795d8e418bafc1dcb Mon Sep 17 00:00:00 2001 From: Dan O'Meara Date: Mon, 18 May 2020 17:26:51 -0700 Subject: [PATCH] feat: release as production/stable (#14) resolves #6, resolves #13 Release-As: 1.0.0 --- .repo-metadata.json | 8 ++++---- README.rst | 18 +++++++++++++----- setup.py | 2 +- 3 files changed, 18 insertions(+), 10 deletions(-) diff --git a/.repo-metadata.json b/.repo-metadata.json index 814b07b..bde46a7 100644 --- a/.repo-metadata.json +++ b/.repo-metadata.json @@ -1,12 +1,12 @@ { - "name": "iamcredentials", + "name": "iam", "name_pretty": "Cloud Identity and Access Management", "product_documentation": "https://cloud.google.com/iam/docs/", - "client_documentation": "https://googleapis.dev/python/iamcredentials/latest", + "client_documentation": "https://googleapis.dev/python/iam/latest", "issue_tracker": "https://issuetracker.google.com/savedsearches/559761", - "release_level": "alpha", + "release_level": "ga", "language": "python", "repo": "googleapis/python-iam", "distribution_name": "google-cloud-iam", - "api_id": "iamcredentials.googleapis.com" + "api_id": "iam.googleapis.com" } \ No newline at end of file diff --git a/README.rst b/README.rst index 6f439c3..efbe9f4 100644 --- a/README.rst +++ b/README.rst @@ -1,16 +1,24 @@ -Python Client for IAM API (`Alpha`_) +Python Client for IAM API ================================================================ +|ga| |pypi| |versions| - -`IAM API`_: IAM API +`IAM API`_: Manages identity and access control for Google Cloud Platform resources, including the +creation of service accounts, which you can use to authenticate to Google and make API calls. - `Client Library Documentation`_ - `Product Documentation`_ -.. _Alpha: https://github.com/googleapis/google-cloud-python/blob/master/README.rst +.. |ga| image:: https://img.shields.io/badge/support-GA-gold.svg + :target: https://github.com/googleapis/google-cloud-python/blob/master/README.rst#general-availability +.. |pypi| image:: https://img.shields.io/pypi/v/google-cloud-iam.svg + :target: https://pypi.org/project/google-cloud-iam/ +.. |versions| image:: https://img.shields.io/pypi/pyversions/google-cloud-iam.svg + :target: https://pypi.org/project/google-cloud-iam/ + .. _IAM API: https://cloud.google.com/iam -.. _Client Library Documentation: https://googleapis.dev/python/iamcredentials/latest + +.. _Client Library Documentation: https://googleapis.dev/python/iam/latest .. _Product Documentation: https://cloud.google.com/iam Quick Start diff --git a/setup.py b/setup.py index 9277212..9d5f1ce 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ # 'Development Status :: 3 - Alpha' # 'Development Status :: 4 - Beta' # 'Development Status :: 5 - Production/Stable' -release_status = "Development Status :: 3 - Alpha" +release_status = "Development Status :: 5 - Production/Stable" dependencies = [ "google-api-core[grpc] >= 1.14.0, < 2.0.0dev", 'enum34; python_version < "3.4"',