Skip to content

Commit

Permalink
Making release for most packages. (#4296)
Browse files Browse the repository at this point in the history
* Making release for most packages.

Every package except those that have already been released
(`google-cloud-core`, `google-api-core`, `google-cloud-bigquery`):

- `google-cloud`
- `google-cloud-bigtable`
- `google-cloud-datastore`
- `google-cloud-dns`
- `google-cloud-error-reporting`
- `google-cloud-firestore`
- `google-cloud-language`
- `google-cloud-logging`
- `google-cloud-monitoring`
- `google-cloud-resource-manager`
- `google-cloud-runtimeconfig`
- `google-cloud-spanner`
- `google-cloud-speech`
- `google-cloud-storage`
- `google-cloud-trace`
- `google-cloud-translate`
- `google-cloud-videointelligence`
- `google-cloud-vision`

* Adding changelog files for each package.
  • Loading branch information
dhermes authored Oct 31, 2017
1 parent 073dec0 commit 89c48d9
Show file tree
Hide file tree
Showing 41 changed files with 511 additions and 52 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Changelog

[PyPI History][1]

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

## 0.28.0

Placeholder
8 changes: 6 additions & 2 deletions api_core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
# Changelog

## v0.1.1
[PyPI History][1]

[1]: https://pypi.org/project/google-api-core/#history

## 0.1.1

- Upgrading `grpcio` dependency from `1.2.0, < 1.6dev` to `>= 1.7.0` (#4280)

## v0.1.0
## 0.1.0

Initial release

Expand Down
17 changes: 11 additions & 6 deletions bigquery/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
# Changelog

## v0.28.0
[PyPI History][1]

**v0.28.0 significantly changes the interface for this package.** For examples
of the differences between v0.28.0 and previous versions, see [Migrating to
the BigQuery Python client library
v0.28](https://cloud.google.com/bigquery/docs/python-client-migration).
[1]: https://pypi.org/project/google-cloud-bigquery/#history

## 0.28.0

**0.28.0 significantly changes the interface for this package.** For examples
of the differences between 0.28.0 and previous versions, see
[Migrating to the BigQuery Python client library 0.28][2].
These changes can be summarized as follows:

- Query and view operations default to the standard SQL dialect. (#4192)
Expand All @@ -15,6 +18,8 @@ These changes can be summarized as follows:
- Functions to create, get, update, delete datasets and tables moved to the
client class.

[2]: https://cloud.google.com/bigquery/docs/python-client-migration

### Fixes

- Populate timeout parameter correctly for queries (#4209)
Expand Down Expand Up @@ -110,7 +115,7 @@ These changes can be summarized as follows:
PyPI: https://pypi.org/project/google-cloud-bigquery/0.28.0/


## v0.27.0
## 0.27.0

- Remove client-side enum validation. (#3735)
- Add `Table.row_from_mapping` helper. (#3425)
Expand Down
21 changes: 21 additions & 0 deletions bigtable/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Changelog

[PyPI History][1]

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

## 0.28.0

### Documentation

- Fixed referenced types in `Table.row` docstring (#3934, h/t to
@MichaelTamm)
- Added link to "Python Development Environment Setup Guide" in
project README (#4187, h/t to @michaelawyu)

### Dependencies

- Upgrading to `google-cloud-core >= 0.28.0` and adding dependency
on `google-api-core` (#4221, #4280)

PyPI: https://pypi.org/project/google-cloud-bigtable/0.28.0/
5 changes: 3 additions & 2 deletions bigtable/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,13 @@

REQUIREMENTS = [
'google-cloud-core >= 0.28.0, < 0.29dev',
'google-gax>=0.15.7, <0.16dev',
'google-api-core >= 0.1.1, < 0.2.0dev',
'google-gax >= 0.15.7, < 0.16dev',
]

setup(
name='google-cloud-bigtable',
version='0.27.0',
version='0.28.0',
description='Python Client for Google Cloud Bigtable',
long_description=README,
namespace_packages=[
Expand Down
28 changes: 28 additions & 0 deletions core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Changelog

[PyPI History][1]

[1]: https://pypi.org/project/google-cloud-core/#history

## 0.28.0

### Notable Implementation Changes

- A large portion of the implementation has moved into
[`google-api-core`][2] (#4022, #4041, #4057, #4067,
#4069, #4079, #4081, #4166, #4221)

### Dependencies

- Explicit depending on `google-api-core` and upgrading to
`grpcio >= 1.7.0` (see #4096, #4280 and
https://github.com/grpc/grpc/issues/12455)

### Interface changes / additions

- Rename `google.cloud.obselete` module to
`obsolete` (#3913, h/t to @dimaqq)

PyPI: https://pypi.org/project/google-cloud-core/0.28.0/

[2]: https://pypi.org/project/google-api-core/
23 changes: 23 additions & 0 deletions datastore/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Changelog

[PyPI History][1]

[1]: https://pypi.org/project/google-cloud-datastore/#history

## 1.4.0

### Interface changes / additions

- Allowing `dict` (as an `Entity`) for property values. (#3927)

### Documentation

- Added link to "Python Development Environment Setup Guide" in
project README (#4187, h/t to @michaelawyu)

### Dependencies

- Upgrading to `google-cloud-core >= 0.28.0` and adding dependency
on `google-api-core` (#4221, #4280)

PyPI: https://pypi.org/project/google-cloud-datastore/1.4.0/
5 changes: 3 additions & 2 deletions datastore/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,14 @@

REQUIREMENTS = [
'google-cloud-core >= 0.28.0, < 0.29dev',
'google-gax>=0.15.7, <0.16dev',
'google-api-core >= 0.1.1, < 0.2.0dev',
'google-gax >= 0.15.7, < 0.16dev',
'gapic-google-cloud-datastore-v1 >= 0.15.0, < 0.16dev',
]

setup(
name='google-cloud-datastore',
version='1.3.0',
version='1.4.0',
description='Python Client for Google Cloud Datastore',
long_description=README,
namespace_packages=[
Expand Down
19 changes: 19 additions & 0 deletions dns/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Changelog

[PyPI History][1]

[1]: https://pypi.org/project/google-cloud-dns/#history

## 0.28.0

### Documentation

- Added link to "Python Development Environment Setup Guide" in
project README (#4187, h/t to @michaelawyu)

### Dependencies

- Upgrading to `google-cloud-core >= 0.28.0` and adding dependency
on `google-api-core` (#4221, #4280)

PyPI: https://pypi.org/project/google-cloud-dns/0.28.0/
3 changes: 2 additions & 1 deletion dns/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,12 @@

REQUIREMENTS = [
'google-cloud-core >= 0.28.0, < 0.29dev',
'google-api-core >= 0.1.1, < 0.2.0dev',
]

setup(
name='google-cloud-dns',
version='0.27.0',
version='0.28.0',
description='Python Client for Google Cloud DNS',
long_description=README,
namespace_packages=[
Expand Down
20 changes: 20 additions & 0 deletions error_reporting/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Changelog

[PyPI History][1]

[1]: https://pypi.org/project/google-cloud-error-reporting/#history

## 0.28.0

### Documentation

- Added link to "Python Development Environment Setup Guide" in
project README (#4187, h/t to @michaelawyu)

### Dependencies

- Upgrading to `google-cloud-core >= 0.28.0` and adding dependency
on `google-api-core` (#4221, #4280)
- Upgrading to `google-cloud-logging >= 1.4.0` (#4296)

PyPI: https://pypi.org/project/google-cloud-error-reporting/0.28.0/
5 changes: 3 additions & 2 deletions error_reporting/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,14 @@

REQUIREMENTS = [
'google-cloud-core >= 0.28.0, < 0.29dev',
'google-cloud-logging >= 1.3.0, < 1.4dev',
'google-api-core >= 0.1.1, < 0.2.0dev',
'google-cloud-logging >= 1.4.0, < 1.5dev',
'gapic-google-cloud-error-reporting-v1beta1 >= 0.15.0, < 0.16dev'
]

setup(
name='google-cloud-error-reporting',
version='0.27.0',
version='0.28.0',
description='Python Client for Stackdriver Error Reporting',
long_description=README,
namespace_packages=[
Expand Down
19 changes: 19 additions & 0 deletions firestore/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Changelog

[PyPI History][1]

[1]: https://pypi.org/project/google-cloud-firestore/#history

## 0.28.0

### Documentation

- Added link to "Python Development Environment Setup Guide" in
project README (#4187, h/t to @michaelawyu)

### Dependencies

- Upgrading to `google-cloud-core >= 0.28.0` and adding dependency
on `google-api-core` (#4221, #4280)

PyPI: https://pypi.org/project/google-cloud-firestore/0.28.0/
5 changes: 3 additions & 2 deletions firestore/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,13 @@

REQUIREMENTS = [
'google-cloud-core >= 0.28.0, < 0.29dev',
'google-gax>=0.15.7, <0.16dev',
'google-api-core >= 0.1.1, < 0.2.0dev',
'google-gax >= 0.15.7, < 0.16dev',
]

setuptools.setup(
name='google-cloud-firestore',
version='0.27.0',
version='0.28.0',
description='Python Client for Google Cloud Firestore',
long_description=README,
namespace_packages=[
Expand Down
21 changes: 21 additions & 0 deletions language/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Changelog

[PyPI History][1]

[1]: https://pypi.org/project/google-cloud-language/#history

## 0.30.0

### Documentation

- Added link to "Python Development Environment Setup Guide" in
project README (#4187, h/t to @michaelawyu)

### Dependencies

- Upgrading to `google-cloud-core >= 0.28.0` and adding dependency
on `google-api-core` (#4221, #4280)
- Deferring to `google-api-core` for `grpcio` and
`googleapis-common-protos`dependencies (#4096, #4098)

PyPI: https://pypi.org/project/google-cloud-language/0.30.0/
3 changes: 2 additions & 1 deletion language/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@

REQUIREMENTS = [
'google-cloud-core[grpc] >= 0.28.0, < 0.29dev',
'google-api-core >= 0.1.1, < 0.2.0dev',
'google-gax >= 0.15.14, < 0.16dev',
]
EXTRAS_REQUIRE = {
Expand All @@ -60,7 +61,7 @@

setup(
name='google-cloud-language',
version='0.29.0',
version='0.30.0',
description='Python Client for Google Cloud Natural Language',
long_description=README,
namespace_packages=[
Expand Down
25 changes: 25 additions & 0 deletions logging/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Changelog

[PyPI History][1]

[1]: https://pypi.org/project/google-cloud-logging/#history

## 1.4.0

### Implementation Changes

- Remove `deepcopy` of `Client._http` in background transport (#3954)

### Documentation

- Added link to "Python Development Environment Setup Guide" in
project README (#4187, h/t to @michaelawyu)

### Dependencies

- Upgrading to `google-cloud-core >= 0.28.0` and adding dependency
on `google-api-core` (#4221, #4280)
- Deferring to `google-api-core` for `grpcio` and
`googleapis-common-protos`dependencies (#4096, #4098)

PyPI: https://pypi.org/project/google-cloud-logging/1.4.0/
3 changes: 2 additions & 1 deletion logging/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,13 @@

REQUIREMENTS = [
'google-cloud-core[grpc] >= 0.28.0, < 0.29dev',
'google-api-core >= 0.1.1, < 0.2.0dev',
'gapic-google-cloud-logging-v2 >= 0.91.0, < 0.92dev',
]

setup(
name='google-cloud-logging',
version='1.3.0',
version='1.4.0',
description='Python Client for Stackdriver Logging',
long_description=README,
namespace_packages=[
Expand Down
19 changes: 19 additions & 0 deletions monitoring/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Changelog

[PyPI History][1]

[1]: https://pypi.org/project/google-cloud-monitoring/#history

## 0.28.0

### Documentation

- Added link to "Python Development Environment Setup Guide" in
project README (#4187, h/t to @michaelawyu)

### Dependencies

- Upgrading to `google-cloud-core >= 0.28.0` and adding dependency
on `google-api-core` (#4221, #4280)

PyPI: https://pypi.org/project/google-cloud-monitoring/0.28.0/
3 changes: 2 additions & 1 deletion monitoring/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,12 @@

REQUIREMENTS = [
'google-cloud-core >= 0.28.0, < 0.29dev',
'google-api-core >= 0.1.1, < 0.2.0dev',
]

setup(
name='google-cloud-monitoring',
version='0.27.0',
version='0.28.0',
description='Python Client for Stackdriver Monitoring',
long_description=README,
namespace_packages=[
Expand Down
Loading

0 comments on commit 89c48d9

Please sign in to comment.