Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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`_)
Expand All @@ -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

Expand Down Expand Up @@ -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`_)
Expand Down Expand Up @@ -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/
Expand Down
7 changes: 7 additions & 0 deletions scheduler/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
11 changes: 9 additions & 2 deletions scheduler/README.rst
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions scheduler/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"',
Expand Down