Skip to content
This repository was archived by the owner on Sep 5, 2023. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: googleapis/python-functions
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.7.1
Choose a base ref
...
head repository: googleapis/python-functions
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.7.2
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Jun 8, 2022

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    aadf006 View commit details

Commits on Jun 9, 2022

  1. chore(v0): release 0.7.2 (#190)

    Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
    release-please[bot] authored Jun 9, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    93d6eb3 View commit details
Showing with 11 additions and 3 deletions.
  1. +7 −0 CHANGELOG.md
  2. +4 −3 setup.py
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.7.2](https://github.com/googleapis/python-functions/compare/v0.7.1...v0.7.2) (2022-06-08)


### Bug Fixes

* **deps:** require protobuf<4.0.0 on v0 branch ([#189](https://github.com/googleapis/python-functions/issues/189)) ([aadf006](https://github.com/googleapis/python-functions/commit/aadf0060b87cb4083164486641530f513e44b980))

### [0.7.1](https://github.com/googleapis/python-functions/compare/v0.7.0...v0.7.1) (2022-04-04)


7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -19,7 +19,7 @@
import os
import setuptools # type: ignore

version = "0.7.1"
version = "0.7.2"

package_root = os.path.abspath(os.path.dirname(__file__))

@@ -46,9 +46,10 @@
include_package_data=True,
install_requires=(
"google-api-core[grpc] >= 1.31.5, <3.0.0dev,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.0",
"proto-plus >= 1.10.0",
"packaging >= 14.3",
"proto-plus >= 1.10.0, <2.0.0dev",
"packaging >= 14.3, <22.0.0dev",
"grpc-google-iam-v1 >= 0.12.3, < 0.13dev",
"protobuf<4.0.0dev",
),
python_requires=">=3.6",
scripts=["scripts/fixup_functions_v1_keywords.py",],