diff --git a/CHANGE_LOG b/CHANGE_LOG index 483d7bb..4f0dbe4 100644 --- a/CHANGE_LOG +++ b/CHANGE_LOG @@ -1,2 +1,15 @@ -v0.1.2: 2015-12-28: Bug fix for unicode issues -v0.1.0: 2015-09-03 Repository separated from FlowCytometryTools +v0.2.0 (2018-02-19): + +- python2/3 compatibility fix + +*Breaking changes* + +- pandas is required +- removed (output_datatype) kwarg in parse +- data is automatically converted to float32 to protect the user from making + mistakes when the data type is mixed (but the user can choose to turn + conversion off). + +v0.1.2 (2015-12-28): Bug fix for unicode issues + +v0.1.0 (2015-09-03): Repository separated from FlowCytometryTools diff --git a/fcsparser/_version.py b/fcsparser/_version.py index e3574dc..181e9f0 100644 --- a/fcsparser/_version.py +++ b/fcsparser/_version.py @@ -1 +1 @@ -version = "0.1.4" +version = "0.2.0"