From 80a2c8266c260462e6a4974cdb4e5f598394e76d Mon Sep 17 00:00:00 2001 From: Jakub Roztocil Date: Tue, 24 Feb 2015 07:49:24 +0100 Subject: [PATCH] 0.9.2 --- CHANGELOG.rst | 1 - httpie/__init__.py | 2 +- httpie/output/formatters/colors.py | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 958fb282..e195107f 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -15,7 +15,6 @@ This project adheres to `Semantic Versioning `_. --------------------- * Fixed compatibility with Requests 2.5.1 -* Changed the default color ``--style`` from ``solarized`` to ``monokai`` * Changed the default JSON ``Content-Type`` to ``application/json`` as UTF-8 is the default JSON encoding diff --git a/httpie/__init__.py b/httpie/__init__.py index 7ae07c9e..80709335 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.2' __licence__ = 'BSD' diff --git a/httpie/output/formatters/colors.py b/httpie/output/formatters/colors.py index 65a57d7b..45cd0d95 100644 --- a/httpie/output/formatters/colors.py +++ b/httpie/output/formatters/colors.py @@ -14,7 +14,7 @@ from httpie.plugins import FormatterPlugin # great and fruity seems to give the best result there. AVAILABLE_STYLES = set(pygments.styles.STYLE_MAP.keys()) AVAILABLE_STYLES.add('solarized') -DEFAULT_STYLE = 'monokai' +DEFAULT_STYLE = 'solarized' class ColorFormatter(FormatterPlugin):