From d315b9f23f5dbbce27c965a2b692a8d1dcf03d60 Mon Sep 17 00:00:00 2001 From: Dan Lee <71398022+dandhlee@users.noreply.github.com> Date: Thu, 2 Jun 2022 20:40:26 -0400 Subject: [PATCH 1/4] docs: fix changelog header to consistent size (#108) --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c256ae5..60b45cb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -### [1.56.2](https://github.com/googleapis/python-api-common-protos/compare/v1.56.1...v1.56.2) (2022-05-26) +## [1.56.2](https://github.com/googleapis/python-api-common-protos/compare/v1.56.1...v1.56.2) (2022-05-26) ### Bug Fixes @@ -8,7 +8,7 @@ * **deps:** require grpcio >= 1.0.0, <2.0.0dev ([4a402ce](https://github.com/googleapis/python-api-common-protos/commit/4a402ce798c8364679e69eefdaadcf61fc289308)) * **deps:** require protobuf>= 3.15.0, <4.0.0dev ([#105](https://github.com/googleapis/python-api-common-protos/issues/105)) ([4a402ce](https://github.com/googleapis/python-api-common-protos/commit/4a402ce798c8364679e69eefdaadcf61fc289308)) -### [1.56.1](https://github.com/googleapis/python-api-common-protos/compare/v1.56.0...v1.56.1) (2022-05-05) +## [1.56.1](https://github.com/googleapis/python-api-common-protos/compare/v1.56.0...v1.56.1) (2022-05-05) ### Bug Fixes From bcdf84a300895e904f1e40bb4d8f632bdb45c9c2 Mon Sep 17 00:00:00 2001 From: Anthonios Partheniou Date: Mon, 6 Jun 2022 11:23:01 -0400 Subject: [PATCH 2/4] chore: test minimum dependencies in python 3.7 (#111) --- testing/constraints-3.7.txt | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/testing/constraints-3.7.txt b/testing/constraints-3.7.txt index e69de29..fcdc25e 100644 --- a/testing/constraints-3.7.txt +++ b/testing/constraints-3.7.txt @@ -0,0 +1,8 @@ +# This constraints file is used to check that lower bounds +# are correct in setup.py +# List *all* library dependencies and extras in this file. +# Pin the version to the lower bound. +# +# e.g., if setup.py has "foo >= 1.14.0, < 2.0.0dev", +# Then this file should have foo==1.14.0 +protobuf==3.15.0 From 67b02313bf47d86ac84917756ff026e331665637 Mon Sep 17 00:00:00 2001 From: Anthonios Partheniou Date: Tue, 21 Jun 2022 13:24:31 -0400 Subject: [PATCH 3/4] fix(deps): allow protobuf < 5.0.0 (#112) * fix(deps): allow protobuf < 5.0.0 * fix: resolve import error with protobuf 4.21.1 --- google/__init__.py | 24 ------------------------ setup.py | 2 +- 2 files changed, 1 insertion(+), 25 deletions(-) delete mode 100644 google/__init__.py diff --git a/google/__init__.py b/google/__init__.py deleted file mode 100644 index 9a1b64a..0000000 --- a/google/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -# -*- coding: utf-8 -*- -# -# Copyright 2020 Google LLC -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# https://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -try: - import pkg_resources - - pkg_resources.declare_namespace(__name__) -except ImportError: - import pkgutil - - __path__ = pkgutil.extend_path(__path__, __name__) diff --git a/setup.py b/setup.py index 66c4ce5..40d7322 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ description = "Common protobufs used in Google APIs" version = "1.56.2" release_status = "Development Status :: 5 - Production/Stable" -dependencies = ["protobuf >= 3.15.0, <4.0.0dev"] +dependencies = ["protobuf >= 3.15.0, <5.0.0dev"] extras_require = {"grpc": ["grpcio >= 1.0.0, <2.0.0dev"]} From 2fe749c82be5e810ab9b25c3bd060b1e64cf54ba Mon Sep 17 00:00:00 2001 From: "release-please[bot]" <55107282+release-please[bot]@users.noreply.github.com> Date: Tue, 21 Jun 2022 15:15:38 -0400 Subject: [PATCH 4/4] chore(main): release 1.56.3 (#110) Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com> --- CHANGELOG.md | 12 ++++++++++++ setup.py | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 60b45cb..bedb84f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [1.56.3](https://github.com/googleapis/python-api-common-protos/compare/v1.56.2...v1.56.3) (2022-06-21) + + +### Bug Fixes + +* **deps:** allow protobuf < 5.0.0 ([#112](https://github.com/googleapis/python-api-common-protos/issues/112)) ([67b0231](https://github.com/googleapis/python-api-common-protos/commit/67b02313bf47d86ac84917756ff026e331665637)) + + +### Documentation + +* fix changelog header to consistent size ([#108](https://github.com/googleapis/python-api-common-protos/issues/108)) ([d315b9f](https://github.com/googleapis/python-api-common-protos/commit/d315b9f23f5dbbce27c965a2b692a8d1dcf03d60)) + ## [1.56.2](https://github.com/googleapis/python-api-common-protos/compare/v1.56.1...v1.56.2) (2022-05-26) diff --git a/setup.py b/setup.py index 40d7322..7195ff1 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ name = "googleapis-common-protos" description = "Common protobufs used in Google APIs" -version = "1.56.2" +version = "1.56.3" release_status = "Development Status :: 5 - Production/Stable" dependencies = ["protobuf >= 3.15.0, <5.0.0dev"]