From f1224da526593354f320982b10559f0c88e4ee4b Mon Sep 17 00:00:00 2001 From: Jakub Roztocil Date: Sat, 25 Jan 2014 15:11:38 +0100 Subject: [PATCH] v0.8.0 --- README.rst | 6 ++++-- httpie/__init__.py | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index 80379a2b..7f78fe64 100644 --- a/README.rst +++ b/README.rst @@ -1264,7 +1264,8 @@ Changelog *You can click a version name to see a diff with the previous one.* -* `0.8.0-dev`_ +* `0.9.0-dev`_ +* `0.8.0`_ (2014-01-25) * Added ``field=@file.txt`` and ``field:=@file.json`` for embedding the contents of text and JSON files into request data. * Added curl-style shorthand for localhost. @@ -1403,6 +1404,7 @@ Changelog .. _0.5.1: https://github.com/jkbr/httpie/compare/0.5.0...0.5.1 .. _0.6.0: https://github.com/jkbr/httpie/compare/0.5.1...0.6.0 .. _0.7.1: https://github.com/jkbr/httpie/compare/0.6.0...0.7.1 -.. _0.8.0-dev: https://github.com/jkbr/httpie/compare/0.7.1...master +.. _0.8.0: https://github.com/jkbr/httpie/compare/0.7.1...0.8.0 +.. _0.9.0-dev:: https://github.com/jkbr/httpie/compare/0.8.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 a1905a32..8f5831c2 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.8.0-dev' +__version__ = '0.8.0' __licence__ = 'BSD'