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

feat: release_status to production/stable #189

Merged
merged 6 commits into from May 13, 2020
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .repo-metadata.json
Expand Up @@ -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",
Expand Down
15 changes: 7 additions & 8 deletions README.rst
Expand Up @@ -68,17 +68,16 @@ Versioning

This library follows `Semantic Versioning <http://semver.org/>`_.

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 <https://cloud.google.com/terms/launch-stages>`_
More Information: `Google Cloud Python Library Support <https://github.com/googleapis/google-cloud-python/blob/master/README.rst#general-availability>`_

Contributing
------------

Contributions welcome! See the `Contributing Guide <https://github.com/googleapis/python-dialogflow/blob/master/.github/CONTRIBUTING.rst>`_.
Contributions welcome! See the `Contributing Guide <https://github.com/googleapis/python-dialogflow/blob/master/.github/CONTRIBUTING.md>`_.

License
-------
Expand All @@ -88,5 +87,5 @@ Apache Version 2.0
See `the LICENSE file <https://github.com/googleapis/python-dialogflow/blob/master/LICENSE>`_ for more information.


.. |release level| image:: https://img.shields.io/badge/release%20level-beta-yellow.svg?style&#x3D;flat
:target: https://cloud.google.com/terms/launch-stages
.. |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
2 changes: 1 addition & 1 deletion noxfile.py
Expand Up @@ -103,7 +103,7 @@ def docs(session):
"""Build the docs for this library."""

session.install("-e", ".")
session.install("sphinx", "alabaster", "recommonmark")
session.install("sphinx<3.0.0", "alabaster", "recommonmark")

shutil.rmtree(os.path.join("docs", "_build"), ignore_errors=True)
session.run(
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Expand Up @@ -19,8 +19,8 @@

name = "dialogflow"
description = "Client library for the Dialogflow API"
version = "0.8.0"
release_status = "Development Status :: 4 - Beta"
version = "1.0.0"
danoscarmike marked this conversation as resolved.
Show resolved Hide resolved
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__))
Expand All @@ -37,7 +37,7 @@
author="Google LLC",
author_email="googleapis-packages@google.com",
license="Apache 2.0",
url="https://github.com/dialogflow/dialogflow-python-client-v2",
url="https://github.com/googleapis/dialogflow-python-client-v2",
classifiers=[
release_status,
"Intended Audience :: Developers",
Expand Down