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: v4.1.1 #94

Merged
merged 1 commit into from
Sep 19, 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
5 changes: 5 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@
Changes
=======

Version v4.1.1 (released 2024-09-19)

- fix: add compatibility layer to move to flask>=3
- i18n: push translations

Version v4.1.0 (released 2024-08-07)

- http headers: use and adjust vnd.inveniordm.v1+json http accept header
Expand Down
3 changes: 2 additions & 1 deletion invenio_pages/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
#
# This file is part of Invenio.
# Copyright (C) 2015-2024 CERN.
# Copyright (C) 2024 Graz University of Technology.
#
# Invenio 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 InvenioPages, InvenioPagesREST
from .records.models import PageList, PageModel

__version__ = "4.1.0"
__version__ = "4.1.1"

__all__ = ("__version__", "InvenioPages", "InvenioPagesREST", "PageModel", "PageList")