From fed19ad969c23f5594f9f36a2984789114eefe19 Mon Sep 17 00:00:00 2001 From: Nick Stenning Date: Sat, 1 Apr 2017 11:09:36 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version=20->=20v1.0.0=20=F0=9F=8E=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.rst | 14 ++++++++++++++ honcho/__init__.py | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index f76259f..24d4360 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,6 +6,20 @@ project endeavours to adhere to `Semantic Versioning`_. .. _Semantic Versioning: http://semver.org/ +1.0.0 -- 2017-04-01 +------------------- + +- ADDED: Automatically suppress colouring when the STDOUT is not a TTY. +- ADDED: Honcho now exposes a HONCHO_PROCESS_NAME environment variable to its + child processes which contains the name of the process (e.g. ``web.1``, + ``worker.2``, etc.) +- ADDED: All subcommands now support ``--no-colour`` and ``--no-prefix`` options + to suppress ANSI coloured output and the logging prefix, respectively. +- CHANGED: The Upstart configuration generated by the Upstart exporter no longer + creates a log directory to which to send process output, in favour of relying + on Upstart's built-in job logging support (present since at least Upstart + 1.4). + 0.7.1 -- 2016-04-13 ------------------- diff --git a/honcho/__init__.py b/honcho/__init__.py index f0788a8..1f356cc 100644 --- a/honcho/__init__.py +++ b/honcho/__init__.py @@ -1 +1 @@ -__version__ = '0.7.1' +__version__ = '1.0.0'