Skip to content

Commit

Permalink
release: v2.1.4rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
hevp committed Mar 6, 2020
1 parent d692240 commit 5339a11
Show file tree
Hide file tree
Showing 5 changed files with 54 additions and 3 deletions.
3 changes: 2 additions & 1 deletion AUTHORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,15 @@ Authors

- Adrian Mouat (KTH)
- Carl Johan Håkansson (KTH)
- Dennis Blommensteijn (SURFsara)
- Dennis Blommesteijn (SURFsara)
- Dinos Kousidis (CERN)
- Emanuel Dima (EKUT)
- Hans van Piggelen (SURFsara)
- Harri Hirvonsalo (CSC)
- Hilary Hanahoe (TRUST)
- Huw Morris (STFC)
- Ilja Livenson (KTH)
- Janne Karjalainen (CSC)
- Klára Pešková (CUNI)
- Kristian Niininen (CSC)
- Lassi Lehtinen (CSC)
Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
B2Share changelog
*****************

2.1.4 (March 2020)
===========================

Changes since 2.1.3 include:

- Many interface improvements
- Additions to REST API output
- New EUDAT branding layout
- Many bug fixes
- Removal of unused files


2.1.3 (October 2019)
===========================

Expand Down
2 changes: 1 addition & 1 deletion b2share/modules/upgrade/upgrades/upgrade_2_1_2_to_2_1_3.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
from ..api import UpgradeRecipe


migrate_2_1_1_to_2_1_2 = UpgradeRecipe('2.1.2', '2.1.3')
migrate_2_1_2_to_2_1_3 = UpgradeRecipe('2.1.2', '2.1.3')

# No changes to Elasticsearch mappings

Expand Down
38 changes: 38 additions & 0 deletions b2share/modules/upgrade/upgrades/upgrade_2_1_3_to_2_1_4.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# -*- coding: utf-8 -*-
#
# This file is part of EUDAT B2Share.
# Copyright (C) 2018 CERN.
#
# B2Share is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation; either version 2 of the
# License, or (at your option) any later version.
#
# B2Share is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with B2Share; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
#
# In applying this license, CERN does not
# waive the privileges and immunities granted to it by virtue of its status
# as an Intergovernmental Organization or submit itself to any jurisdiction.

"""Upgrade recipe migrating B2SHARE from version 2.1.3 to 2.1.4."""


from __future__ import absolute_import, print_function

import pkg_resources

from ..api import UpgradeRecipe


migrate_2_1_3_to_2_1_4 = UpgradeRecipe('2.1.3', '2.1.4')

# No changes to Elasticsearch mappings

# 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.1.3"
__version__ = "2.1.4rc1"

0 comments on commit 5339a11

Please sign in to comment.