From d45f413f12198137869e403a3a77ffdf073206db Mon Sep 17 00:00:00 2001 From: Batuhan Taskaya Date: Thu, 3 Feb 2022 12:47:06 +0300 Subject: [PATCH] Make the version point to `3.0.3.dev0` (#1291) --- CHANGELOG.md | 2 +- docs/README.md | 2 +- httpie/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b5801045..fa90f107 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/). -## Unreleased +## [3.0.3.dev0](https://github.com/httpie/httpie/compare/3.0.2...HEAD) (Unreleased) - Fixed escaping of integer indexes with multiple backslashes in the nested JSON builder. ([#1285](https://github.com/httpie/httpie/issues/1285)) diff --git a/docs/README.md b/docs/README.md index 66bb4d6a..5b4f6493 100644 --- a/docs/README.md +++ b/docs/README.md @@ -260,7 +260,7 @@ Verify that now you have the [current development version identifier](https://gi ```bash $ http --version -# 3.0.0 +# 3.0.3.dev0 ``` ## Usage diff --git a/httpie/__init__.py b/httpie/__init__.py index 7d48b349..683e7b98 100644 --- a/httpie/__init__.py +++ b/httpie/__init__.py @@ -3,6 +3,6 @@ HTTPie: modern, user-friendly command-line HTTP client for the API era. """ -__version__ = '3.0.2' +__version__ = '3.0.3.dev0' __author__ = 'Jakub Roztocil' __licence__ = 'BSD'