diff --git a/CHANGELOG.md b/CHANGELOG.md index ea74f8c1..35deb20a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Changelog All notable changes to this project will be documented in this file. +## [v4.2.0] +### Added +- Add support for Maps Static API (#344) + ## [v4.1.0] ### Added - Adding support for passing in `experience_id` to Client class (#338) @@ -45,7 +49,8 @@ All notable changes to this project will be documented in this file. **Note:** Start of changelog is 2019-08-27, [v3.0.2]. -[Unreleased]: https://github.com/googlemaps/google-maps-services-python/compare/4.1.0...HEAD +[Unreleased]: https://github.com/googlemaps/google-maps-services-python/compare/4.2.0...HEAD +[v4.2.0]: https://github.com/googlemaps/google-maps-services-python/compare/4.1.0...4.2.0 [v4.1.0]: https://github.com/googlemaps/google-maps-services-python/compare/4.0.0...4.1.0 [v4.0.0]: https://github.com/googlemaps/google-maps-services-python/compare/3.1.4...4.0.0 [v3.1.4]: https://github.com/googlemaps/google-maps-services-python/compare/3.1.3...3.1.4 diff --git a/googlemaps/__init__.py b/googlemaps/__init__.py index 8061142a..d81cb6e9 100644 --- a/googlemaps/__init__.py +++ b/googlemaps/__init__.py @@ -15,7 +15,7 @@ # the License. # -__version__ = "4.1.0" +__version__ = "4.2.0" from googlemaps.client import Client from googlemaps import exceptions diff --git a/setup.py b/setup.py index fb616993..b65cb9a8 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ setup( name="googlemaps", - version="4.1.0", + version="4.2.0", description="Python client library for Google Maps Platform", long_description=readme + changelog, long_description_content_type="text/markdown",