edf2csv 0.6.45 → 0.6.47
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 +28 -0
- package/package.json +1 -1
package/docs/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,34 @@
|
|
|
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.47
|
|
7
|
+
|
|
8
|
+
### Fixed: `INPUT_CHANGED` missing from the list of warnings `--info` cannot raise
|
|
9
|
+
|
|
10
|
+
It is raised in exactly two places, both inside `convert()`, and `--info` reaches neither. The
|
|
11
|
+
page lists four things a conversion can report that `--info` cannot and this was a fifth.
|
|
12
|
+
|
|
13
|
+
The guard behind that list cannot catch it. It converts every fixture, compares the codes
|
|
14
|
+
against `--info`'s, and requires any difference to be named on the page — and `INPUT_CHANGED`
|
|
15
|
+
fires only when a file moves mid-conversion, which a static fixture never does. So the sweep sees
|
|
16
|
+
the code on neither side and has nothing to compare. Same shape as 0.6.25, where the code was
|
|
17
|
+
missing a section: guards that compare observed behaviour are blind to what never happens in the
|
|
18
|
+
fixture set.
|
|
19
|
+
|
|
20
|
+
## 0.6.46
|
|
21
|
+
|
|
22
|
+
### Fixed: `--info --json` had no field reference, and was described as "the same fields"
|
|
23
|
+
|
|
24
|
+
The conversion summary gets a sample document and a field-by-field table. Its sibling got one
|
|
25
|
+
sentence — "the recording's description as JSON instead of the table — the same fields, shaped
|
|
26
|
+
for surveying" — and the two documents in fact share two field names out of eighteen. Three of
|
|
27
|
+
its fields are mentioned anywhere on the site; the other fifteen, including everything a survey
|
|
28
|
+
script would actually read, appear in no page in any form.
|
|
29
|
+
|
|
30
|
+
Larger than a release in this line usually is, because a missing field reference cannot be
|
|
31
|
+
fixed in two lines. The sentence claiming the documents match is corrected in the same change,
|
|
32
|
+
since it is what made the absence look deliberate.
|
|
33
|
+
|
|
6
34
|
## 0.6.45
|
|
7
35
|
|
|
8
36
|
### Fixed: the warnings page's usage table omitted every `--stdout` refusal
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "edf2csv",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.47",
|
|
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",
|