-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updates after version 2.3.2: - Update Homepage text (webui) - Show message according to B2SHARE_SITE_FUNCTION env value Co-authored-by: Harri Hirvonsalo <[email protected]>
- Loading branch information
Showing
2 changed files
with
18 additions
and
1 deletion.
There are no files selected for viewing
17 changes: 17 additions & 0 deletions
17
b2share/modules/upgrade/upgrades/upgrade_2_3_2_to_2_3_3.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
"""Upgrade recipe migrating B2SHARE from version 2.3.2 to 2.3.3.""" | ||
|
||
|
||
from __future__ import absolute_import, print_function | ||
|
||
import pkg_resources | ||
|
||
from .common import elasticsearch_index_init | ||
|
||
from ..api import UpgradeRecipe | ||
|
||
|
||
migrate_2_3_2_to_2_3_3 = UpgradeRecipe('2.3.2', '2.3.3') | ||
|
||
# There are no ES mapping updates | ||
|
||
# There are no changes to the db schema, so no other updates are necessary |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,4 +21,4 @@ | |
"""Version number.""" | ||
|
||
|
||
__version__ = "2.3.2" | ||
__version__ = "2.3.3" |