Skip to content

Commit

Permalink
RLS Version 2.0.0rc0
Browse files Browse the repository at this point in the history
The big changes are failed tasks (contributed by @unode).

Also, environmental variables are now always checked and creating a file
called `__jug_please_stop.txt` will stop a `jug execute` run in a clean
way.

Full ChangeLog
    * jug.backend.base_store has 1 new method `listlocks`
    * jug.backend.base_lock has 2 new methods `fail` and `is_failed`
    * Add 'jug execute --keep-failed' to preserve locks on failing tasks.
    * Add 'jug cleanup --failed-only' to remove locks from failed tasks
    * 'jug status' and 'jug graph' now display failed tasks
    * Check environmental exit variables by default (suggested by Renato Alves, issue #66)
    * Fix 'jug sleep-until' in the presence of barrier() (issue #71)
  • Loading branch information
luispedro committed Jan 31, 2020
1 parent fbb4f35 commit f1a0833
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ChangeLog
@@ -1,4 +1,4 @@
version x Unreleased
version 2.0.0 Sat Feb 1 2020 by luispedro
* jug.backend.base_store has 1 new method 'listlocks'
* jug.backend.base_lock has 2 new methods 'fail' and 'is_failed'
* Add 'jug execute --keep-failed' to preserve locks on failing tasks.
Expand Down
9 changes: 9 additions & 0 deletions README.rst
Expand Up @@ -130,6 +130,15 @@ reasonably large set of parameter combinations" - Andreas Longva
What's New
----------

version **2.0.0** (Sat Feb 1 2020)
- jug.backend.base_store has 1 new method 'listlocks'
- jug.backend.base_lock has 2 new methods 'fail' and 'is_failed'
- Add 'jug execute --keep-failed' to preserve locks on failing tasks.
- Add 'jug cleanup --failed-only' to remove locks from failed tasks
- 'jug status' and 'jug graph' now display failed tasks
- Check environmental exit variables by default (suggested by Renato Alves, issue #66)
- Fix 'jug sleep-until' in the presence of barrier() (issue #71)


version **1.6.9** (Tue Aug 6 2019)

Expand Down
9 changes: 9 additions & 0 deletions docs/source/history.rst
Expand Up @@ -2,6 +2,15 @@
History
=======

version **2.0.0** (Sat Feb 1 2020)
- jug.backend.base_store has 1 new method 'listlocks'
- jug.backend.base_lock has 2 new methods 'fail' and 'is_failed'
- Add 'jug execute --keep-failed' to preserve locks on failing tasks.
- Add 'jug cleanup --failed-only' to remove locks from failed tasks
- 'jug status' and 'jug graph' now display failed tasks
- Check environmental exit variables by default (suggested by Renato Alves, issue #66)
- Fix 'jug sleep-until' in the presence of barrier() (issue #71)

version **1.6.9** (Tue Aug 6 2019)

- Fix saving on newer version of numpy
Expand Down
2 changes: 1 addition & 1 deletion jug/jug_version.py
@@ -1,4 +1,4 @@
__version__ = '1.6.9+git'
__version__ = '2.0.0rc0'
CITATION = '''\
Coelho, L.P., (2017). Jug: Software for Parallel Reproducible Computation in
Python. Journal of Open Research Software. 5(1), p.30.
Expand Down

0 comments on commit f1a0833

Please sign in to comment.