Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release: v15.7.1 #1870

Merged
merged 1 commit into from
Nov 6, 2024
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
8 changes: 8 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,14 @@
Changes
=======

Version v15.7.1 (released 2024-11-06)

- installation: bump babel-edtf to >=1.2.0
- tests: fix EDTF interval with unknown start/end
- ui: use config instead of hardcoded url
- setup: forward compatibility to itsdangerous>=2.1
- fix: DeprecationWarning of SQLAlchemy

Version v15.7.0 (released 2024-11-04)

- resources: make record error handlers configurable
Expand Down
3 changes: 2 additions & 1 deletion invenio_rdm_records/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
# Copyright (C) 2019-2024 CERN.
# Copyright (C) 2019-2024 Northwestern University.
# Copyright (C) 2024 KTH Royal Institute of Technology.
# Copyright (C) 2024 Graz University of Technology.
#
# Invenio-RDM-Records is free software; you can redistribute it and/or modify
# it under the terms of the MIT License; see LICENSE file for more details.
Expand All @@ -11,6 +12,6 @@

from .ext import InvenioRDMRecords

__version__ = "15.7.0"
__version__ = "15.7.1"

__all__ = ("__version__", "InvenioRDMRecords")