Skip to content

Commit

Permalink
RLS Version 2.3.0
Browse files Browse the repository at this point in the history
Several minor improvements

* `jug shell`: Add `get_filtered_tasks()`
* `jug`: Fix `jug --version` (which had been broken in the refactoring to use subcommands)
* `jug shell`: Fix message in jug shell when there are no dependencies (it would repeatedly print the message stating "this will only be run once")
* `jug pack`: Make it much faster to invalidate elements
* `file_store`: ensure that the temporary directory exists
  • Loading branch information
luispedro committed Jun 24, 2023
1 parent 43a0152 commit 4b00cc1
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ChangeLog
@@ -1,4 +1,4 @@
Unreleased
Version 2.3.0 Tue 25 June 2023 by luispedro
* jug shell: Add `get_filtered_tasks()`
* jug: Fix `jug --version` (which had been broken in the refactoring to
use subcommands)
Expand Down
8 changes: 8 additions & 0 deletions README.rst
Expand Up @@ -133,6 +133,14 @@ the `value` function::
What's New
----------

Version 2.3.0 (*25 June 2023*)

- jug shell: Add ``get_filtered_tasks()``
- jug: Fix ``jug --version`` (which had been broken in the refactoring to use subcommands)
- jug shell: Fix message in jug shell when there are no dependencies (it would repeatedly print the message stating *this will only be run once*)
- jug pack: Make it much faster to invalidate elements
- file_store: ensure that the temporary directory exists

Version 2.2.3 (*26 May 2023*)
- Fix ``jug shell`` for newer versions of IPython

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

Version 2.3.0
-------------

*Released 25 June 2023*

- jug shell: Add ``get_filtered_tasks()``
- jug: Fix ``jug --version`` (which had been broken in the refactoring to use subcommands)
- jug shell: Fix message in jug shell when there are no dependencies (it would repeatedly print the message stating *this will only be run once*)
- jug pack: Make it much faster to invalidate elements
- file_store: ensure that the temporary directory exists


Version 2.2.3
-------------

*Released 26 May 2023*

- Fix ``jug shell`` for newer versions of IPython


Version 2.2.2
-------------

Expand Down
2 changes: 1 addition & 1 deletion jug/jug_version.py
@@ -1,4 +1,4 @@
__version__ = '2.2.3'
__version__ = '2.3.0'
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 4b00cc1

Please sign in to comment.