Skip to content

Commit d8166dd

Browse files
author
Janne Karjalainen
committed
Update version to 2.2.1
1 parent c90c360 commit d8166dd

File tree

2 files changed

+39
-1
lines changed

2 files changed

+39
-1
lines changed
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# -*- coding: utf-8 -*-
2+
#
3+
# This file is part of EUDAT B2Share.
4+
# Copyright (C) 2018 CERN.
5+
#
6+
# B2Share is free software; you can redistribute it and/or
7+
# modify it under the terms of the GNU General Public License as
8+
# published by the Free Software Foundation; either version 2 of the
9+
# License, or (at your option) any later version.
10+
#
11+
# B2Share is distributed in the hope that it will be useful, but
12+
# WITHOUT ANY WARRANTY; without even the implied warranty of
13+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14+
# General Public License for more details.
15+
#
16+
# You should have received a copy of the GNU General Public License
17+
# along with B2Share; if not, write to the Free Software Foundation, Inc.,
18+
# 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
19+
#
20+
# In applying this license, CERN does not
21+
# waive the privileges and immunities granted to it by virtue of its status
22+
# as an Intergovernmental Organization or submit itself to any jurisdiction.
23+
24+
"""Upgrade recipe migrating B2SHARE from version 2.1.4 to 2.1.5."""
25+
26+
27+
from __future__ import absolute_import, print_function
28+
29+
import pkg_resources
30+
31+
from ..api import UpgradeRecipe
32+
33+
34+
migrate_2_2_0_to_2_2_1 = UpgradeRecipe('2.2.0', '2.2.1')
35+
36+
# No changes to Elasticsearch mappings
37+
38+
# There are no changes to the db schema, so no other updates are necessary

b2share/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@
2121
"""Version number."""
2222

2323

24-
__version__ = "2.2.0"
24+
__version__ = "2.2.1"

0 commit comments

Comments
 (0)