From 021eb651e06e1559cf83c0149c8c653b84645bf7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20Schoentgen?= Date: Tue, 19 Oct 2021 10:21:45 +0200 Subject: [PATCH] Bump the version to 2.7.0.dev0 (#1188) --- CHANGELOG.md | 2 ++ docs/README.md | 2 +- httpie/__init__.py | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a217cad..35b54e9b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,8 @@ This document records all notable changes to [HTTPie](https://httpie.io). This project adheres to [Semantic Versioning](https://semver.org/). +## [2.7.0.dev0](https://github.com/httpie/httpie/compare/2.6.0...master) (unreleased) + ## [2.6.0](https://github.com/httpie/httpie/compare/2.5.0...2.6.0) (2021-10-14) - Added support for formatting & coloring of JSON bodies preceded by non-JSON data (e.g., an XXSI prefix). ([#1130](https://github.com/httpie/httpie/issues/1130)) diff --git a/docs/README.md b/docs/README.md index d4e16b6d..688075fe 100644 --- a/docs/README.md +++ b/docs/README.md @@ -330,7 +330,7 @@ Verify that now you have the [current development version identifier](https://gi ```bash $ http --version -# 2.6.0 +# 2.7.0.dev0 ``` ## Usage diff --git a/httpie/__init__.py b/httpie/__init__.py index 1ca8eba5..a9e24edf 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__ = '2.6.0' +__version__ = '2.7.0.dev0' __author__ = 'Jakub Roztocil' __licence__ = 'BSD'