diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 401c409..7540b9f 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,6 +6,18 @@ Changelog .. note:: This version is not yet released and is under development. +0.5 (2021-04-14) +~~~~~~~~~~~~~~~~ + +* Add support to retry a failed request +* Improve test handlers to fix issues with Py2.7 and PyPy +* Improve tests +* Add Support for Python 3.6 +* Add function to handle remark tags and elements +* Add support to parse data from ET.Element +* Move attribute modifiers from class to package +* Change to use Exception instead of BaseException + 0.4 (2016-12-08) ~~~~~~~~~~~~~~~~ diff --git a/overpy/__about__.py b/overpy/__about__.py index 33c6c49..e38df3d 100644 --- a/overpy/__about__.py +++ b/overpy/__about__.py @@ -13,10 +13,10 @@ __summary__ = "Python Wrapper to access the OpenStreepMap Overpass API" __uri__ = "https://github.com/DinoTools/python-overpy" -__version__ = "0.4" +__version__ = "0.5" __author__ = "PhiBo (DinoTools)" __email__ = "" __license__ = "MIT" -__copyright__ = "Copyright 2014-2016 %s" % __author__ +__copyright__ = "Copyright 2014-2021 %s" % __author__