From 2308ad7715df08492f134acb32c72d6f3af3a6d0 Mon Sep 17 00:00:00 2001 From: Eugene Yurtsev Date: Mon, 19 Feb 2018 12:52:50 -0500 Subject: [PATCH] Bump version and write change log --- CHANGE_LOG | 17 +++++++++++++++-- fcsparser/_version.py | 2 +- 2 files changed, 16 insertions(+), 3 deletions(-) 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"