summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJakub Roztocil <jakub@roztocil.co>2023-05-19 23:41:26 +0200
committerJakub Roztocil <jakub@roztocil.co>2023-05-19 23:41:26 +0200
commit29de4ce1151936856cda417767f8c507fc2c201c (patch)
treef13482c0156c61401dc5912465710632d09831c1
parent879fedc10a89f69469ea3f2934aa702f8ffbf181 (diff)
v3.2.23.2.2
-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 e6aaaafb..b03ffc9a 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.2.2](https://github.com/httpie/httpie/compare/3.2.1...3.2.2) (2022-05-19)
+
+- Fixed compatibility with urllib3 2.0.0. ([#1499](https://github.com/httpie/httpie/issue/1499))
+
## [3.2.1](https://github.com/httpie/httpie/compare/3.1.0...3.2.1) (2022-05-06)
- Improved support for determining auto-streaming when the `Content-Type` header includes encoding information. ([#1383](https://github.com/httpie/httpie/pull/1383))
diff --git a/httpie/__init__.py b/httpie/__init__.py
index 1142fc1b..ffe0d354 100644
--- a/httpie/__init__.py
+++ b/httpie/__init__.py
@@ -3,7 +3,7 @@ HTTPie: modern, user-friendly command-line HTTP client for the API era.
"""
-__version__ = '3.2.1'
+__version__ = '3.2.2'
__date__ = '2022-05-06'
__author__ = 'Jakub Roztocil'
__licence__ = 'BSD'