Skip to content

Commit d61a914

Browse files
authored
Release bigtable 1.0.0 (#9140)
* Release bigtable 1.0.0
1 parent 1fb3bc9 commit d61a914

4 files changed

Lines changed: 23 additions & 8 deletions

File tree

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ priority.
2929
The following client libraries have **GA** support:
3030

3131
- `Google BigQuery`_ (`BigQuery README`_)
32+
- `Google Cloud Bigtable`_ (`Bigtable README`_)
3233
- `Google Cloud Datastore`_ (`Datastore README`_)
3334
- `Google Cloud KMS`_ (`KMS README`_)
3435
- `Google Cloud Natural Language`_ (`Natural Language README`_)
@@ -42,6 +43,8 @@ The following client libraries have **GA** support:
4243

4344
.. _Google BigQuery: https://pypi.org/project/google-cloud-bigquery/
4445
.. _BigQuery README: https://github.com/googleapis/google-cloud-python/tree/master/bigquery
46+
.. _Google Cloud Bigtable: https://pypi.org/project/google-cloud-bigtable/
47+
.. _Bigtable README: https://github.com/googleapis/google-cloud-python/tree/master/bigtable
4548
.. _Google Cloud Datastore: https://pypi.org/project/google-cloud-datastore/
4649
.. _Datastore README: https://github.com/googleapis/google-cloud-python/tree/master/datastore
4750
.. _Google Cloud KMS: https://pypi.org/project/google-cloud-kms/
@@ -72,14 +75,11 @@ against beta libraries are addressed with a higher priority.
7275

7376
The following client libraries have **beta** support:
7477

75-
- `Google Cloud Bigtable`_ (`Bigtable README`_)
7678
- `Google Cloud Firestore`_ (`Firestore README`_)
7779
- `Google Cloud Pub/Sub`_ (`Pub/Sub README`_)
7880
- `Google Cloud Video Intelligence`_ (`Video Intelligence README`_)
7981
- `Google Cloud Vision`_ (`Vision README`_)
8082

81-
.. _Google Cloud Bigtable: https://pypi.org/project/google-cloud-bigtable/
82-
.. _Bigtable README: https://github.com/googleapis/google-cloud-python/tree/master/bigtable
8383
.. _Google Cloud Firestore: https://pypi.org/project/google-cloud-firestore/
8484
.. _Firestore README: https://github.com/googleapis/google-cloud-python/tree/master/firestore
8585
.. _Google Cloud Pub/Sub: https://pypi.org/project/google-cloud-pubsub/

bigtable/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,21 @@
44

55
[1]: https://pypi.org/project/google-cloud-bigtable/#history
66

7+
## 1.0.0
8+
9+
08-28-2019 12:49 PDT
10+
11+
### Implementation Changes
12+
- Remove send/recv msg size limit (via synth). ([#8979](https://github.com/googleapis/google-cloud-python/pull/8979))
13+
14+
### Documentation
15+
- Avoid creating table in 'list_tables' snippet; harden 'delete_instance' snippet. ([#8879](https://github.com/googleapis/google-cloud-python/pull/8879))
16+
- Add retry for DeadlineExceeded to 'test_bigtable_create_table' snippet. ([#8889](https://github.com/googleapis/google-cloud-python/pull/8889))
17+
- Remove compatability badges from READMEs. ([#9035](https://github.com/googleapis/google-cloud-python/pull/9035))
18+
19+
### Internal / Testing Changes
20+
- Docs: Remove CI for gh-pages, use googleapis.dev for api_core refs. ([#9085](https://github.com/googleapis/google-cloud-python/pull/9085))
21+
722
## 0.34.0
823

924
07-30-2019 10:05 PDT

bigtable/README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Python Client for Google Cloud Bigtable
22
=======================================
33

4-
|beta| |pypi| |versions|
4+
|GA| |pypi| |versions|
55

66
`Google Cloud Bigtable`_ is Google's NoSQL Big Data database service. It's the
77
same database that powers many core Google services, including Search,
@@ -10,8 +10,8 @@ Analytics, Maps, and Gmail.
1010
- `Client Library Documentation`_
1111
- `Product Documentation`_
1212

13-
.. |beta| image:: https://img.shields.io/badge/support-beta-silver.svg
14-
:target: https://github.com/googleapis/google-cloud-python/blob/master/README.rst#beta-support
13+
.. |GA| image:: https://img.shields.io/badge/support-GA-gold.svg
14+
:target: https://github.com/googleapis/google-cloud-python/blob/master/README.rst#general-availability
1515
.. |pypi| image:: https://img.shields.io/pypi/v/google-cloud-bigtable.svg
1616
:target: https://pypi.org/project/google-cloud-bigtable/
1717
.. |versions| image:: https://img.shields.io/pypi/pyversions/google-cloud-bigtable.svg

bigtable/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@
2222

2323
name = 'google-cloud-bigtable'
2424
description = 'Google Cloud Bigtable API client library'
25-
version = '0.34.0'
25+
version = '1.0.0'
2626
# Should be one of:
2727
# 'Development Status :: 3 - Alpha'
2828
# 'Development Status :: 4 - Beta'
2929
# 'Development Status :: 5 - Production/Stable'
30-
release_status = 'Development Status :: 4 - Beta'
30+
release_status = 'Development Status :: 5 - Production/Stable'
3131
dependencies = [
3232
'google-api-core[grpc] >= 1.14.0, < 2.0.0dev',
3333
"google-cloud-core >= 1.0.0, < 2.0dev",

0 commit comments

Comments
 (0)