edf2csv 0.5.142 → 0.5.144
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 +18 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,24 @@
|
|
|
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.5.144
|
|
7
|
+
|
|
8
|
+
### Fixed: two more things write to stdout than the page allows for
|
|
9
|
+
|
|
10
|
+
getting-started's tour of the output says "Only `--info` and `--json` write to stdout". `--help`
|
|
11
|
+
and `--version` do too, and are the two commands most likely to be run first. The sentence is
|
|
12
|
+
there so a reader knows what a pipe will carry.
|
|
13
|
+
|
|
14
|
+
## 0.5.143
|
|
15
|
+
|
|
16
|
+
### Fixed: --help is not handled before every other check
|
|
17
|
+
|
|
18
|
+
cli-reference said `--help` and `--version` are "handled before any other argument checking".
|
|
19
|
+
They are handled before the *inputs* are looked at, which is what the two examples beside the
|
|
20
|
+
claim show — but an unrecognised flag is caught first, so `edf2csv --help --bogus` exits 2 and
|
|
21
|
+
prints no usage. Someone reaching for `--help` to find out what they got wrong was told it
|
|
22
|
+
would work.
|
|
23
|
+
|
|
6
24
|
## 0.5.142
|
|
7
25
|
|
|
8
26
|
### Fixed: an estimate comment describing a quoting rule the writer does not have
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "edf2csv",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.144",
|
|
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",
|