diff --git a/CHANGES.rst b/CHANGES.rst index 16764851d..9f2a735ed 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -10,6 +10,14 @@ Changes ======= +Version v13.0.0b1.dev3 (released 2024-09-02) + +- deposit: renamed get quota function +- config: filter out robots and flag machines +- migration: mint the new concept DOI for each upgraded record + * previously, the script would create a new concept DOI for each record + but never actually mint them on DataCite + Version v13.0.0b1.dev2 (released 2024-08-27) - setup: bump invenio-communities diff --git a/invenio_app_rdm/__init__.py b/invenio_app_rdm/__init__.py index 8cc226991..b4c6f511a 100644 --- a/invenio_app_rdm/__init__.py +++ b/invenio_app_rdm/__init__.py @@ -17,6 +17,6 @@ # # See PEP 0440 for details - https://www.python.org/dev/peps/pep-0440 -__version__ = "13.0.0b1.dev2" +__version__ = "13.0.0b1.dev3" __all__ = ("__version__",)