Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
Changes
=======

Version v1.12.2 (released 2026-08-06)

chore: make invenio-cli init rdm default to v14 cookiecutter

Version v1.12.1 (released 2026-08-05)

- fix(requirements): require pnpm v11.x
Expand Down
2 changes: 1 addition & 1 deletion invenio_cli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@

"""Invenio module to ease the creation and management of applications."""

__version__ = "1.12.1"
__version__ = "1.12.2"

__all__ = ("__version__",)
2 changes: 1 addition & 1 deletion invenio_cli/helpers/cookiecutter_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def __init__(self, flavour, **kwargs):
or "https://github.com/inveniosoftware/cookiecutter-invenio-rdm.git"
)
self.template_name = self.extract_template_name(self.template)
self.checkout = self.checkout or "v13.0"
self.checkout = self.checkout or "v14.0"

if self.flavour.upper() == "ILS":
self.template = (
Expand Down
Loading