From 8b995dc0dd883e4980a492a67d9c76b7f2603f00 Mon Sep 17 00:00:00 2001 From: Dan O'Meara Date: Tue, 12 May 2020 20:26:04 -0700 Subject: [PATCH] feat: release_status to production/stable (#189) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Package name: **google-cloud-dialogflow** Current release: **beta** Proposed release: **GA** ## Instructions Check the lists below, adding tests / documentation as required. Once all the "required" boxes are ticked, please create a release and close this issue. ## Required - [ ] 28 days elapsed since last beta release with new API surface - [ ] Server API is GA - [ ] Package API is stable, and we can commit to backward compatibility - [ ] All dependencies are GA ## Optional - [ ] Most common / important scenarios have descriptive samples - [ ] Public manual methods have at least one usage sample each (excluding overloads) - [ ] Per-API README includes a full description of the API - [ ] Per-API README contains at least one “getting started” sample using the most common API scenario - [ ] Manual code has been reviewed by API producer - [ ] Manual code has been reviewed by a DPE responsible for samples - [ ] 'Client Libraries' page is added to the product documentation in 'APIs & Reference' section of the product's documentation on Cloud Site --- .repo-metadata.json | 2 +- README.rst | 15 +++++++-------- setup.py | 2 +- 3 files changed, 9 insertions(+), 10 deletions(-) diff --git a/.repo-metadata.json b/.repo-metadata.json index 02ebb28e1..00d50fee7 100644 --- a/.repo-metadata.json +++ b/.repo-metadata.json @@ -4,7 +4,7 @@ "product_documentation": "https://www.dialogflow.com/", "client_documentation": "https://googleapis.dev/python/dialogflow/latest", "issue_tracker": "https://issuetracker.google.com/savedsearches/5300385", - "release_level": "beta", + "release_level": "ga", "language": "python", "repo": "googleapis/dialogflow-python-client-v2", "distribution_name": "dialogflow", diff --git a/README.rst b/README.rst index 62e1be496..53552a625 100644 --- a/README.rst +++ b/README.rst @@ -68,17 +68,16 @@ Versioning This library follows `Semantic Versioning `_. -This library is considered to be in **beta**. This means it is expected to be -mostly stable while we work toward a general availability release; however, -complete stability is not guaranteed. We will address issues and requests -against beta libraries with a high priority. +This library is considered to be stable. This means and that the code surface will not change in backwards-incompatible +ways unless either 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. -More Information: `Google Cloud Platform Launch Stages `_ +More Information: `Google Cloud Python Library Support `_ Contributing ------------ -Contributions welcome! See the `Contributing Guide `_. +Contributions welcome! See the `Contributing Guide `_. License ------- @@ -88,5 +87,5 @@ Apache Version 2.0 See `the LICENSE file `_ for more information. -.. |release level| image:: https://img.shields.io/badge/release%20level-beta-yellow.svg?style=flat - :target: https://cloud.google.com/terms/launch-stages \ No newline at end of file +.. |release level| image:: https://img.shields.io/badge/support-GA-gold.svg + :target: https://github.com/googleapis/google-cloud-python/blob/master/README.rst#general-availability \ No newline at end of file diff --git a/setup.py b/setup.py index 546f8c15a..7523a9814 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ name = "dialogflow" description = "Client library for the Dialogflow API" version = "0.8.0" -release_status = "Development Status :: 4 - Beta" +release_status = "Development Status :: 5 - Production/Stable" dependencies = ["google-api-core[grpc] >= 1.14.0, < 2.0.0dev"] package_root = os.path.abspath(os.path.dirname(__file__))