diff --git a/HISTORY.rst b/HISTORY.rst index c570e970..ebedcf3b 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,5 +1,11 @@ Release History ^^^^^^^^^^^^^^^ +3.1.0 (2021-04-10) ++++++++++++++++++++ + +* Add MethodNotAllowedException for 405 status codes (#141) +* Ensure CI commands use python3 (#142) + 3.0.0 (2021-03-16) +++++++++++++++++++ diff --git a/trakt/__init__.py b/trakt/__init__.py index f1bbae7a..f702d29d 100644 --- a/trakt/__init__.py +++ b/trakt/__init__.py @@ -5,6 +5,6 @@ except ImportError: pass -version_info = (3, 0, 0) +version_info = (3, 1, 0) __author__ = 'Jon Nappi' __version__ = '.'.join([str(i) for i in version_info])