From 8ae1bf4db74f1d75992a98b4f155c81076fbe605 Mon Sep 17 00:00:00 2001 From: "release-please[bot]" <55107282+release-please[bot]@users.noreply.github.com> Date: Wed, 28 Oct 2020 00:39:56 +0000 Subject: [PATCH 1/2] chore: release 0.4.2 --- CHANGELOG.md | 7 +++++++ setup.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 66ece86..45ad4a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ [1]: https://pypi.org/project/google-auth-oauthlib/#history +### [0.4.2](https://www.github.com/googleapis/google-auth-library-python-oauthlib/compare/v0.4.1...v0.4.2) (2020-10-28) + + +### Bug Fixes + +* don't open browser if port is occupied ([#92](https://www.github.com/googleapis/google-auth-library-python-oauthlib/issues/92)) ([0004057](https://www.github.com/googleapis/google-auth-library-python-oauthlib/commit/00040576ab096faec1f6eb54c886cb9c33be17ed)), closes [#75](https://www.github.com/googleapis/google-auth-library-python-oauthlib/issues/75) + ## 0.4.1 08-26-2019 13:25 PDT diff --git a/setup.py b/setup.py index e0a858f..aed3387 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ setup( name="google-auth-oauthlib", - version="0.4.1", + version = "0.4.2", author="Google Cloud Platform", author_email="jonwayne+google-auth@google.com", description="Google Authentication Library", From c45f1b119bc2432d494fba59135d2a17d3bea848 Mon Sep 17 00:00:00 2001 From: Bu Sun Kim Date: Wed, 28 Oct 2020 00:41:38 +0000 Subject: [PATCH 2/2] chore: move versiond declaration in setup.py --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index aed3387..8b8e707 100644 --- a/setup.py +++ b/setup.py @@ -27,9 +27,11 @@ long_description = fh.read() +version = "0.4.2" + setup( name="google-auth-oauthlib", - version = "0.4.2", + version=version, author="Google Cloud Platform", author_email="jonwayne+google-auth@google.com", description="Google Authentication Library",