diff --git a/CHANGELOG.md b/CHANGELOG.md index 58dc677bcd..3f793d3fbb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,12 @@ This document records all notable changes to [HTTPie](https://httpie.io). This project adheres to [Semantic Versioning](https://semver.org/). +## [3.0.2](https://github.com/httpie/httpie/compare/3.0.0...3.0.1) (2022-01-23) + +[What’s new in HTTPie for Terminal 3.0 →](https://httpie.io/blog/httpie-3.0.0) + +- Fixed usage of `httpie` when there is a presence of a config with `default_options` ([#1280](https://github.com/httpie/httpie/pull/1280)). + ## [3.0.1](https://github.com/httpie/httpie/compare/3.0.0...3.0.1) (2022-01-23) [What’s new in HTTPie for Terminal 3.0 →](https://httpie.io/blog/httpie-3.0.0) diff --git a/httpie/__init__.py b/httpie/__init__.py index 7861602703..7d48b3499c 100644 --- a/httpie/__init__.py +++ b/httpie/__init__.py @@ -3,6 +3,6 @@ """ -__version__ = '3.0.1' +__version__ = '3.0.2' __author__ = 'Jakub Roztocil' __licence__ = 'BSD'