edf2csv 0.6.39 → 0.6.41
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/docs/CHANGELOG.md +21 -0
- package/package.json +1 -1
package/docs/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,27 @@
|
|
|
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.6.41
|
|
7
|
+
|
|
8
|
+
### Fixed: the errno table left out `EPIPE`, the one a shell pipeline produces
|
|
9
|
+
|
|
10
|
+
`writeHint` turns eleven errnos into sentences and the table on the page reproduces ten. The
|
|
11
|
+
missing one is the only one an ordinary command reaches without anything being wrong with the
|
|
12
|
+
destination: a reader closing the pipe. It has its own written sentence in the source —
|
|
13
|
+
"Whatever was reading the output closed it before the conversion finished" — which nothing on
|
|
14
|
+
the site showed.
|
|
15
|
+
|
|
16
|
+
## 0.6.40
|
|
17
|
+
|
|
18
|
+
### Fixed: `CALLBACK_FAILED` had no section — the last of the four
|
|
19
|
+
|
|
20
|
+
Fourth and last undocumented `ConversionErrorCode`. It is the only one the command line cannot
|
|
21
|
+
produce, which is presumably how it stayed unwritten: it reaches a library caller and nobody
|
|
22
|
+
else. That also makes it the one whose reader has no terminal transcript to compare against, so
|
|
23
|
+
the page was the only place it could have been explained.
|
|
24
|
+
|
|
25
|
+
Every code in `DiagnosticCode`, `EdfErrorCode` and `ConversionErrorCode` now has a section.
|
|
26
|
+
|
|
6
27
|
## 0.6.39
|
|
7
28
|
|
|
8
29
|
### Fixed: `UNSUPPORTED_REQUEST` had no section, and it is the one that exits 2
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "edf2csv",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.41",
|
|
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",
|