1
0
mirror of https://github.com/httpie/cli.git synced 2025-04-02 21:55:49 +02:00

1.0.0-dev

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

View File

@ -9,6 +9,7 @@ This project adheres to `Semantic Versioning <http://semver.org/>`_.
`1.0.0-dev`_ (Unreleased) `1.0.0-dev`_ (Unreleased)
------------------------- -------------------------
* Changed the default color ``--style`` from ``solarized`` to ``monokai``
`0.9.2`_ (2015-02-24) `0.9.2`_ (2015-02-24)

View File

@ -3,7 +3,7 @@ HTTPie - a CLI, cURL-like tool for humans.
""" """
__author__ = 'Jakub Roztocil' __author__ = 'Jakub Roztocil'
__version__ = '0.9.2' __version__ = '1.0.0-dev'
__licence__ = 'BSD' __licence__ = 'BSD'

View File

@ -14,7 +14,7 @@ from httpie.plugins import FormatterPlugin
# great and fruity seems to give the best result there. # great and fruity seems to give the best result there.
AVAILABLE_STYLES = set(pygments.styles.STYLE_MAP.keys()) AVAILABLE_STYLES = set(pygments.styles.STYLE_MAP.keys())
AVAILABLE_STYLES.add('solarized') AVAILABLE_STYLES.add('solarized')
DEFAULT_STYLE = 'solarized' DEFAULT_STYLE = 'monokai'
class ColorFormatter(FormatterPlugin): class ColorFormatter(FormatterPlugin):