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

build(deps): bump cryptography from 41.0.1 to 41.0.3 #93

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
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
7 changes: 7 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,13 @@
Changes
=======

Version 0.6.21 (released 2023-06-15)

Minor change:

* Uses warning instead error to log parse circulation error.
* Updates dependencies.

Version 0.6.20 (released 2023-03-30)

Minor change:
Expand Down
2 changes: 1 addition & 1 deletion invenio_sip2/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def parse_circulation_date(date):
return date.strftime(date_format)
return date_string_to_utc(date).strftime(date_format)
except Exception:
logger.error(f'parse circulation date error for: [{date}]')
logger.warning(f'parse circulation date error for: [{date}]')
return date or ''


Expand Down
2 changes: 1 addition & 1 deletion invenio_sip2/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@

"""Version information for Invenio-SIP2."""

__version__ = '0.6.20'
__version__ = '0.6.21'
Loading
Loading