From 3b441fa57e21229ae2be9b871098127547d100de Mon Sep 17 00:00:00 2001 From: Jakub Roztocil Date: Sun, 23 Jan 2022 13:57:04 +0100 Subject: [PATCH] 3.0.1 --- CHANGELOG.md | 4 ++++ httpie/__init__.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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'