From 84b11eb50ea369b252bd2cb87523e285bda957cf Mon Sep 17 00:00:00 2001 From: Bu Sun Kim Date: Mon, 29 Apr 2019 16:37:39 -0700 Subject: [PATCH 1/5] Release 1.0.0 --- tasks/CHANGELOG.md | 10 ++++++++++ tasks/setup.py | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/tasks/CHANGELOG.md b/tasks/CHANGELOG.md index a68d2e4ed4ee..17e07cb9e017 100644 --- a/tasks/CHANGELOG.md +++ b/tasks/CHANGELOG.md @@ -4,6 +4,16 @@ [1]: https://pypi.org/project/google-cloud-tasks/#history +## 1.0.0 + +04-29-2019 16:35 PDT + +### Documentation +- Correct docs/index.rst. ([#7808](https://github.com/googleapis/google-cloud-python/pull/7808)) + +### Internal / Testing Changes +- Add smoke test. ([#7808](https://github.com/googleapis/google-cloud-python/pull/7808)) + ## 0.7.0 04-15-2019 10:21 PDT diff --git a/tasks/setup.py b/tasks/setup.py index 40785ecfcb60..d116e8862a20 100644 --- a/tasks/setup.py +++ b/tasks/setup.py @@ -21,7 +21,7 @@ name = 'google-cloud-tasks' description = 'Cloud Tasks API API client library' -version = '0.7.0' +version = '1.0.0' release_status = 'Development Status :: 3 - Alpha' dependencies = [ 'google-api-core[grpc] >= 1.6.0, < 2.0.0dev', From da2e93a0764bd1e1fb0d1faff2839528cbecbc29 Mon Sep 17 00:00:00 2001 From: Bu Sun Kim Date: Mon, 29 Apr 2019 16:40:46 -0700 Subject: [PATCH 2/5] Mark as GA in README, setup.py. --- README.rst | 3 +++ tasks/setup.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 23d3f149b8b8..67b9c6fcce7c 100644 --- a/README.rst +++ b/README.rst @@ -41,6 +41,7 @@ The following client libraries have **GA** support: - `Google Cloud Natural Language`_ (`Natural Language README`_) - `Google Cloud Spanner`_ (`Spanner README`_) - `Google Cloud Storage`_ (`Storage README`_) +- `Google Cloud Tasks`_ (`Tasks README`_) - `Google Cloud Translation`_ (`Translation README`_) - `Stackdriver Logging`_ (`Logging README`_) @@ -54,6 +55,8 @@ The following client libraries have **GA** support: .. _Spanner README: https://github.com/googleapis/google-cloud-python/tree/master/spanner .. _Google Cloud Storage: https://pypi.org/project/google-cloud-storage/ .. _Storage README: https://github.com/googleapis/google-cloud-python/tree/master/storage +.. _Google Cloud Tasks: https://pypi.org/project/google-cloud-tasks/ +.. _Tasks README: https://github.com/googleapis/google-cloud-python/tree/master/tasks .. _Google Cloud Translation: https://pypi.org/project/google-cloud-translate/ .. _Translation README: https://github.com/googleapis/google-cloud-python/tree/master/translate .. _Stackdriver Logging: https://pypi.org/project/google-cloud-logging/ diff --git a/tasks/setup.py b/tasks/setup.py index d116e8862a20..3640f46c8d4e 100644 --- a/tasks/setup.py +++ b/tasks/setup.py @@ -22,7 +22,7 @@ name = 'google-cloud-tasks' description = 'Cloud Tasks API API client library' version = '1.0.0' -release_status = 'Development Status :: 3 - Alpha' +release_status = 'Development Status :: 5 - Production/Stable' dependencies = [ 'google-api-core[grpc] >= 1.6.0, < 2.0.0dev', 'grpc-google-iam-v1 >= 0.11.4, < 0.12dev', From f9775ad1c62b5b8146cc437555a155752d1c9930 Mon Sep 17 00:00:00 2001 From: Bu Sun Kim Date: Mon, 29 Apr 2019 16:50:43 -0700 Subject: [PATCH 3/5] Remove Tasks from list of Alphas. --- README.rst | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.rst b/README.rst index 67b9c6fcce7c..dfb4f56cd6b1 100644 --- a/README.rst +++ b/README.rst @@ -152,8 +152,6 @@ The following client libraries have **alpha** support: .. _Scheduler README: https://github.com/googleapis/google-cloud-python/tree/master/scheduler .. _Google Cloud Security Scanner: https://pypi.org/project/google-cloud-websecurityscanner/ .. _Security Scanner README: https://github.com/googleapis/google-cloud-python/blob/master/websecurityscanner -.. _Google Cloud Tasks: https://pypi.org/project/google-cloud-tasks/ -.. _Tasks README: https://github.com/googleapis/google-cloud-python/tree/master/tasks .. _Google Cloud Text-to-Speech: https://pypi.org/project/google-cloud-texttospeech/ .. _Text-to-Speech README: https://github.com/googleapis/google-cloud-python/tree/master/texttospeech .. _Google Cloud Trace: https://pypi.org/project/google-cloud-trace/ From 349cd5c0f11b504578318fafe945d384dd7ae83a Mon Sep 17 00:00:00 2001 From: Bu Sun Kim Date: Wed, 1 May 2019 11:17:20 -0700 Subject: [PATCH 4/5] Change badge to GA. --- tasks/README.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tasks/README.rst b/tasks/README.rst index c2aa0ca1f9cb..668e2a2ee893 100644 --- a/tasks/README.rst +++ b/tasks/README.rst @@ -1,7 +1,7 @@ Python Client for Cloud Tasks API ================================= -|alpha| |pypi| |versions| +|GA| |pypi| |versions| `Cloud Tasks API`_: Manages the execution of large numbers of distributed requests. @@ -9,8 +9,8 @@ requests. - `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-availabili .. |pypi| image:: https://img.shields.io/pypi/v/google-cloud-tasks.svg :target: https://pypi.org/project/google-cloud-tasks/ .. |versions| image:: https://img.shields.io/pypi/pyversions/google-cloud-tasks.svg From bbf4611431eeed43f9b948fd68c5e31bad10f1a3 Mon Sep 17 00:00:00 2001 From: Bu Sun Kim <8822365+busunkim96@users.noreply.github.com> Date: Wed, 1 May 2019 11:17:50 -0700 Subject: [PATCH 5/5] Update README.rst --- tasks/README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/README.rst b/tasks/README.rst index 668e2a2ee893..4a1a2cb37331 100644 --- a/tasks/README.rst +++ b/tasks/README.rst @@ -10,7 +10,7 @@ requests. - `Product Documentation`_ .. |GA| image:: https://img.shields.io/badge/support-GA-gold.svg - :target: https://github.com/googleapis/google-cloud-python/blob/master/README.rst#general-availabili + :target: https://github.com/googleapis/google-cloud-python/blob/master/README.rst#general-availability .. |pypi| image:: https://img.shields.io/pypi/v/google-cloud-tasks.svg :target: https://pypi.org/project/google-cloud-tasks/ .. |versions| image:: https://img.shields.io/pypi/pyversions/google-cloud-tasks.svg