diff --git a/README.rst b/README.rst index f0820498cc21..f75cfb33e23e 100644 --- a/README.rst +++ b/README.rst @@ -29,6 +29,7 @@ priority. The following client libraries have **GA** support: - `Google BigQuery`_ (`BigQuery README`_) +- `Google Cloud Bigtable`_ (`Bigtable README`_) - `Google Cloud Datastore`_ (`Datastore README`_) - `Google Cloud KMS`_ (`KMS README`_) - `Google Cloud Natural Language`_ (`Natural Language README`_) @@ -42,6 +43,8 @@ The following client libraries have **GA** support: .. _Google BigQuery: https://pypi.org/project/google-cloud-bigquery/ .. _BigQuery README: https://github.com/googleapis/google-cloud-python/tree/master/bigquery +.. _Google Cloud Bigtable: https://pypi.org/project/google-cloud-bigtable/ +.. _Bigtable README: https://github.com/googleapis/google-cloud-python/tree/master/bigtable .. _Google Cloud Datastore: https://pypi.org/project/google-cloud-datastore/ .. _Datastore README: https://github.com/googleapis/google-cloud-python/tree/master/datastore .. _Google Cloud KMS: https://pypi.org/project/google-cloud-kms/ @@ -72,14 +75,11 @@ against beta libraries are addressed with a higher priority. The following client libraries have **beta** support: -- `Google Cloud Bigtable`_ (`Bigtable README`_) - `Google Cloud Firestore`_ (`Firestore README`_) - `Google Cloud Pub/Sub`_ (`Pub/Sub README`_) - `Google Cloud Video Intelligence`_ (`Video Intelligence README`_) - `Google Cloud Vision`_ (`Vision README`_) -.. _Google Cloud Bigtable: https://pypi.org/project/google-cloud-bigtable/ -.. _Bigtable README: https://github.com/googleapis/google-cloud-python/tree/master/bigtable .. _Google Cloud Firestore: https://pypi.org/project/google-cloud-firestore/ .. _Firestore README: https://github.com/googleapis/google-cloud-python/tree/master/firestore .. _Google Cloud Pub/Sub: https://pypi.org/project/google-cloud-pubsub/ diff --git a/bigtable/CHANGELOG.md b/bigtable/CHANGELOG.md index f6e28c23cd4e..80eaff1617b3 100644 --- a/bigtable/CHANGELOG.md +++ b/bigtable/CHANGELOG.md @@ -4,6 +4,21 @@ [1]: https://pypi.org/project/google-cloud-bigtable/#history +## 1.0.0 + +08-28-2019 12:49 PDT + +### Implementation Changes +- Remove send/recv msg size limit (via synth). ([#8979](https://github.com/googleapis/google-cloud-python/pull/8979)) + +### Documentation +- Avoid creating table in 'list_tables' snippet; harden 'delete_instance' snippet. ([#8879](https://github.com/googleapis/google-cloud-python/pull/8879)) +- Add retry for DeadlineExceeded to 'test_bigtable_create_table' snippet. ([#8889](https://github.com/googleapis/google-cloud-python/pull/8889)) +- Remove compatability badges from READMEs. ([#9035](https://github.com/googleapis/google-cloud-python/pull/9035)) + +### Internal / Testing Changes +- Docs: Remove CI for gh-pages, use googleapis.dev for api_core refs. ([#9085](https://github.com/googleapis/google-cloud-python/pull/9085)) + ## 0.34.0 07-30-2019 10:05 PDT diff --git a/bigtable/README.rst b/bigtable/README.rst index 5660093c0fb6..5330d231688b 100644 --- a/bigtable/README.rst +++ b/bigtable/README.rst @@ -1,7 +1,7 @@ Python Client for Google Cloud Bigtable ======================================= -|beta| |pypi| |versions| +|GA| |pypi| |versions| `Google Cloud Bigtable`_ is Google's NoSQL Big Data database service. It's the same database that powers many core Google services, including Search, @@ -10,8 +10,8 @@ Analytics, Maps, and Gmail. - `Client Library Documentation`_ - `Product Documentation`_ -.. |beta| image:: https://img.shields.io/badge/support-beta-silver.svg - :target: https://github.com/googleapis/google-cloud-python/blob/master/README.rst#beta-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-bigtable.svg :target: https://pypi.org/project/google-cloud-bigtable/ .. |versions| image:: https://img.shields.io/pypi/pyversions/google-cloud-bigtable.svg diff --git a/bigtable/setup.py b/bigtable/setup.py index 29a1de12501f..26956b393471 100644 --- a/bigtable/setup.py +++ b/bigtable/setup.py @@ -22,12 +22,12 @@ name = 'google-cloud-bigtable' description = 'Google Cloud Bigtable API client library' -version = '0.34.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 :: 4 - Beta' +release_status = 'Development Status :: 5 - Production/Stable' dependencies = [ 'google-api-core[grpc] >= 1.14.0, < 2.0.0dev', "google-cloud-core >= 1.0.0, < 2.0dev",