Skip to content

Commit e147097

Browse files
authored
Merge pull request #182 from mpsonntag/release144
Preparation for version 1.4.4 release LGTM
2 parents 3182e10 + 24508b4 commit e147097

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,24 @@
33
Used to document all changes from previous releases and collect changes
44
until the next release.
55

6+
# Version 1.4.4
7+
8+
# Requirement update
9+
- The release updates the python-odml library requirement to version 1.5.1.
10+
11+
# Minor changes and updates
12+
- When using Python 2 a popup with a deprecation warning message is displayed. See PR #175 and issue #174 for details.
13+
- A warning is issued when a Property.Value of `dtype=text` would be overwritten with the abbreviated list display text by accident. See PR #175 and issue #157 for details.
14+
- A function is added to the "Edit" menu to refresh the terminology cache. See PR #178 and issue #118 for details.
15+
16+
# Fixes
17+
- Fixes broken Properties reorder behavior. See issue PR #180 and issue #142 for details.
18+
- Fixes an error on multi value reorder behavior. See PR #179 and issue #141 for details.
19+
- Fixes an error on multi value removal. See PR #179 and issue #137 for details.
20+
- Fixes multi value loss when dragging it to another Property by prohibiting value transferal to another Property. See PR #179 and issue #143 for details.
21+
- Fixes a background AttibuteError when undoing a Propert.value change. See PR #179 and issue #138 for details.
22+
- Fixes system dependent automatic replacement of comma with a dot when editing a value uncertainty. See PR #175 and issue #149 for details.
23+
624
# Version 1.4.3
725

826
## Features

odmlui/info.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"VERSION": "1.4.3",
2+
"VERSION": "1.4.4",
33
"AUTHOR": "Shubham Dighe, Hagen Fritsch, Christian Kellner, Jan Grewe, Achilleas Koutsou, Michael Sonntag",
44
"COPYRIGHT": "(c) 2011-2020, German Neuroinformatics Node",
55
"CONTACT": "dev@g-node.org",

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ class PackageNotFoundError(Exception):
5252
"odmlui.treemodel"
5353
]
5454

55-
install_req = ["odml>=1.4.4"]
55+
install_req = ["odml>=1.5.1"]
5656

5757
data_files = [("share/pixmaps", glob.glob(os.path.join("images", "*"))),
5858
("share/odmlui", ["LICENSE"])]

0 commit comments

Comments
 (0)