From 47220763357f5a25cc535af5c4d2f4f092fb9abd Mon Sep 17 00:00:00 2001 From: Jakub Roztocil Date: Fri, 1 Jan 2016 19:27:07 -0300 Subject: [PATCH] v0.9.3 --- CHANGELOG.rst | 11 ++++++++--- httpie/__init__.py | 2 +- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 57309232..96e11258 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,12 +6,16 @@ This document records all notable changes to `HTTPie `_. This project adheres to `Semantic Versioning `_. -`1.0.0-dev`_ (Unreleased) +`0.9.3`_ (2016-01-01) ------------------------- * Changed the default color ``--style`` from ``solarized`` to ``monokai`` -* Added Bash auto complete support +* Added basic Bash autocomplete support (need to be installed manually) * Added request details to connection error messages +* Fixed ``'requests.packages.urllib3' has no attribute 'disable_warnings'`` + errors that occurred in some installations +* Fixed colors and formatting on Windows +* Fixed ``--auth`` prompt on Windows `0.9.2`_ (2015-02-24) @@ -252,4 +256,5 @@ This project adheres to `Semantic Versioning `_. .. _0.9.0: https://github.com/jkbrzt/httpie/compare/0.8.0...0.9.0 .. _0.9.1: https://github.com/jkbrzt/httpie/compare/0.9.0...0.9.1 .. _0.9.2: https://github.com/jkbrzt/httpie/compare/0.9.1...0.9.2 -.. _1.0.0-dev: https://github.com/jkbrzt/httpie/compare/0.9.2...master +.. _0.9.3: https://github.com/jkbrzt/httpie/compare/0.9.2...0.9.3 +.. _1.0.0-dev: https://github.com/jkbrzt/httpie/compare/0.9.3...master diff --git a/httpie/__init__.py b/httpie/__init__.py index 7ae07c9e..81e580ea 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__ = '1.0.0-dev' +__version__ = '0.9.3' __licence__ = 'BSD'