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
2 changes: 1 addition & 1 deletion .pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ requires-python = ">=3.9"
dependencies = [
"invenio-accounts>=6.0.0,<7.0.0",
"invenio-celery>=2.0.0,<3.0.0",
"invenio-oauthclient>=5.0.0,<6.0.0",
"invenio-oauthclient>=6.0.0,<7.0.0",
"invenio-userprofiles>=4.0.0,<5.0.0",
]

Expand Down
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@
Changes
=======

Version 0.5.0 (released 2025-11-12)

- setup: bump major version of `invenio-oauthclient`

Version 0.4.0 (released 2025-10-30)

- users sync: create identity when missing
Expand Down
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,6 @@ include .editorconfig
recursive-include .github/workflows *.yml
include *.md
include *.sh
include .pyproject.toml
recursive-include invenio_cern_sync *.py
recursive-include tests *.py
2 changes: 1 addition & 1 deletion invenio_cern_sync/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@

from .ext import InvenioCERNSync

__version__ = "0.4.0"
__version__ = "0.5.0"

__all__ = ("__version__", "InvenioCERNSync")
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ zip_safe = False
install_requires =
invenio-accounts>=6.0.0,<7.0.0
invenio-celery>=2.0.0,<3.0.0
invenio-oauthclient>=5.0.0,<6.0.0
invenio-oauthclient>=6.0.0,<7.0.0
invenio-userprofiles>=4.0.0,<5.0.0

[options.extras_require]
Expand Down
Loading