Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
IlyaFaer committed Aug 16, 2019
2 parents 3a0a812 + 5c08cfd commit ef24044
Show file tree
Hide file tree
Showing 20 changed files with 137 additions and 28 deletions.
7 changes: 7 additions & 0 deletions asset/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@

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

## 0.4.1

08-12-2019 13:44 PDT

### Documentation
- Fix links to googleapis.dev ([#8998](https://github.com/googleapis/google-cloud-python/pull/8998))

## 0.4.0

08-01-2019 14:24 PDT
Expand Down
2 changes: 1 addition & 1 deletion asset/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

name = "google-cloud-asset"
description = "Cloud Asset API API client library"
version = "0.4.0"
version = "0.4.1"
# Should be one of:
# 'Development Status :: 3 - Alpha'
# 'Development Status :: 4 - Beta'
Expand Down
6 changes: 3 additions & 3 deletions automl/synth.metadata
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"updateTime": "2019-08-10T12:12:23.946735Z",
"updateTime": "2019-08-15T16:50:20.093543Z",
"sources": [
{
"generator": {
Expand All @@ -12,8 +12,8 @@
"git": {
"name": "googleapis",
"remote": "https://github.com/googleapis/googleapis.git",
"sha": "2a2c5518f64010c4e458afc818e57ed24fecdf6d",
"internalRef": "262646243"
"sha": "3406d1e899f1f41123b3fa9210ad4bef25c9a720",
"internalRef": "263234709"
}
},
{
Expand Down
38 changes: 22 additions & 16 deletions automl/synth.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,27 +33,33 @@
s.move(library / f"tests/unit/gapic/{version}")
s.move(library / f"docs/gapic/{version}")

s.replace(
f"google/cloud/automl_{version}/__init__.py",
f"from google.cloud.automl_v1beta1.gapic import prediction_service_client",
f"from google.cloud.automl_v1beta1.gapic import prediction_service_client"
f"from google.cloud.automl_v1beta1.tables import tables_client"
f"\n\n"
f"class TablesClient(tables_client.TablesClient):"
f" __doc__ = tables_client.TablesClient.__doc__"
)

s.replace(
f"google/cloud/automl_{version}/__init__.py",
f"__all__ = (\"enums\", \"types\", \"AutoMlClient\", \"PredictionServiceClient\")",
f"__all__ = (\"enums\", \"types\", \"AutoMlClient\", \"PredictionServiceClient\", \"TablesClient\")"
)

s.move(library / f"docs/conf.py")

# Use the highest version library to generate import alias.
s.move(library / "google/cloud/automl.py")

# Add tables client to v1beta1
s.replace(
f"google/cloud/automl_v1beta1/__init__.py",
f"from google.cloud.automl_v1beta1.gapic import prediction_service_client",
f"from google.cloud.automl_v1beta1.gapic import prediction_service_client\n"
f"from google.cloud.automl_v1beta1.tables import tables_client"
f"\n\n"
f"class TablesClient(tables_client.TablesClient):"
f" __doc__ = tables_client.TablesClient.__doc__"
)

s.replace(
f"google/cloud/automl_v1beta1/__init__.py",
f"""__all__ = \(
'enums',
'types',
'AutoMlClient',
'PredictionServiceClient',
\)""",
f"__all__ = (\"enums\", \"types\", \"AutoMlClient\", \"PredictionServiceClient\", \"TablesClient\")"
)

# Fixup issues in generated code
s.replace(
"**/gapic/*_client.py",
Expand Down
15 changes: 15 additions & 0 deletions containeranalysis/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## 0.3.0

08-12-2019 13:53 PDT

### Implementation Changes
- Remove send/recv msg size limit (via synth). ([#8948](https://github.com/googleapis/google-cloud-python/pull/8948))

### Dependencies
- Bump minimum version for google-api-core to 1.14.0. ([#8709](https://github.com/googleapis/google-cloud-python/pull/8709))

### Documentation
- Normalize docs. ([#8994](https://github.com/googleapis/google-cloud-python/pull/8994))
- Link to googleapis.dev documentation in READMEs. ([#8705](https://github.com/googleapis/google-cloud-python/pull/8705))
- Update intersphinx mapping for requests. ([#8805](https://github.com/googleapis/google-cloud-python/pull/8805))

## 0.2.0

07-12-2019 16:56 PDT
Expand Down
2 changes: 1 addition & 1 deletion containeranalysis/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

name = "google-cloud-containeranalysis"
description = "Container Analysis API API client library"
version = "0.2.0"
version = "0.3.0"
release_status = "Development Status :: 3 - Alpha"
dependencies = [
"google-api-core[grpc] >= 1.14.0, < 2.0.0dev",
Expand Down
12 changes: 12 additions & 0 deletions kms/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,18 @@

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

## 1.2.1

08-12-2019 13:44 PDT


### Implementation Changes
- Remove send/recv msg size limit (via synth). ([#8959](https://github.com/googleapis/google-cloud-python/pull/8959))

### Documentation
- Fix links to googleapis.dev ([#8998](https://github.com/googleapis/google-cloud-python/pull/8998))
- Update intersphinx mapping for requests. ([#8805](https://github.com/googleapis/google-cloud-python/pull/8805))

## 1.2.0

07-24-2019 16:42 PDT
Expand Down
2 changes: 1 addition & 1 deletion kms/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

name = "google-cloud-kms"
description = "Cloud Key Management Service (KMS) API API client library"
version = "1.2.0"
version = "1.2.1"
release_status = "Development Status :: 5 - Production/Stable"
dependencies = [
"google-api-core[grpc] >= 1.14.0, < 2.0.0dev",
Expand Down
11 changes: 11 additions & 0 deletions monitoring/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@

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

## 0.33.0

08-12-2019 13:54 PDT

### New Features
- Add notification channel verification; remove send/recv msg size limit (via synth). ([#8980](https://github.com/googleapis/google-cloud-python/pull/8980))

### Documentation
- Normalize docs. ([#8994](https://github.com/googleapis/google-cloud-python/pull/8994))
- Update intersphinx mapping for requests. ([#8805](https://github.com/googleapis/google-cloud-python/pull/8805))

## 0.32.0

07-24-2019 16:52 PDT
Expand Down
2 changes: 1 addition & 1 deletion monitoring/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

name = 'google-cloud-monitoring'
description = 'Stackdriver Monitoring API client library'
version = '0.32.0'
version = '0.33.0'
# Should be one of:
# 'Development Status :: 3 - Alpha'
# 'Development Status :: 4 - Beta'
Expand Down
11 changes: 11 additions & 0 deletions scheduler/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@

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

## 1.2.1

08-12-2019 13:53 PDT

### Implementation Changes
- Remove send/recv msg size limit (via synth). ([#8966](https://github.com/googleapis/google-cloud-python/pull/8966))

### Documentation
- Fix links to googleapis.dev ([#8998](https://github.com/googleapis/google-cloud-python/pull/8998))
- Update intersphinx mapping for requests. ([#8805](https://github.com/googleapis/google-cloud-python/pull/8805))

## 1.2.0

07-24-2019 17:27 PDT
Expand Down
2 changes: 1 addition & 1 deletion scheduler/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

name = "google-cloud-scheduler"
description = "Cloud Scheduler API API client library"
version = "1.2.0"
version = "1.2.1"
# Should be one of:
# 'Development Status :: 3 - Alpha'
# 'Development Status :: 4 - Beta'
Expand Down
11 changes: 11 additions & 0 deletions tasks/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@

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

## 1.2.1

08-12-2019 13:50 PDT

### Implementation Changes
- Remove send/recv msg size limit (via synth). ([#8971](https://github.com/googleapis/google-cloud-python/pull/8971))

### Documentation
- Fix links to googleapis.dev ([#8998](https://github.com/googleapis/google-cloud-python/pull/8998))
- Update intersphinx mapping for requests. ([#8805](https://github.com/googleapis/google-cloud-python/pull/8805))

## 1.2.0

07-24-2019 17:41 PDT
Expand Down
2 changes: 1 addition & 1 deletion tasks/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

name = "google-cloud-tasks"
description = "Cloud Tasks API API client library"
version = "1.2.0"
version = "1.2.1"
release_status = "Development Status :: 5 - Production/Stable"
dependencies = [
"google-api-core[grpc] >= 1.14.0, < 2.0.0dev",
Expand Down
12 changes: 12 additions & 0 deletions trace/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,18 @@

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

## 0.22.1

08-12-2019 13:51 PDT

### Implementation Changes
- Remove send/recv msg size limit (via synth). ([#8973](https://github.com/googleapis/google-cloud-python/pull/8973))

### Documentation
- Fix links to googleapis.dev ([#8998](https://github.com/googleapis/google-cloud-python/pull/8998))
- Fix pip / usage examples in README.rst. ([#8833](https://github.com/googleapis/google-cloud-python/pull/8833))
- Update intersphinx mapping for requests. ([#8805](https://github.com/googleapis/google-cloud-python/pull/8805))

## 0.22.0

07-24-2019 17:50 PDT
Expand Down
2 changes: 1 addition & 1 deletion trace/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

name = 'google-cloud-trace'
description = 'Stackdriver Trace API client library'
version = '0.22.0'
version = '0.22.1'
# Should be one of:
# 'Development Status :: 3 - Alpha'
# 'Development Status :: 4 - Beta'
Expand Down
11 changes: 11 additions & 0 deletions videointelligence/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@

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

## 1.11.0

08-12-2019 14:00 PDT

### New Features
- Add segment / shot presence label annotations fields (via synth). ([#8987](https://github.com/googleapis/google-cloud-python/pull/8987))
- Add V1 video segment / feature fields; remove send/recv msg size limit (via synth). ([#8975](https://github.com/googleapis/google-cloud-python/pull/8975))

### Documentation
- Update intersphinx mapping for requests. ([#8805](https://github.com/googleapis/google-cloud-python/pull/8805))

## 1.10.0

07-24-2019 17:52 PDT
Expand Down
2 changes: 1 addition & 1 deletion videointelligence/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

name = "google-cloud-videointelligence"
description = "Google Cloud Video Intelligence API client library"
version = "1.10.0"
version = "1.11.0"
# Should be one of:
# 'Development Status :: 3 - Alpha'
# 'Development Status :: 4 - Beta'
Expand Down
13 changes: 13 additions & 0 deletions vision/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,19 @@

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

## 0.39.0

08-12-2019 13:57 PDT

### Implementation Changes
- Remove send/recv msg size limit (via synth). ([#8976](https://github.com/googleapis/google-cloud-python/pull/8976))

### New Features
- Add 'parent' argument to annotation requests; add 'ProductSearchClient.purge_products' method; add 'object_annotations' field to product search results (via synth). ([#8988](https://github.com/googleapis/google-cloud-python/pull/8988))

### Documentation
- Update intersphinx mapping for requests. ([#8805](https://github.com/googleapis/google-cloud-python/pull/8805))

## 0.38.1

07-24-2019 17:54 PDT
Expand Down
2 changes: 1 addition & 1 deletion vision/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

name = "google-cloud-vision"
description = "Cloud Vision API API client library"
version = "0.38.1"
version = "0.39.0"
release_status = "Development Status :: 4 - Beta"
dependencies = [
"google-api-core[grpc] >= 1.14.0, < 2.0.0dev",
Expand Down

0 comments on commit ef24044

Please sign in to comment.