From a583f0eea2c52e910d67b1f120ddac5d7107124b Mon Sep 17 00:00:00 2001 From: Anthonios Partheniou Date: Thu, 9 Jun 2022 11:08:39 -0400 Subject: [PATCH 1/2] fix(deps): require protobuf<4.0.0 on v1 branch (#299) --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 3ec6e149..7564fc37 100644 --- a/setup.py +++ b/setup.py @@ -42,7 +42,8 @@ # 'Development Status :: 5 - Production/Stable' release_status = "Development Status :: 5 - Production/Stable" dependencies = [ - "google-api-core[grpc] >= 1.31.5, <3.0.0dev,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.0" + "google-api-core[grpc] >= 1.31.5, <3.0.0dev,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.0", + "protobuf<4.0.0dev", ] extras = {} From 186945b49ef0f2645fbe3d07de4ede36fb8c93f4 Mon Sep 17 00:00:00 2001 From: "release-please[bot]" <55107282+release-please[bot]@users.noreply.github.com> Date: Thu, 9 Jun 2022 12:13:22 -0400 Subject: [PATCH 2/2] chore(v1): release 1.0.3 (#300) Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com> --- CHANGELOG.md | 7 +++++++ setup.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6269f50e..2503670a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ [1]: https://pypi.org/project/google-cloud-texttospeech/#history +## [1.0.3](https://github.com/googleapis/python-texttospeech/compare/v1.0.2...v1.0.3) (2022-06-09) + + +### Bug Fixes + +* **deps:** require protobuf<4.0.0 on v1 branch ([#299](https://github.com/googleapis/python-texttospeech/issues/299)) ([a583f0e](https://github.com/googleapis/python-texttospeech/commit/a583f0eea2c52e910d67b1f120ddac5d7107124b)) + ### [1.0.2](https://github.com/googleapis/python-texttospeech/compare/v1.0.1...v1.0.2) (2022-03-31) diff --git a/setup.py b/setup.py index 7564fc37..88b18b03 100644 --- a/setup.py +++ b/setup.py @@ -35,7 +35,7 @@ name = "google-cloud-texttospeech" description = "Google Cloud Text-to-Speech API client library" -version = "1.0.2" +version = "1.0.3" # Should be one of: # 'Development Status :: 3 - Alpha' # 'Development Status :: 4 - Beta'