summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJakub Roztocil <jakub@roztocil.co>2022-01-23 13:57:04 +0100
committerJakub Roztocil <jakub@roztocil.co>2022-01-23 13:58:01 +0100
commit3b441fa57e21229ae2be9b871098127547d100de (patch)
treed97252838ba7222e31c2f59e886f77dc64f03176
parentc815e21ef932e06eb0046136851c162f6bb0789e (diff)
3.0.13.0.1
-rw-r--r--CHANGELOG.md4
-rw-r--r--httpie/__init__.py2
2 files changed, 5 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c6219c8f..e3b8e3f2 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,6 +3,10 @@
This document records all notable changes to [HTTPie](https://httpie.io).
This project adheres to [Semantic Versioning](https://semver.org/).
+## [3.0.1](https://github.com/httpie/httpie/compare/3.0.0...3.0.1) (2022-01-23)
+
+- Changed the value shown as time elapsed from time-to-read-headers to total exchange time ([#1277](https://github.com/httpie/httpie/issues/1277))
+
## [3.0.0](https://github.com/httpie/httpie/compare/2.6.0...3.0.0) (2022-01-21)
- Dropped support for Python 3.6. ([#1177](https://github.com/httpie/httpie/issues/1177))
diff --git a/httpie/__init__.py b/httpie/__init__.py
index b3ad043e..78616027 100644
--- a/httpie/__init__.py
+++ b/httpie/__init__.py
@@ -3,6 +3,6 @@ HTTPie: modern, user-friendly command-line HTTP client for the API era.
"""
-__version__ = '3.0.0'
+__version__ = '3.0.1'
__author__ = 'Jakub Roztocil'
__licence__ = 'BSD'