diff options
author | Jakub Roztocil <jakub@roztocil.co> | 2021-02-06 11:17:24 +0100 |
---|---|---|
committer | Jakub Roztocil <jakub@roztocil.co> | 2021-02-06 11:17:24 +0100 |
commit | bb3689705407b85c8162a4c7007096f3a05e5a60 (patch) | |
tree | 8d0e3e10e369b372961d3f6cb20b72903e2d2504 | |
parent | 173e622567a169b960c1dfbef1b1f4b2234abe9d (diff) |
2.4.02.4.0
-rw-r--r-- | CHANGELOG.rst | 7 | ||||
-rw-r--r-- | httpie/__init__.py | 2 |
2 files changed, 5 insertions, 4 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst index e4618802..3e98e7e0 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -7,8 +7,8 @@ This project adheres to `Semantic Versioning <https://semver.org/>`_. -`2.4.0-dev`_ (unreleased) -------------------------- +`2.4.0`_ (2021-02-06) +--------------------- * Added support for ``--session`` cookie expiration based on ``Set-Cookie: max-age=<n>``. (`#1029`_) * Show a ``--check-status`` warning with ``--quiet`` as well, not only when the output si redirected. (`#1026`_) * Fixed upload with ``--session`` (`#1020`_). @@ -464,7 +464,8 @@ This project adheres to `Semantic Versioning <https://semver.org/>`_. .. _2.1.0: https://github.com/httpie/httpie/compare/2.0.0...2.1.0 .. _2.2.0: https://github.com/httpie/httpie/compare/2.1.0...2.2.0 .. _2.3.0: https://github.com/httpie/httpie/compare/2.2.0...2.3.0 -.. _2.4.0-dev: https://github.com/httpie/httpie/compare/2.3.0...master +.. _2.4.0: https://github.com/httpie/httpie/compare/2.3.0...2.4.0 +.. _2.5.0-dev: https://github.com/httpie/httpie/compare/2.4.0...master .. _#128: https://github.com/httpie/httpie/issues/128 .. _#201: https://github.com/httpie/httpie/issues/201 diff --git a/httpie/__init__.py b/httpie/__init__.py index 82edd555..3159e8d6 100644 --- a/httpie/__init__.py +++ b/httpie/__init__.py @@ -3,6 +3,6 @@ HTTPie: command-line HTTP client for the API era. """ -__version__ = '2.4.0-dev' +__version__ = '2.4.0' __author__ = 'Jakub Roztocil' __licence__ = 'BSD' |