From 2db31cd4c70f9f89d767b48458335da2ffaf9bc8 Mon Sep 17 00:00:00 2001 From: Alexandr Kuvaev Date: Thu, 21 Dec 2017 16:09:09 +0300 Subject: [PATCH] Added RELEASE.md --- RELEASE.md | 32 ++++++++++++++++++++++++++++++++ cardio/__init__.py | 2 +- 2 files changed, 33 insertions(+), 1 deletion(-) create mode 100644 RELEASE.md diff --git a/RELEASE.md b/RELEASE.md new file mode 100644 index 0000000..7935017 --- /dev/null +++ b/RELEASE.md @@ -0,0 +1,32 @@ +# Release 0.2.0 + +## Major Features And Improvements +* ``load`` method now supports new signal formats: + * DICOM + * EDF + * wav +* ``meta`` component structure has changed - now it always contains a number of predefined keys. +* Added channels processing methods: + * `EcgBatch.keep_channels` + * `EcgBatch.drop_channels` + * `EcgBatch.rename_channels` +* Added `apply_to_each_channel` method. +* Added complex ECG transformations: + * Fourier-based transformations: + * `EcgBatch.fft` + * `EcgBatch.ifft` + * `EcgBatch.rfft` + * `EcgBatch.irfft` + * `EcgBatch.spectrogram` + +## Breaking Changes to the API +* `apply_transform` method's signature has changed. +* `update` method has been deleted. +* `replace_labels` method has been renamed to `rename_labels`. +* `slice_signal` method has been renamed to `slice_signals`. +* `ravel` method has been renamed to `unstack_signals`. + + +# Release 0.1.0 + +Initial release of CardIO. diff --git a/cardio/__init__.py b/cardio/__init__.py index 1fe5ade..c1d8c93 100644 --- a/cardio/__init__.py +++ b/cardio/__init__.py @@ -4,4 +4,4 @@ from . import dataset # pylint: disable=wildcard-import -__version__ = '0.1.0' +__version__ = '0.2.0'