mirror of
https://github.com/httpie/cli.git
synced 2024-11-22 07:43:20 +01:00
0.9.2
This commit is contained in:
parent
bada3b45f1
commit
a228399801
@ -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
|
||||
|
||||
|
@ -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'
|
||||
|
||||
|
||||
|
@ -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):
|
||||
|
Loading…
Reference in New Issue
Block a user