diff --git a/CHANGES.rst b/CHANGES.rst index 05aeb1bbf38882cc12027949f70cbbcbf0da6717..451fed50139f93b60ea260264c095b909bda10ec 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -17,3 +17,11 @@ Version 2021.2 (released 2021-12-07, updated 2021-12-15) - Bump dependencies (InvenioRDM v7) - Add option to show/hide users' full names + + +Version 2022.1 (released 2022-03-25) + +- Rename old 'orphans' subcommand for files to 'zombies' +- Add 'orphans' subcommand for files that operates on orphaned DB entries +- Add command to verify the integrity of all files +- Update file verification commands for drafts and records diff --git a/invenio_utilities_tuw/version.py b/invenio_utilities_tuw/version.py index 4a88e763beb8e7c5db6c2c2f2bee6d65bc70a4ae..a386c6c751c4d27d85aa65f629dcd5fca491c27b 100644 --- a/invenio_utilities_tuw/version.py +++ b/invenio_utilities_tuw/version.py @@ -12,4 +12,4 @@ This file is imported by ``invenio_utilities_tuw.__init__``, and parsed by ``setup.py``. """ -__version__ = "2021.2.1" +__version__ = "2022.1.0" diff --git a/setup.py b/setup.py index fc95c770c357739beb3ff6dd31a29b8163d3c347..735bcfdd72d857ebb88b6699a83341bad6bc8466 100644 --- a/setup.py +++ b/setup.py @@ -35,7 +35,7 @@ setup_requires = [ ] install_requires = [ - "invenio-app-rdm>=7.0.0", + "invenio-app-rdm>=8.0.0", ] packages = find_packages()