diff --git a/b2share/modules/upgrade/upgrades/upgrade_2_4_1_to_2_4_2.py b/b2share/modules/upgrade/upgrades/upgrade_2_4_1_to_2_4_2.py new file mode 100644 index 000000000..9266bc428 --- /dev/null +++ b/b2share/modules/upgrade/upgrades/upgrade_2_4_1_to_2_4_2.py @@ -0,0 +1,17 @@ +"""Upgrade recipe migrating B2SHARE from version 2.4.1 to 2.4.2""" + + +from __future__ import absolute_import, print_function + +import pkg_resources + +from .common import elasticsearch_index_init + +from ..api import UpgradeRecipe + + +migrate_2_4_1_to_2_4_2 = UpgradeRecipe('2.4.1', '2.4.2') + +# There are no ES mapping updates + +# There are no changes to the db schema, so no other updates are necessary diff --git a/b2share/version.py b/b2share/version.py index b4c51d2a8..7c4cba493 100644 --- a/b2share/version.py +++ b/b2share/version.py @@ -21,4 +21,4 @@ """Version number.""" -__version__ = "2.4.1" +__version__ = "2.4.2"