From c2fcebd900a662921679666a70ca915ea6ec34d9 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= <sybren@stuvel.eu>
Date: Fri, 20 Oct 2017 10:07:06 +0200
Subject: [PATCH] Bumped version to 2.1.0-dev

---
 CHANGELOG.md                | 6 ++++--
 flamenco_worker/__init__.py | 2 +-
 publish-online.sh           | 2 +-
 setup.py                    | 2 +-
 4 files changed, 7 insertions(+), 5 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index e78bb0c9..5d06a146 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,11 +3,13 @@
 This file logs the changes that are actually interesting to users (new features,
 changed functionality, fixed bugs).
 
-## Version 2.0.9 (in development)
+## Version 2.1.0 (in development)
 
-- Fixed sending task status updates after the task may no longer be run.
 - Worker can now be told to go to sleep by the Manager. In that case task execution
   stops (because /may-i-run/{task-id} returns 'no') and new tasks are no longer given.
+  This is done via a request to change its internal state. This state change must be
+  acknowleged by the Worker before new tasks will be given.
+- Fixed sending task status updates after the task may no longer be run.
 
 
 ## Version 2.0.8 (released 2017-09-07)
diff --git a/flamenco_worker/__init__.py b/flamenco_worker/__init__.py
index a4449c0e..7cda7259 100644
--- a/flamenco_worker/__init__.py
+++ b/flamenco_worker/__init__.py
@@ -1 +1 @@
-__version__ = '2.0.9-dev'
+__version__ = '2.1.0-dev'
diff --git a/publish-online.sh b/publish-online.sh
index debf74f8..866e5216 100755
--- a/publish-online.sh
+++ b/publish-online.sh
@@ -1,6 +1,6 @@
 #!/bin/bash -e
 
-FLAMENCO_VERSION="2.0.9-dev"
+FLAMENCO_VERSION="2.1.0-dev"
 
 cd dist
 
diff --git a/setup.py b/setup.py
index 030da6f9..84eb7912 100755
--- a/setup.py
+++ b/setup.py
@@ -84,7 +84,7 @@ if __name__ == '__main__':
     setuptools.setup(
         cmdclass={'zip': ZipCommand},
         name='flamenco-worker',
-        version='2.0.9-dev',
+        version='2.1.0-dev',
         description='Flamenco Worker implementation',
         author='Sybren A. Stüvel',
         author_email='sybren@blender.studio',
-- 
GitLab