From a8c027607d1f340a98400912cb0c54e826dfa04b Mon Sep 17 00:00:00 2001 From: Yannick PEROUX Date: Wed, 27 Jan 2016 12:32:08 +0100 Subject: [PATCH 1/3] Update Changelog --- docs/source/changelog.rst | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index 75f19adf5..41700c275 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -1,6 +1,17 @@ Changelog history ================= +0.12.# - 2016-01-27 +---------- +- Compatibility with Python 3.5 - #939, # +- Fix issues with case for start, stop and restart commands - #927 +- Fix AccessDenied error - #920 +- DecrProcess was renamed DecrProc - #932 +- Fix issues with DecrProc and singleton watchers - #932 +- Fix encoding issue with statsd sockets - #947 +- Some fixes for Papa sockets - #953, #922 +- Minor doc updates + 0.12.1 - 2015-08-05 ---------- - Fix error when restarting a watcher with an output stream - #913 From 73c8c3427e8cef6250b7bf6f4457cf6ddef126d4 Mon Sep 17 00:00:00 2001 From: Yannick PEROUX Date: Wed, 27 Jan 2016 12:34:23 +0100 Subject: [PATCH 2/3] Prepare 0.13.0 release --- circus/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/circus/__init__.py b/circus/__init__.py index 5528024c7..3d082fbf6 100644 --- a/circus/__init__.py +++ b/circus/__init__.py @@ -3,7 +3,7 @@ import warnings -version_info = (0, 12, 2) +version_info = (0, 13, 0) __version__ = ".".join(map(str, version_info)) # This config call is done to avoid any From 302166c07e1cb39e8f62f3facce0a4fce9e116f5 Mon Sep 17 00:00:00 2001 From: Yannick PEROUX Date: Wed, 27 Jan 2016 12:35:09 +0100 Subject: [PATCH 3/3] Update Changelog --- docs/source/changelog.rst | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index 41700c275..ee4e3297e 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -1,9 +1,15 @@ Changelog history ================= -0.12.# - 2016-01-27 +0.13 - 2016-01-27 ---------- -- Compatibility with Python 3.5 - #939, # +This release brings Python 3.5 support, a better handling +of stdin for the watchers, a new kill command, and several +interesting bugfixes. + +- Compatibility with Python 3.5 - #939, #956 +- Add close_child_stdin option to the watchers - #910 +- Add 'kill' command - #957 - Fix issues with case for start, stop and restart commands - #927 - Fix AccessDenied error - #920 - DecrProcess was renamed DecrProc - #932