This commit is contained in:
Jakub Roztocil 2024-11-01 18:29:56 +01:00
parent 8560d1196d
commit 2105caa49b
5 changed files with 9 additions and 5 deletions

View File

@ -3,6 +3,10 @@
This document records all notable changes to [HTTPie](https://httpie.io). This document records all notable changes to [HTTPie](https://httpie.io).
This project adheres to [Semantic Versioning](https://semver.org/). 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) ## [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) - Fix SSL connections by pinning the `requests` version to `2.31.0`. (#1583, #1581)

View File

@ -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. .\" 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 .SH NAME
http http
.SH SYNOPSIS .SH SYNOPSIS

View File

@ -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. .\" 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 .SH NAME
httpie httpie
.SH SYNOPSIS .SH SYNOPSIS

View File

@ -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. .\" 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 .SH NAME
https https
.SH SYNOPSIS .SH SYNOPSIS

View File

@ -3,7 +3,7 @@ HTTPie: modern, user-friendly command-line HTTP client for the API era.
""" """
__version__ = '3.2.3' __version__ = '3.2.4'
__date__ = '2024-07-10' __date__ = '2024-11-01'
__author__ = 'Jakub Roztocil' __author__ = 'Jakub Roztocil'
__licence__ = 'BSD' __licence__ = 'BSD'