From ef49fe0869b018d2e48b5302d90c47d8f610d2e7 Mon Sep 17 00:00:00 2001 From: Anthonios Partheniou Date: Tue, 7 Jun 2022 19:47:05 -0400 Subject: [PATCH 1/2] fix(deps): require protobuf<4.0.0 on v0 branch (#224) --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index b34c21c..827c594 100644 --- a/setup.py +++ b/setup.py @@ -44,6 +44,7 @@ "proto-plus >= 1.4.0", "grpc-google-iam-v1", "libcst >= 0.2.5", + "protobuf<4.0.0dev", ), python_requires=">=3.6", scripts=["scripts/fixup_keywords.py"], From 450b03219e76ed6f4555b15c9002349fbfeb6bba 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:47:02 -0400 Subject: [PATCH 2/2] chore(v0): release 0.3.2 (#225) 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 97f5823..874c9e6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.3.2](https://github.com/googleapis/python-bigquery-connection/compare/v0.3.1...v0.3.2) (2022-06-07) + + +### Bug Fixes + +* **deps:** require protobuf<4.0.0 on v0 branch ([#224](https://github.com/googleapis/python-bigquery-connection/issues/224)) ([ef49fe0](https://github.com/googleapis/python-bigquery-connection/commit/ef49fe0869b018d2e48b5302d90c47d8f610d2e7)) + ### [0.3.1](https://github.com/googleapis/python-bigquery-connection/compare/v0.3.0...v0.3.1) (2022-04-06) diff --git a/setup.py b/setup.py index 827c594..cb81d2a 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ import os import setuptools # type: ignore -version = "0.3.1" +version = "0.3.2" package_root = os.path.abspath(os.path.dirname(__file__))