From 20cc61eaf27d38c76afd7d9b0ba67926d9bf24c3 Mon Sep 17 00:00:00 2001 From: PhiBo Date: Wed, 14 Apr 2021 19:19:09 +0200 Subject: [PATCH 1/2] doc - Update changelog for version 0.5 --- CHANGELOG.rst | 12 ++++++++++++ 1 file changed, 12 insertions(+) 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) ~~~~~~~~~~~~~~~~ From c3b5cf53c5149c32411d1d0a3958d4835fb84726 Mon Sep 17 00:00:00 2001 From: PhiBo Date: Wed, 14 Apr 2021 19:19:30 +0200 Subject: [PATCH 2/2] src - Bump version from 0.4 to 0.5 --- overpy/__about__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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__