Skip to content

Commit

Permalink
Release version 2.4.1
Browse files Browse the repository at this point in the history
Updates after version 2.4.0:
- Upgrade psycopg2 to version 2.9.5
- Bug fix: removed file from the list now is permanently deleted
- Bug fix: Limit datacite request for doi resolution
- Bug fix: Fix user meny on Safari browser
  • Loading branch information
gek20 committed Nov 12, 2024
1 parent 3b243a2 commit 72b946c
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
17 changes: 17 additions & 0 deletions b2share/modules/upgrade/upgrades/upgrade_2_4_0_to_2_4_1.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
"""Upgrade recipe migrating B2SHARE from version 2.4.0 to 2.4.1"""


from __future__ import absolute_import, print_function

import pkg_resources

from .common import elasticsearch_index_init

from ..api import UpgradeRecipe


migrate_2_4_0_to_2_4_1 = UpgradeRecipe('2.4.0', '2.4.1')

# There are no ES mapping updates

# There are no changes to the db schema, so no other updates are necessary
2 changes: 1 addition & 1 deletion b2share/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@
"""Version number."""


__version__ = "2.4.0"
__version__ = "2.4.1"

0 comments on commit 72b946c

Please sign in to comment.