Skip to content
Snippets Groups Projects
Commit c2fcebd9 authored by Sybren A. Stüvel's avatar Sybren A. Stüvel
Browse files

Bumped version to 2.1.0-dev

parent ea49ddc2
No related branches found
Tags
No related merge requests found
...@@ -3,11 +3,13 @@ ...@@ -3,11 +3,13 @@
This file logs the changes that are actually interesting to users (new features, This file logs the changes that are actually interesting to users (new features,
changed functionality, fixed bugs). 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 - 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. 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) ## Version 2.0.8 (released 2017-09-07)
......
__version__ = '2.0.9-dev' __version__ = '2.1.0-dev'
#!/bin/bash -e #!/bin/bash -e
FLAMENCO_VERSION="2.0.9-dev" FLAMENCO_VERSION="2.1.0-dev"
cd dist cd dist
......
...@@ -84,7 +84,7 @@ if __name__ == '__main__': ...@@ -84,7 +84,7 @@ if __name__ == '__main__':
setuptools.setup( setuptools.setup(
cmdclass={'zip': ZipCommand}, cmdclass={'zip': ZipCommand},
name='flamenco-worker', name='flamenco-worker',
version='2.0.9-dev', version='2.1.0-dev',
description='Flamenco Worker implementation', description='Flamenco Worker implementation',
author='Sybren A. Stüvel', author='Sybren A. Stüvel',
author_email='sybren@blender.studio', author_email='sybren@blender.studio',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment