Skip to content

Commit

Permalink
v2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jkbrzt committed Jun 18, 2020
1 parent 3ee5b49 commit 5945845
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This document records all notable changes to `HTTPie <https://httpie.org>`_.
This project adheres to `Semantic Versioning <https://semver.org/>`_.


`2.2.0-dev`_ (unreleased)
`2.2.0`_ (2020-06-18)
-------------------------

* Added support for custom content types for uploaded files (`#668`_).
Expand Down Expand Up @@ -436,7 +436,7 @@ This project adheres to `Semantic Versioning <https://semver.org/>`_.
.. _1.0.3: https://github.com/jakubroztocil/httpie/compare/1.0.2...1.0.3
.. _2.0.0: https://github.com/jakubroztocil/httpie/compare/1.0.3...2.0.0
.. _2.1.0: https://github.com/jakubroztocil/httpie/compare/2.0.0...2.1.0
.. _2.2.0-dev: https://github.com/jakubroztocil/httpie/compare/2.1.0...master
.. _2.2.0: https://github.com/jakubroztocil/httpie/compare/2.1.0...2.2.0


.. _#128: https://github.com/jakubroztocil/httpie/issues/128
Expand Down
6 changes: 6 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1404,6 +1404,8 @@ One of these options can be used to control output processing:
You can control the applied formatting via the ``--format-options`` option.
The following options are available:
For example, this is how you would disable the default header and JSON key
sorting, and specify a custom JSON indent size:
Expand All @@ -1415,6 +1417,10 @@ sorting, and specify a custom JSON indent size:
This is something you will typically store as one of the default options in your
`config`_ file. See ``http --help`` for all the available formatting options.
There are also two shortcuts that allow you to quickly disable and re-enable
sorting-related format options (currently it means JSON keys and headers):
``--unsorted`` and ``--sorted``.
Binary data
-----------
Expand Down
2 changes: 1 addition & 1 deletion httpie/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"""

__version__ = '2.2.0-dev'
__version__ = '2.2.0'
__author__ = 'Jakub Roztocil'
__licence__ = 'BSD'

0 comments on commit 5945845

Please sign in to comment.