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

feat: release as GA #51

Merged
merged 1 commit into from Oct 13, 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
4 changes: 2 additions & 2 deletions .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",
Expand Down
18 changes: 9 additions & 9 deletions 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

Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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.
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -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",
Expand Down