Skip to content
This repository has been archived by the owner on Jul 6, 2023. It is now read-only.

Commit

Permalink
chore(v0): release 0.2.1 (#77)
Browse files Browse the repository at this point in the history
* chore(v0): release 0.2.1

* chore: update constraints file

* ci: fix lint build

Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
Co-authored-by: Anthonios Partheniou <partheniou@google.com>
  • Loading branch information
release-please[bot] and parthea committed May 19, 2022
1 parent a035d39 commit a85b1bd
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

### [0.2.1](https://github.com/googleapis/python-iam-logging/compare/v0.2.0...v0.2.1) (2022-04-01)


### Bug Fixes

* **deps:** require google-api-core >= 1.31.5, >= 2.3.2 on v0 release ([#73](https://github.com/googleapis/python-iam-logging/issues/73)) ([a035d39](https://github.com/googleapis/python-iam-logging/commit/a035d395ea4d48727c2ae940a89a2c77d0b5b564))

## [0.2.0](https://www.github.com/googleapis/python-iam-logging/compare/v0.1.3...v0.2.0) (2021-10-13)


Expand Down
4 changes: 2 additions & 2 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def lint(session):
Returns a failure if the linters find linting errors or sufficiently
serious code quality issues.
"""
session.install("flake8", BLACK_VERSION)
session.install("flake8", BLACK_VERSION, "click<8.1")
session.run(
"black", "--check", *BLACK_PATHS,
)
Expand All @@ -65,7 +65,7 @@ def lint(session):
@nox.session(python=DEFAULT_PYTHON_VERSION)
def blacken(session):
"""Run black. Format code to uniform standard."""
session.install(BLACK_VERSION)
session.install(BLACK_VERSION, "click<8.1")
session.run(
"black", *BLACK_PATHS,
)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import os
import setuptools # type: ignore

version = "0.2.0"
version = "0.2.1"

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

Expand Down
3 changes: 1 addition & 2 deletions testing/constraints-3.6.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@
#
# e.g., if setup.py has "foo >= 1.14.0, < 2.0.0dev",
# Then this file should have foo==1.14.0
google-api-core==1.22.2
google-api-core==1.31.5
proto-plus==1.15.0
packaging==14.3
grpc-google-iam-v1==0.12.3
google-auth==1.24.0 # TODO: remove once google-auth>=1.25.0 is required transitively through google-api-core

0 comments on commit a85b1bd

Please sign in to comment.