diff --git a/CHANGELOG.md b/CHANGELOG.md index e78bb0c9f011a828a6e44545baa92e1ea3b4ca29..5d06a146814d5fa958a0431bb339ad46368ca38f 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 a4449c0e49c802c83cc3e9de1026c7cc7535c2e3..7cda7259e503407affe15533a1f0928628501116 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 debf74f87552763cbcce8c435de5c788df8a0a51..866e5216b03ac15cb2149c9264108b729d168398 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 030da6f9afb41f4553890b2946f7d5af67e945f5..84eb7912e697c4266bfe996a4a1f853c2150b5ea 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',