diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 6edab8e..8fbea9c 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,9 @@ Changelog ========= +v0.10.1 (2018-12-10) +-------------------- + - Fix mishandling of ``fullplot``, ``tomatoes``, and ``timeout`` parameters in ``OMDBClient.get()`` that did not work correctly in conjuction with ``OMDBClient.set_default()``. - Fix mishandling of ``type`` parameter which was not being serialized to API request. diff --git a/src/omdb/__pkg__.py b/src/omdb/__pkg__.py index fd1ca0d..4e361ec 100644 --- a/src/omdb/__pkg__.py +++ b/src/omdb/__pkg__.py @@ -4,7 +4,7 @@ __package_name__ = 'omdb' __description__ = 'Python wrapper for OMDb API: http://www.omdbapi.com/' __url__ = 'https://github.com/dgilland/omdb.py' -__version__ = '0.10.0' +__version__ = '0.10.1' __author__ = 'Derrick Gilland' __email__ = 'dgilland@gmail.com' __license__ = 'MIT License'