diff --git a/docs/changes.rst b/docs/changes.rst index df5a6f5a..061f4877 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -5,6 +5,15 @@ This page lists recent changes in the `wfdb` package (since version 4.0.0) that .. _development repository: https://github.com/MIT-LCP/wfdb-python +Version 4.1.2 (June 2023) +----------------------------- + +**Handle more than 8 compressed signals in wrsamp** + Previously, the package did not support writing of compressed records with more than 8 channels. + +**Use int64 instead of int for ann2rr** + Fixes 'np has no attribute np.int' error raised when running ann2rr. + Version 4.1.1 (April 2023) ----------------------------- diff --git a/pyproject.toml b/pyproject.toml index 2700d95e..406cf72f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "wfdb" -version = "4.1.1" +version = "4.1.2" description = "The WFDB Python package: tools for reading, writing, and processing physiologic signals and annotations." authors = ["The Laboratory for Computational Physiology "] readme = "README.md" diff --git a/wfdb/version.py b/wfdb/version.py index 72aa7583..13ffcf42 100644 --- a/wfdb/version.py +++ b/wfdb/version.py @@ -1 +1 @@ -__version__ = "4.1.1" +__version__ = "4.1.2"