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

feat: release as production/stable #17

Merged
merged 1 commit into from
May 19, 2020
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .repo-metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"product_documentation": "https://cloud.google.com/monitoring/dashboards/",
"client_documentation": "https://googleapis.dev/python/monitoring-dashboards/latest",
"issue_tracker": "https://issuetracker.google.com/savedsearches/559785",
"release_level": "beta",
"release_level": "ga",
"language": "python",
"repo": "googleapis/python-monitoring-dashboards",
"distribution_name": "google-cloud-monitoring-dashboards",
Expand Down
14 changes: 11 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,12 +1,20 @@
Python Client for Stackdriver Monitoring Dashboards API (`Beta`_)
==================================================================
Python Client for Stackdriver Monitoring Dashboards API
=======================================================

|ga| |pypi| |versions|

`Stackdriver Monitoring Dashboards API`_: Manages dashboard configurations used in the Stackdriver UI.

- `Client Library Documentation`_
- `Product Documentation`_

.. _Beta: 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-monitoring-dashboards.svg
:target: https://pypi.org/project/google-cloud-monitoring-dashboards/
.. |versions| image:: https://img.shields.io/pypi/pyversions/google-cloud-monitoring-dashboards.svg
:target: https://pypi.org/project/google-cloud-monitoring-dashboards/

.. _Stackdriver Monitoring Dashboards API: https://cloud.google.com/monitoring/dashboards/
.. _Client Library Documentation: https://googleapis.dev/python/monitoring-dashboards/latest
.. _Product Documentation: https://cloud.google.com/monitoring/dashboards/
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,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
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
name = "google-cloud-monitoring-dashboards"
description = "Monitoring Dashboards API client library"
version = "0.1.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",
'enum34; python_version < "3.4"',
Expand Down