From b5625e3d7562f8e2068bff42addb557f05002524 Mon Sep 17 00:00:00 2001 From: Jakub Roztocil Date: Fri, 2 Nov 2018 16:24:35 +0100 Subject: [PATCH] v1.0.0 --- CHANGELOG.rst | 4 ++-- httpie/__init__.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 217efbcd..975d4236 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,7 +6,7 @@ This document records all notable changes to `HTTPie `_. This project adheres to `Semantic Versioning `_. -`1.0.0-dev`_ (unreleased) +`1.0.0`_ (2018-10-02) ------------------------- * Added ``--style=auto`` which follows the terminal ANSI color styles. @@ -340,4 +340,4 @@ This project adheres to `Semantic Versioning `_. .. _0.9.6: https://github.com/jakubroztocil/httpie/compare/0.9.4...0.9.6 .. _0.9.8: https://github.com/jakubroztocil/httpie/compare/0.9.6...0.9.8 .. _0.9.9: https://github.com/jakubroztocil/httpie/compare/0.9.8...0.9.9 -.. _1.0.0-dev: https://github.com/jakubroztocil/httpie/compare/0.9.8...master +.. _1.0.0: https://github.com/jakubroztocil/httpie/compare/0.9.9...1.0.0 diff --git a/httpie/__init__.py b/httpie/__init__.py index f4b9b042..36bb6595 100644 --- a/httpie/__init__.py +++ b/httpie/__init__.py @@ -2,7 +2,7 @@ HTTPie - a CLI, cURL-like tool for humans. """ -__version__ = '1.0.0-dev' +__version__ = '1.0.0' __author__ = 'Jakub Roztocil' __licence__ = 'BSD'