From 4b00cc132d6ece5e203ce46344f2cf7c5d83b47a Mon Sep 17 00:00:00 2001 From: Luis Pedro Coelho Date: Sun, 25 Jun 2023 00:16:09 +0200 Subject: [PATCH] RLS Version 2.3.0 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 --- ChangeLog | 2 +- README.rst | 8 ++++++++ docs/source/history.rst | 20 ++++++++++++++++++++ jug/jug_version.py | 2 +- 4 files changed, 30 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index f0acef1..2de95b5 100644 --- a/ChangeLog +++ b/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) diff --git a/README.rst b/README.rst index 7308811..56a606a 100644 --- a/README.rst +++ b/README.rst @@ -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 diff --git a/docs/source/history.rst b/docs/source/history.rst index 120f6b2..15d26ea 100644 --- a/docs/source/history.rst +++ b/docs/source/history.rst @@ -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 ------------- diff --git a/jug/jug_version.py b/jug/jug_version.py index 58db8c0..3162ece 100644 --- a/jug/jug_version.py +++ b/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.