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

bump major #30

Merged
merged 2 commits into from
Dec 10, 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 1.0.0 (release 2024-12-10)

- setup: bump major dependencies

Version 0.6.1 (release 2024-11-30)

- setup: change to reusable workflows
Expand Down
4 changes: 2 additions & 2 deletions invenio_notifications/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
#
# Copyright (C) 2023 CERN.
# Copyright (C) 2023 Graz University of Technology.
# Copyright (C) 2023-2024 Graz University of Technology.
#
# Invenio-Notifications is free software; you can redistribute it and/or
# modify it under the terms of the MIT License; see LICENSE file for more
Expand All @@ -12,7 +12,7 @@
from .ext import InvenioNotifications
from .proxies import current_notifications, current_notifications_manager

__version__ = "0.6.1"
__version__ = "1.0.0"

__all__ = (
"__version__",
Expand Down
16 changes: 8 additions & 8 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -27,22 +27,22 @@ packages = find:
python_requires = >=3.7
zip_safe = False
install_requires =
invenio-base>=1.3.0,<2.0.0
invenio-i18n>=1.3.1,<3.0.0
invenio-base>=2.0.0,<3.0.0
invenio-i18n>=3.0.0,<4.0.0

[options.extras_require]
tests =
invenio-app>=1.4.0,<2.0.0
invenio-celery>=1.2.5,<2.0.0
invenio-app>=2.0.0,<3.0.0
invenio-celery>=2.0.0,<3.0.0
invenio-mail>=2.0.0,<3.0.0
invenio-records-resources>=6.0.0,<7.0.0
pytest-invenio>=2.1.0,<3.0.0
invenio-records-resources>=7.0.0,<8.0.0
pytest-invenio>=3.0.0,<4.0.0
pytest-black-ng>=0.4.0
sphinx>=4.5.0
elasticsearch7 =
invenio-search[elasticsearch7]>=2.1.0,<3.0.0
invenio-search[elasticsearch7]>=3.0.0,<4.0.0
opensearch2 =
invenio-search[opensearch2]>=2.1.0,<3.0.0
invenio-search[opensearch2]>=3.0.0,<4.0.0

[options.entry_points]
invenio_base.apps =
Expand Down