summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJakub Roztocil <jakub@roztocil.name>2013-04-27 12:03:38 -0300
committerJakub Roztocil <jakub@roztocil.name>2013-04-27 12:03:38 -0300
commit71e7061014f42dd171f9e2b3952d22cc73be5594 (patch)
treeb39ccc76e518886df52a19e1a7db946345551576
parentbc756cb6a2a89540c4363ce4dd03a1c6e43d11b7 (diff)
v0.5.00.5.0
-rw-r--r--README.rst9
-rw-r--r--httpie/__init__.py2
-rwxr-xr-xtests/tests.py2
3 files changed, 8 insertions, 5 deletions
diff --git a/README.rst b/README.rst
index 00a9fd1c..a085287c 100644
--- a/README.rst
+++ b/README.rst
@@ -1162,8 +1162,10 @@ Changelog
*You can click a version name to see a diff with the previous one.*
-* `0.5.0-alpha`_
- * Added ``--download`` mode.
+* `0.6.0-dev`_
+* `0.5.0`_ (2013-04-27)
+ * Added a `download mode`_ via ``--download``.
+ * Bugfixes.
* `0.4.1`_ (2013-02-26)
* Fixed ``setup.py``.
* `0.4.0`_ (2013-02-22)
@@ -1269,6 +1271,7 @@ Changelog
.. _0.3.0: https://github.com/jkbr/httpie/compare/0.2.7...0.3.0
.. _0.4.0: https://github.com/jkbr/httpie/compare/0.3.0...0.4.0
.. _0.4.1: https://github.com/jkbr/httpie/compare/0.4.0...0.4.1
-.. _0.5.0-alpha: https://github.com/jkbr/httpie/compare/0.4.0...master
+.. _0.5.0: https://github.com/jkbr/httpie/compare/0.4.1...0.5.0
+.. _0.6.0-dev: https://github.com/jkbr/httpie/compare/0.5.0...master
.. _AUTHORS.rst: https://github.com/jkbr/httpie/blob/master/AUTHORS.rst
.. _LICENSE: https://github.com/jkbr/httpie/blob/master/LICENSE
diff --git a/httpie/__init__.py b/httpie/__init__.py
index c5d60899..72be80a6 100644
--- a/httpie/__init__.py
+++ b/httpie/__init__.py
@@ -3,7 +3,7 @@ HTTPie - a CLI, cURL-like tool for humans.
"""
__author__ = 'Jakub Roztocil'
-__version__ = '0.5.0-alpha'
+__version__ = '0.5.0'
__licence__ = 'BSD'
diff --git a/tests/tests.py b/tests/tests.py
index 49c81c56..79b85887 100755
--- a/tests/tests.py
+++ b/tests/tests.py
@@ -1541,7 +1541,7 @@ class Response(object):
# noinspection PyTypeChecker
class DownloadTest(BaseTestCase):
- # TODO: Download tests.
+ # TODO: more tests
def test_actual_download(self):
url = httpbin('/robots.txt')