From c7c32368811ada02a96b05480cbdb595639c44fa Mon Sep 17 00:00:00 2001 From: Justin Poehnelt Date: Thu, 29 Jul 2021 08:16:33 -0600 Subject: [PATCH 1/3] fix: only run publishCmd --- .releaserc | 1 - 1 file changed, 1 deletion(-) diff --git a/.releaserc b/.releaserc index 78e982ac..469c01f0 100644 --- a/.releaserc +++ b/.releaserc @@ -14,7 +14,6 @@ plugins: from: 'version=".*"' to: 'version="${nextRelease.version}"' - - "@semantic-release/exec" - - prepareCmd: "python3 setup.py sdist && python3 -m twine check dist/*" publishCmd: "python3 setup.py sdist && python3 -m twine upload dist/*" - - "@semantic-release/git" - assets: From 3502f8afdee1ba14b9acba7d8693225ca05bb80f Mon Sep 17 00:00:00 2001 From: Justin Poehnelt Date: Thu, 29 Jul 2021 08:22:46 -0600 Subject: [PATCH 2/3] chore: fix formatting --- .releaserc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.releaserc b/.releaserc index 469c01f0..5f53e6f5 100644 --- a/.releaserc +++ b/.releaserc @@ -13,8 +13,7 @@ plugins: - "./setup.py" from: 'version=".*"' to: 'version="${nextRelease.version}"' - - - "@semantic-release/exec" - publishCmd: "python3 setup.py sdist && python3 -m twine upload dist/*" + - [ "@semantic-release/exec", { publishCmd: "python3 setup.py sdist && python3 -m twine upload dist/*" }] - - "@semantic-release/git" - assets: - "./googlemaps/__init__.py" From 5045dce3eaf793ff20ab5b33c78402b1c501f329 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Thu, 29 Jul 2021 14:24:08 +0000 Subject: [PATCH 3/3] chore(release): 4.5.1 [skip ci] ## [4.5.1](https://github.com/googlemaps/google-maps-services-python/compare/v4.5.0...v4.5.1) (2021-07-29) ### Bug Fixes * only run publishCmd ([c7c3236](https://github.com/googlemaps/google-maps-services-python/commit/c7c32368811ada02a96b05480cbdb595639c44fa)) --- googlemaps/__init__.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/googlemaps/__init__.py b/googlemaps/__init__.py index 803bf5a9..593f4ba8 100644 --- a/googlemaps/__init__.py +++ b/googlemaps/__init__.py @@ -15,7 +15,7 @@ # the License. # -__version__ = "4.5.0" +__version__ = "4.5.1" from googlemaps.client import Client from googlemaps import exceptions diff --git a/setup.py b/setup.py index c2a605ba..369cb0b5 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ setup( name="googlemaps", - version="4.5.0", + version="4.5.1", description="Python client library for Google Maps Platform", long_description=readme + changelog, long_description_content_type="text/markdown",