diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 84459bb0..d1bdebb0 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,6 +6,12 @@ This document records all notable changes to `HTTPie `_. This project adheres to `Semantic Versioning `_. +`1.0.2-dev`_ (unreleased) +------------------------- + +* Fixed tests for installation with pyOpenSSL. + + `1.0.1`_ (2018-11-14) ------------------------- @@ -348,3 +354,4 @@ This project adheres to `Semantic Versioning `_. .. _0.9.9: https://github.com/jakubroztocil/httpie/compare/0.9.8...0.9.9 .. _1.0.0: https://github.com/jakubroztocil/httpie/compare/0.9.9...1.0.0 .. _1.0.1: https://github.com/jakubroztocil/httpie/compare/1.0.0...1.0.1 +.. _1.0.2-dev: https://github.com/jakubroztocil/httpie/compare/1.0.1...master diff --git a/httpie/__init__.py b/httpie/__init__.py index 90dc63be..61519196 100644 --- a/httpie/__init__.py +++ b/httpie/__init__.py @@ -2,7 +2,7 @@ HTTPie - a CLI, cURL-like tool for humans. """ -__version__ = '1.0.1' +__version__ = '1.0.2-dev' __author__ = 'Jakub Roztocil' __licence__ = 'BSD'