edf2csv 0.2.21 → 0.2.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +19 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,25 @@
|
|
|
3
3
|
Notable changes to edf2csv. Versions follow [semantic versioning](https://semver.org); while the
|
|
4
4
|
major version is 0, a minor bump may contain breaking changes.
|
|
5
5
|
|
|
6
|
+
## 0.2.22
|
|
7
|
+
|
|
8
|
+
### One invariant now covers a whole class of bug
|
|
9
|
+
|
|
10
|
+
A test asserts that what a run *reports* matches what is actually on disk, across every generated
|
|
11
|
+
fixture in three modes: each reported row count against the real file, each `rate_groups` entry
|
|
12
|
+
against the real CSV header and decimal count, and `annotations_written` against `annotations.csv`.
|
|
13
|
+
|
|
14
|
+
Pieces of this have gone wrong before — two rate groups claiming one filename in 0.2.1, annotations
|
|
15
|
+
counted but not written in 0.2.4 — and each was caught only because someone looked at that particular
|
|
16
|
+
file. Checking the agreement directly means the next such disagreement fails the suite instead of
|
|
17
|
+
reaching a release. 96 tests now.
|
|
18
|
+
|
|
19
|
+
### Docs
|
|
20
|
+
|
|
21
|
+
The `--info` reference now states that control bytes in header text are printed as escapes rather
|
|
22
|
+
than sent to the terminal, and that `channels.csv` and `metadata.json` still record the field
|
|
23
|
+
verbatim — the behaviour introduced in 0.2.21.
|
|
24
|
+
|
|
6
25
|
## 0.2.21
|
|
7
26
|
|
|
8
27
|
### Fixed: a recording's header could drive your terminal
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "edf2csv",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.22",
|
|
4
4
|
"description": "Convert EDF, EDF+ and BDF biosignal recordings (European Data Format) to CSV from the command line. Local, streaming, and never resamples or alters units.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"edf",
|