diff --git a/README.rst b/README.rst index bd0b0fc01fd2..05ac6234d7ba 100644 --- a/README.rst +++ b/README.rst @@ -40,6 +40,7 @@ The following client libraries have **GA** support: - `Google Cloud Datastore`_ (`Datastore README`_) - `Google Cloud KMS`_ (`KMS README`_) - `Google Cloud Natural Language`_ (`Natural Language README`_) +- `Google Cloud Scheduler`_ (`Scheduler README`_) - `Google Cloud Spanner`_ (`Spanner README`_) - `Google Cloud Storage`_ (`Storage README`_) - `Google Cloud Tasks`_ (`Tasks README`_) @@ -62,6 +63,8 @@ The following client libraries have **GA** support: .. _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 +.. _Google Cloud Scheduler: https://pypi.org/project/google-cloud-scheduler/ +.. _Scheduler README: https://github.com/googleapis/google-cloud-python/tree/master/scheduler .. _Stackdriver Logging: https://pypi.org/project/google-cloud-logging/ .. _Logging README: https://github.com/googleapis/google-cloud-python/tree/master/logging @@ -116,7 +119,6 @@ The following client libraries have **alpha** support: - `Google Cloud Memorystore for Redis`_ (`Redis README`_) - `Google Cloud Resource Manager`_ (`Resource Manager README`_) - `Google Cloud Runtime Configuration`_ (`Runtime Config README`_) -- `Google Cloud Scheduler`_ (`Scheduler README`_) - `Google Cloud Security Scanner`_ (`Security Scanner README`_ ) - `Google Cloud Tasks`_ (`Tasks README`_) - `Google Cloud Trace`_ (`Trace README`_) @@ -148,8 +150,6 @@ The following client libraries have **alpha** support: .. _Resource Manager README: https://github.com/googleapis/google-cloud-python/tree/master/resource_manager .. _Google Cloud Runtime Configuration: https://pypi.org/project/google-cloud-runtimeconfig/ .. _Runtime Config README: https://github.com/googleapis/google-cloud-python/tree/master/runtimeconfig -.. _Google Cloud Scheduler: https://pypi.org/project/google-cloud-scheduler/ -.. _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 Text-to-Speech: https://pypi.org/project/google-cloud-texttospeech/ diff --git a/scheduler/CHANGELOG.md b/scheduler/CHANGELOG.md index e643f80f16c4..e3645a6fa719 100644 --- a/scheduler/CHANGELOG.md +++ b/scheduler/CHANGELOG.md @@ -4,6 +4,13 @@ [1]: https://pypi.org/project/google-cloud-scheduler/#history +## 1.0.0 + +05-03-2019 10:04 PDT + +### Internal / Testing Changes +- Add smoke test for scheduler. ([#7854](https://github.com/googleapis/google-cloud-python/pull/7854)) + ## 0.3.0 04-15-2019 10:32 PDT diff --git a/scheduler/README.rst b/scheduler/README.rst index 45246f122c7f..cb5c6c802f0b 100644 --- a/scheduler/README.rst +++ b/scheduler/README.rst @@ -1,12 +1,19 @@ -Python Client for Cloud Scheduler API (`Alpha`_) +Python Client for Cloud Scheduler API ================================================ +|GA| |pypi| |versions| + `Cloud Scheduler API`_: Creates and manages jobs run on a regular recurring schedule. - `Client Library Documentation`_ - `Product Documentation`_ -.. _Alpha: 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-scheduler.svg + :target: https://pypi.org/project/google-cloud-scheduler/ +.. |versions| image:: https://img.shields.io/pypi/pyversions/google-cloud-scheduler.svg + :target: https://pypi.org/project/google-cloud-scheduler/ .. _Cloud Scheduler API: https://cloud.google.com/scheduler .. _Client Library Documentation: https://googleapis.github.io/google-cloud-python/latest/scheduler/index.html .. _Product Documentation: https://cloud.google.com/scheduler diff --git a/scheduler/setup.py b/scheduler/setup.py index 2e6cc75185e8..92a6c721380a 100644 --- a/scheduler/setup.py +++ b/scheduler/setup.py @@ -21,12 +21,12 @@ name = 'google-cloud-scheduler' description = 'Cloud Scheduler API API client library' -version = '0.3.0' +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.6.0, < 2.0.0dev', 'enum34; python_version < "3.4"',