This commit is contained in:
Jakub Roztocil 2015-02-24 07:49:24 +01:00
parent bada3b45f1
commit a228399801
3 changed files with 2 additions and 3 deletions

View File

@ -15,7 +15,6 @@ This project adheres to `Semantic Versioning <http://semver.org/>`_.
---------------------
* 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

View File

@ -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'

View File

@ -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):