Skip to content

Commit 71e7061

Browse files
committed
v0.5.0
1 parent bc756cb commit 71e7061

3 files changed

Lines changed: 8 additions & 5 deletions

File tree

README.rst

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1162,8 +1162,10 @@ Changelog
11621162
11631163
*You can click a version name to see a diff with the previous one.*
11641164
1165-
* `0.5.0-alpha`_
1166-
* Added ``--download`` mode.
1165+
* `0.6.0-dev`_
1166+
* `0.5.0`_ (2013-04-27)
1167+
* Added a `download mode`_ via ``--download``.
1168+
* Bugfixes.
11671169
* `0.4.1`_ (2013-02-26)
11681170
* Fixed ``setup.py``.
11691171
* `0.4.0`_ (2013-02-22)
@@ -1269,6 +1271,7 @@ Changelog
12691271
.. _0.3.0: https://github.com/jkbr/httpie/compare/0.2.7...0.3.0
12701272
.. _0.4.0: https://github.com/jkbr/httpie/compare/0.3.0...0.4.0
12711273
.. _0.4.1: https://github.com/jkbr/httpie/compare/0.4.0...0.4.1
1272-
.. _0.5.0-alpha: https://github.com/jkbr/httpie/compare/0.4.0...master
1274+
.. _0.5.0: https://github.com/jkbr/httpie/compare/0.4.1...0.5.0
1275+
.. _0.6.0-dev: https://github.com/jkbr/httpie/compare/0.5.0...master
12731276
.. _AUTHORS.rst: https://github.com/jkbr/httpie/blob/master/AUTHORS.rst
12741277
.. _LICENSE: https://github.com/jkbr/httpie/blob/master/LICENSE

httpie/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
"""
55
__author__ = 'Jakub Roztocil'
6-
__version__ = '0.5.0-alpha'
6+
__version__ = '0.5.0'
77
__licence__ = 'BSD'
88

99

tests/tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1541,7 +1541,7 @@ def __init__(self, url, headers={}, status_code=200):
15411541

15421542
# noinspection PyTypeChecker
15431543
class DownloadTest(BaseTestCase):
1544-
# TODO: Download tests.
1544+
# TODO: more tests
15451545

15461546
def test_actual_download(self):
15471547
url = httpbin('/robots.txt')

0 commit comments

Comments
 (0)