From: yan11.meng Date: Sun, 21 Jun 2020 16:19:03 +0000 (+0800) Subject: Release 2.0.3 X-Git-Tag: submit/trunk/20200622.151812^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F87%2F236687%2F1;p=services%2Fpython-requests.git Release 2.0.3 Change-Id: I2843e787ed55408ed69aba88c0610999e07ceda0 --- diff --git a/HISTORY.rst b/HISTORY.rst index 5c1c95a..5c288f2 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -4,6 +4,14 @@ Release History --------------- +2.0.3 (2020-06-19) +++++++++++++++++++ + +- Add debian package +- Fixed: Fix pylint error for python-requests +- Remove require for python-pytest +- Use dh_python2 instead dh_pysupport for xUbuntu_19.10 + 2.0.2 (2015-11-11) ++++++++++++++++++ diff --git a/packaging/python-requests.spec b/packaging/python-requests.spec index 98d56a1..e16882f 100644 --- a/packaging/python-requests.spec +++ b/packaging/python-requests.spec @@ -17,7 +17,7 @@ Name: python-requests -Version: 2.0.2 +Version: 2.0.3 Release: 0 Url: http://python-requests.org Summary: Awesome Python HTTP Library That's Actually Usable diff --git a/requests/__init__.py b/requests/__init__.py index 9f63a82..95687b2 100644 --- a/requests/__init__.py +++ b/requests/__init__.py @@ -42,8 +42,8 @@ is at . """ __title__ = 'requests' -__version__ = '2.0.2' -__build__ = 0x020002 +__version__ = '2.0.3' +__build__ = 0x020003 __author__ = 'Kenneth Reitz' __license__ = 'Apache 2.0' __copyright__ = 'Copyright 2013 Kenneth Reitz'