edf2csv 0.6.37 → 0.6.39
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 +25 -0
- package/package.json +1 -1
package/docs/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,31 @@
|
|
|
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.39
|
|
7
|
+
|
|
8
|
+
### Fixed: `UNSUPPORTED_REQUEST` had no section, and it is the one that exits 2
|
|
9
|
+
|
|
10
|
+
Third of the four. It is the only `ConversionErrorCode` in `USAGE_ERROR_CODES`, so it is the
|
|
11
|
+
only one where the code a script sees is 2 rather than 1 — a distinction the page's own exit-code
|
|
12
|
+
table draws and this code's absence made unverifiable from the page.
|
|
13
|
+
|
|
14
|
+
Placed at the head of the usage-error section rather than with the other conversion errors,
|
|
15
|
+
since that is where its exit code puts it.
|
|
16
|
+
|
|
17
|
+
## 0.6.38
|
|
18
|
+
|
|
19
|
+
### Fixed: `INPUT_UNREADABLE` had no section, and is the one that leaves output behind
|
|
20
|
+
|
|
21
|
+
Second of the four undocumented `ConversionErrorCode` values. It is not a duplicate of
|
|
22
|
+
`UNREADABLE`: that one fails before anything is written, this one fails during the streaming
|
|
23
|
+
pass, so the difference between them is whether there is a half-finished directory on disk. The
|
|
24
|
+
code separates them for exactly that reason — a read failure used to be reported as
|
|
25
|
+
`Writing to "<dir>" failed` with advice about disk space, pointing at the part of the system
|
|
26
|
+
that was working.
|
|
27
|
+
|
|
28
|
+
The page had the distinction nowhere, so a reader hitting the second met a message whose code
|
|
29
|
+
they could not look up.
|
|
30
|
+
|
|
6
31
|
## 0.6.37
|
|
7
32
|
|
|
8
33
|
### Fixed: `INPUT_OUTPUT_COLLISION` had no section on the errors page
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "edf2csv",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.39",
|
|
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",
|