Skip to content

Commit b4a5389

Browse files
committed
Merge branch 'master' into stable
2 parents eed0066 + 729d464 commit b4a5389

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
lines changed

conda-recipe/unix/rsmtool/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package:
22
name: rsmtool
3-
version: 5.0.0
3+
version: 5.0.1
44

55
source:
66
path: ../../../../rsmtool

conda-recipe/windows/rsmtool/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package:
22
name: rsmtool
3-
version: 5.0.0
3+
version: 5.0.1
44

55
source:
66
path: ../../../../rsmtool

doc/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Release Notes
22

3+
## v5.0.1 (June 7, 2016)
4+
5+
### Bugfixes
6+
7+
* RSMCompare now does not switch the old and new experiments in the report.
8+
39
## v5.0.0 (June 3, 2016)
410

511
### New features

rsmtool/notebooks/comparison/header.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,7 @@
469469
},
470470
"outputs": [],
471471
"source": [
472-
"def combine_old_new_results(df_new, df_old, name):\n",
472+
"def combine_old_new_results(df_old, df_new, name):\n",
473473
" \n",
474474
" # combine the two dataframes and compute the difference\n",
475475
" df_diff = df_new - df_old\n",

rsmtool/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
in one place. Based on the suggestion `here. <http://bit.ly/16LbuJF>`_
44
"""
55

6-
__version__ = '5.0.0'
6+
__version__ = '5.0.1'
77
VERSION = tuple(int(x) for x in __version__.split('.'))

0 commit comments

Comments
 (0)