From 2105caa49bae87c5809c274e407619a0de2639d1 Mon Sep 17 00:00:00 2001 From: Jakub Roztocil Date: Fri, 1 Nov 2024 18:29:56 +0100 Subject: [PATCH] 3.2.4 --- CHANGELOG.md | 4 ++++ extras/man/http.1 | 2 +- extras/man/httpie.1 | 2 +- extras/man/https.1 | 2 +- httpie/__init__.py | 4 ++-- 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'