edf2csv 0.6.38 → 0.6.40
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 +22 -0
- package/package.json +1 -1
package/docs/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,28 @@
|
|
|
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.40
|
|
7
|
+
|
|
8
|
+
### Fixed: `CALLBACK_FAILED` had no section — the last of the four
|
|
9
|
+
|
|
10
|
+
Fourth and last undocumented `ConversionErrorCode`. It is the only one the command line cannot
|
|
11
|
+
produce, which is presumably how it stayed unwritten: it reaches a library caller and nobody
|
|
12
|
+
else. That also makes it the one whose reader has no terminal transcript to compare against, so
|
|
13
|
+
the page was the only place it could have been explained.
|
|
14
|
+
|
|
15
|
+
Every code in `DiagnosticCode`, `EdfErrorCode` and `ConversionErrorCode` now has a section.
|
|
16
|
+
|
|
17
|
+
## 0.6.39
|
|
18
|
+
|
|
19
|
+
### Fixed: `UNSUPPORTED_REQUEST` had no section, and it is the one that exits 2
|
|
20
|
+
|
|
21
|
+
Third of the four. It is the only `ConversionErrorCode` in `USAGE_ERROR_CODES`, so it is the
|
|
22
|
+
only one where the code a script sees is 2 rather than 1 — a distinction the page's own exit-code
|
|
23
|
+
table draws and this code's absence made unverifiable from the page.
|
|
24
|
+
|
|
25
|
+
Placed at the head of the usage-error section rather than with the other conversion errors,
|
|
26
|
+
since that is where its exit code puts it.
|
|
27
|
+
|
|
6
28
|
## 0.6.38
|
|
7
29
|
|
|
8
30
|
### Fixed: `INPUT_UNREADABLE` had no section, and is the one that leaves output behind
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "edf2csv",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.40",
|
|
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",
|