summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMickaƫl Schoentgen <contact@tiger-222.fr>2021-09-06 20:23:14 +0200
committerGitHub <noreply@github.com>2021-09-06 20:23:14 +0200
commit4eaa4d67c5586ede82ceb1d5710989f693b1f343 (patch)
tree12cd8d40c2d9e7e1b0e3e59ae0702231267692f8
parent9764cc74a4fb126a8626a7dc025b5f66104b46ee (diff)
v2.5.0 (#1140)2.5.0
[skip ci]
-rw-r--r--CHANGELOG.md2
-rw-r--r--docs/README.md2
-rw-r--r--httpie/__init__.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 850784dd..f53c6b1a 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/).
-## [2.5.0-dev](https://github.com/httpie/httpie/compare/2.4.0...master) (unreleased)
+## [2.5.0](https://github.com/httpie/httpie/compare/2.4.0...2.5.0) (2021-09-06)
- Added `--raw` to allow specifying the raw request body without extra processing as
an alternative to `stdin`. ([#534](https://github.com/httpie/httpie/issues/534))
diff --git a/docs/README.md b/docs/README.md
index d1329faa..e5b53a8d 100644
--- a/docs/README.md
+++ b/docs/README.md
@@ -136,7 +136,7 @@ Verify that now you have the [current development version identifier](https://gi
```bash
$ http --version
-# 2.5.0-dev
+# 2.5.0
```
## Usage
diff --git a/httpie/__init__.py b/httpie/__init__.py
index 3cb9aa38..4b0a7e4f 100644
--- a/httpie/__init__.py
+++ b/httpie/__init__.py
@@ -3,6 +3,6 @@ HTTPie: command-line HTTP client for the API era.
"""
-__version__ = '2.5.0.dev0'
+__version__ = '2.5.0'
__author__ = 'Jakub Roztocil'
__licence__ = 'BSD'