Skip to content

Commit

Permalink
Added RELEASE.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexandr Kuvaev committed Dec 21, 2017
1 parent 24fc403 commit 2db31cd
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 1 deletion.
32 changes: 32 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -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.
2 changes: 1 addition & 1 deletion cardio/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
from . import dataset # pylint: disable=wildcard-import


__version__ = '0.1.0'
__version__ = '0.2.0'

0 comments on commit 2db31cd

Please sign in to comment.