summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJakub Roztocil <jakub@roztocil.co>2024-11-01 18:29:56 +0100
committerJakub Roztocil <jakub@roztocil.co>2024-11-01 18:29:56 +0100
commit2105caa49bae87c5809c274e407619a0de2639d1 (patch)
tree5be8d10a92efc928460e86f1ce6dcabbea1a728a
parent8560d1196d78fa839a4d69503680d95bed4552d4 (diff)
3.2.43.2.4
-rw-r--r--CHANGELOG.md4
-rw-r--r--extras/man/http.12
-rw-r--r--extras/man/httpie.12
-rw-r--r--extras/man/https.12
-rw-r--r--httpie/__init__.py4
5 files changed, 9 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 31054743..0497ac35 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.4](https://github.com/httpie/cli/compare/3.2.3...3.2.4) (2024-11-01)
+
+- Fix default certs loading and unpin `requests`. ([#1596](https://github.com/httpie/cli/issues/1596))
+
## [3.2.3](https://github.com/httpie/cli/compare/3.2.2...3.2.3) (2024-07-10)
- Fix SSL connections by pinning the `requests` version to `2.31.0`. (#1583, #1581)
diff --git a/extras/man/http.1 b/extras/man/http.1
index 09e42370..f0c49d8d 100644
--- a/extras/man/http.1
+++ b/extras/man/http.1
@@ -1,5 +1,5 @@
.\" This file is auto-generated from the parser declaration in httpie/cli/definition.py by extras/scripts/generate_man_pages.py.
-.TH http 1 "2024-07-10" "HTTPie 3.2.3" "HTTPie Manual"
+.TH http 1 "2024-07-10" "HTTPie 3.2.4" "HTTPie Manual"
.SH NAME
http
.SH SYNOPSIS
diff --git a/extras/man/httpie.1 b/extras/man/httpie.1
index ba269b1a..eb4028d7 100644
--- a/extras/man/httpie.1
+++ b/extras/man/httpie.1
@@ -1,5 +1,5 @@
.\" This file is auto-generated from the parser declaration in httpie/manager/cli.py by extras/scripts/generate_man_pages.py.
-.TH httpie 1 "2024-07-10" "HTTPie 3.2.3" "HTTPie Manual"
+.TH httpie 1 "2024-07-10" "HTTPie 3.2.4" "HTTPie Manual"
.SH NAME
httpie
.SH SYNOPSIS
diff --git a/extras/man/https.1 b/extras/man/https.1
index dfb1b018..5158c63d 100644
--- a/extras/man/https.1
+++ b/extras/man/https.1
@@ -1,5 +1,5 @@
.\" This file is auto-generated from the parser declaration in httpie/cli/definition.py by extras/scripts/generate_man_pages.py.
-.TH https 1 "2024-07-10" "HTTPie 3.2.3" "HTTPie Manual"
+.TH https 1 "2024-07-10" "HTTPie 3.2.4" "HTTPie Manual"
.SH NAME
https
.SH SYNOPSIS
diff --git a/httpie/__init__.py b/httpie/__init__.py
index d67c9190..a4dded9c 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.3'
-__date__ = '2024-07-10'
+__version__ = '3.2.4'
+__date__ = '2024-11-01'
__author__ = 'Jakub Roztocil'
__licence__ = 'BSD'