From 2142ae60c339144697cf93f40d1e740be344224d Mon Sep 17 00:00:00 2001 From: Batuhan Taskaya Date: Thu, 5 May 2022 23:32:35 +0300 Subject: [PATCH] Final release prep for 3.2.0 (#1387) --- CHANGELOG.md | 2 +- extras/man/http.1 | 2 +- extras/man/httpie.1 | 5 ++++- extras/man/https.1 | 2 +- httpie/__init__.py | 4 ++-- 5 files changed, 9 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a9358e69..7f981f3f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,7 @@ This document records all notable changes to [HTTPie](https://httpie.io). This project adheres to [Semantic Versioning](https://semver.org/). -## [3.1.1.dev0](https://github.com/httpie/httpie/compare/3.1.0...HEAD) (Unreleased) +## [3.2.0](https://github.com/httpie/httpie/compare/3.1.0...3.2.0) (2022-05-05) - Added a warning for notifying the user about the new updates. ([#1336](https://github.com/httpie/httpie/pull/1336)) - Added support for single binary executables. ([#1330](https://github.com/httpie/httpie/pull/1330)) diff --git a/extras/man/http.1 b/extras/man/http.1 index 3cf7b702..37dfcbfb 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 "2022-03-08" "HTTPie 3.1.1.dev0" "HTTPie Manual" +.TH http 1 "2022-05-05" "HTTPie 3.2.0" "HTTPie Manual" .SH NAME http .SH SYNOPSIS diff --git a/extras/man/httpie.1 b/extras/man/httpie.1 index 43fdcd07..e6c3b84a 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 "2022-03-08" "HTTPie 3.1.1.dev0" "HTTPie Manual" +.TH httpie 1 "2022-05-05" "HTTPie 3.2.0" "HTTPie Manual" .SH NAME httpie .SH SYNOPSIS @@ -24,6 +24,9 @@ Export available options for the CLI Format to export in. +.PP +.SH httpie cli check-updates +Check for updates .PP .SH httpie cli sessions upgrade Upgrade the given HTTPie session with the latest layout. A list of changes between different session versions can be found in the official documentation. diff --git a/extras/man/https.1 b/extras/man/https.1 index 4ecf5551..fbc54590 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 "2022-03-08" "HTTPie 3.1.1.dev0" "HTTPie Manual" +.TH https 1 "2022-05-05" "HTTPie 3.2.0" "HTTPie Manual" .SH NAME https .SH SYNOPSIS diff --git a/httpie/__init__.py b/httpie/__init__.py index 7b865004..6b7dc088 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.1.1.dev0' -__date__ = '2022-03-08' +__version__ = '3.2.0' +__date__ = '2022-05-05' __author__ = 'Jakub Roztocil' __licence__ = 'BSD'