Skip to content

Commit

Permalink
Release google-cloud-bigtable 0.3.0 (#2859)
Browse files Browse the repository at this point in the history
* Move library to Beta.
* Make use of Credentials#project_id
  * Use Credentials#project_id
    If a project_id is not provided, use the value on the Credentials object.
    This value was added in googleauth 0.7.0.
  * Loosen googleauth dependency
    Allow for new releases up to 0.10.
    The googleauth devs have committed to maintanining the current API
    and will not make backwards compatible changes before 0.10.
  • Loading branch information
blowmage authored and quartzmo committed Feb 1, 2019
1 parent 3a03b79 commit e95b86c
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ This client supports the following Google Cloud Platform services at a

* [Cloud Asset](#cloud-asset-beta) (Beta)
* [BigQuery Data Transfer](#bigquery-data-transfer-api-beta) (Beta)
* [Cloud Bigtable](#cloud-bigtable-beta) (Beta)
* [Stackdriver Debugger](#stackdriver-debugger-beta) (Beta)
* [Stackdriver Error Reporting](#stackdriver-error-reporting-beta) (Beta)
* [Cloud Firestore](#cloud-firestore-beta) (Beta)
Expand All @@ -37,7 +38,6 @@ This client supports the following Google Cloud Platform services at a
This client supports the following Google Cloud Platform services at an
[Alpha](#versioning) quality level:

* [Cloud Bigtable](#cloud-bigtable-alpha) (Alpha)
* [Container Engine](#container-engine-alpha) (Alpha)
* [Cloud Dataproc](#cloud-dataproc-alpha) (Alpha)
* [Data Loss Prevention](#data-loss-prevention-alpha) (Alpha)
Expand Down Expand Up @@ -183,7 +183,7 @@ data_transfer_service_client.list_data_sources(formatted_parent).each_page do |p
end
```

### Cloud Bigtable (Alpha)
### Cloud Bigtable (Beta)

- [google-cloud-bigtable README](google-cloud-bigtable/README.md)
- [google-cloud-bigtable API documentation](https://googleapis.github.io/google-cloud-ruby/docs/google-cloud-bigtable/latest)
Expand Down
12 changes: 12 additions & 0 deletions google-cloud-bigtable/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Release History

### 0.3.0 / 2019-02-01

* Move library to Beta.
* Make use of Credentials#project_id
* Use Credentials#project_id
If a project_id is not provided, use the value on the Credentials object.
This value was added in googleauth 0.7.0.
* Loosen googleauth dependency
Allow for new releases up to 0.10.
The googleauth devs have committed to maintanining the current API
and will not make backwards compatible changes before 0.10.

### 0.2.0 / 2018-11-15

* Update network configuration.
Expand Down
2 changes: 1 addition & 1 deletion google-cloud-bigtable/OVERVIEW.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Cloud Bigtable

Ruby Client for Cloud Bigtable API ([Alpha](https://github.com/googleapis/google-cloud-ruby#versioning))
Ruby Client for Cloud Bigtable API ([Beta](https://github.com/googleapis/google-cloud-ruby#versioning))

[Cloud Bigtable API][Product Documentation]:
API for reading and writing the contents of Bigtables associated with a
Expand Down
2 changes: 1 addition & 1 deletion google-cloud-bigtable/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Ruby Client for Cloud Bigtable API ([Alpha](https://github.com/googleapis/google-cloud-ruby#versioning))
# Ruby Client for Cloud Bigtable API ([Beta](https://github.com/googleapis/google-cloud-ruby#versioning))

[Cloud Bigtable API][Product Documentation]:
API for reading and writing the contents of Bigtables associated with a
Expand Down
2 changes: 1 addition & 1 deletion google-cloud-bigtable/lib/google/cloud/bigtable/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
module Google
module Cloud
module Bigtable
VERSION = "0.2.0".freeze
VERSION = "0.3.0".freeze
end
end
end

0 comments on commit e95b86c

Please sign in to comment.