From 1bd63da334c7615b57c7939c1703b78645b9a45f Mon Sep 17 00:00:00 2001 From: Justin Poehnelt Date: Thu, 19 Dec 2019 13:39:53 -0700 Subject: [PATCH] chore(release): 4.0.0 --- CHANGELOG.md | 2 +- googlemaps/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 40a8a3c7..2ace6be4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ # Changelog All notable changes to this project will be documented in this file. -## [Unreleased] +## [v4.0.0] ### Changed - Python 2 is no longer supported - Removed place fields: `alt_id`, `id`, `reference`, and `scope`. Read more about this at https://developers.google.com/maps/deprecations. diff --git a/googlemaps/__init__.py b/googlemaps/__init__.py index 1c94fae5..89660007 100644 --- a/googlemaps/__init__.py +++ b/googlemaps/__init__.py @@ -15,7 +15,7 @@ # the License. # -__version__ = "3.0.2" +__version__ = "4.0.0" from googlemaps.client import Client from googlemaps import exceptions diff --git a/setup.py b/setup.py index d5880608..3f17dd13 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ setup( name="googlemaps", - version="3.1.4", + version="4.0.0", description="Python client library for Google Maps Platform", long_description=readme + changelog, long_description_content_type="text/markdown",