From 1985feff307ee117d552e1c13c1ef8b2b86278e0 Mon Sep 17 00:00:00 2001 From: Bu Sun Kim <8822365+busunkim96@users.noreply.github.com> Date: Tue, 13 Oct 2020 10:53:34 -0600 Subject: [PATCH] feat: bump to GA (#51) --- .repo-metadata.json | 4 ++-- README.rst | 18 +++++++++--------- setup.py | 4 ++-- 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.repo-metadata.json b/.repo-metadata.json index 0e6dcdd6..f0c8892b 100644 --- a/.repo-metadata.json +++ b/.repo-metadata.json @@ -1,10 +1,10 @@ { "name": "cloudtrace", - "name_pretty": "Stackdriver Trace", + "name_pretty": "Cloud Trace", "product_documentation": "https://cloud.google.com/trace/docs", "client_documentation": "https://googleapis.dev/python/cloudtrace/latest", "issue_tracker": "https://issuetracker.google.com/savedsearches/559776", - "release_level": "alpha", + "release_level": "ga", "language": "python", "repo": "googleapis/python-trace", "distribution_name": "google-cloud-trace", diff --git a/README.rst b/README.rst index 1e6d6fa4..597d5ca4 100644 --- a/README.rst +++ b/README.rst @@ -1,22 +1,22 @@ -Python Client for Stackdriver Trace API +Python Client for Cloud Trace API ======================================= -|alpha| |pypi| |versions| +|ga| |pypi| |versions| -The `Stackdriver Trace API`_ sends application trace data to Stackdriver Trace +The `Cloud Trace API`_ sends application trace data to Cloud Trace for viewing. Trace data is collected for all App Engine applications by default. Trace data from other applications can be provided using this API. - `Client Library Documentation`_ - `Product Documentation`_ -.. |alpha| image:: https://img.shields.io/badge/support-alpha-orange.svg - :target: https://github.com/googleapis/google-cloud-python/blob/master/README.rst#alpha-support +.. |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-trace.svg :target: https://pypi.org/project/google-cloud-trace/ .. |versions| image:: https://img.shields.io/pypi/pyversions/google-cloud-trace.svg :target: https://pypi.org/project/google-cloud-trace/ -.. _Stackdriver Trace API: https://cloud.google.com/trace +.. _Cloud Trace API: https://cloud.google.com/trace .. _Client Library Documentation: https://googleapis.dev/python/cloudtrace/latest .. _Product Documentation: https://cloud.google.com/trace @@ -54,8 +54,8 @@ Supported Python Versions Python >= 3.6 -Deprecated Python Versions -^^^^^^^^^^^^^^^^^^^^^^^^^^ +Unsupported Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Python == 2.7. The last version of this library compatible with Python 2.7 is google-cloud-trace==0.24.0 @@ -92,7 +92,7 @@ to `Python Development Environment Setup Guide`_ for Google Cloud Platform. Next Steps ~~~~~~~~~~ -- Read the `Client Library Documentation`_ for Stackdriver Trace API +- Read the `Client Library Documentation`_ for Cloud Trace API to see other available methods on the client. - Read the `Product documentation`_ to learn more about the product and see How-to Guides. diff --git a/setup.py b/setup.py index dd928dd6..a1318a0c 100644 --- a/setup.py +++ b/setup.py @@ -21,13 +21,13 @@ # Package metadata. name = "google-cloud-trace" -description = "Stackdriver Trace API client library" +description = "Cloud Trace API client library" version = "1.0.0" # Should be one of: # '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.22.0, < 2.0.0dev", "proto-plus >= 1.4.0",