Skip to content

Commit 80a2c82

Browse files
committed
0.9.2
1 parent bc742b6 commit 80a2c82

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

CHANGELOG.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ This project adheres to `Semantic Versioning <http://semver.org/>`_.
1515
---------------------
1616

1717
* Fixed compatibility with Requests 2.5.1
18-
* Changed the default color ``--style`` from ``solarized`` to ``monokai``
1918
* Changed the default JSON ``Content-Type`` to ``application/json`` as UTF-8
2019
is the default JSON encoding
2120

httpie/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
"""
55
__author__ = 'Jakub Roztocil'
6-
__version__ = '1.0.0-dev'
6+
__version__ = '0.9.2'
77
__licence__ = 'BSD'
88

99

httpie/output/formatters/colors.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# great and fruity seems to give the best result there.
1515
AVAILABLE_STYLES = set(pygments.styles.STYLE_MAP.keys())
1616
AVAILABLE_STYLES.add('solarized')
17-
DEFAULT_STYLE = 'monokai'
17+
DEFAULT_STYLE = 'solarized'
1818

1919

2020
class ColorFormatter(FormatterPlugin):

0 commit comments

Comments
 (0)