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 @@ -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`_)
Expand All @@ -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/
Expand Down Expand Up @@ -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/
Expand Down
15 changes: 15 additions & 0 deletions bigtable/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions bigtable/README.rst
Original file line number Diff line number Diff line change
@@ -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,
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions bigtable/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Comment thread
crwilcox marked this conversation as resolved.
# '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",
Expand Down