edf2csv 0.6.51 → 0.6.53
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 +27 -0
- package/package.json +1 -1
package/docs/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,33 @@
|
|
|
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.53
|
|
7
|
+
|
|
8
|
+
### Changed: the API guard checks class members, not just class names
|
|
9
|
+
|
|
10
|
+
`EdfFile` is one name in the package's exports, so the test asserting api.md documents every
|
|
11
|
+
export was satisfied by the word "EdfFile" appearing once — while two of its twenty-two public
|
|
12
|
+
members went unwritten until 0.6.35 and 0.6.36 found them by hand.
|
|
13
|
+
|
|
14
|
+
The check now walks the prototype of every exported class and requires each member to appear on
|
|
15
|
+
the page. Read off the shipped object rather than the declarations, so it follows what consumers
|
|
16
|
+
actually get. Extended in place rather than added as a new test, since the suite's size is pinned
|
|
17
|
+
on the correctness page and this is the same claim the existing one was making.
|
|
18
|
+
|
|
19
|
+
## 0.6.52
|
|
20
|
+
|
|
21
|
+
### Changed: the long-layout guard learns the wordings that got past it
|
|
22
|
+
|
|
23
|
+
Three findings in this line — 0.6.26, 0.6.51 and one beside 0.6.45 — were passages telling a
|
|
24
|
+
reader a mixed-rate recording becomes several files without mentioning the layout that does not.
|
|
25
|
+
There is a test for exactly that, and all three walked past it, because it matches four fixed
|
|
26
|
+
phrases and each passage used a fifth: "several output files" against its "several signals
|
|
27
|
+
files", "produce exactly one" against its "more than one table".
|
|
28
|
+
|
|
29
|
+
The four wordings it missed are added, along with `recipes.md`, which was not in the page list at
|
|
30
|
+
all despite carrying two of the passages. A phrase list cannot be complete; it can at least
|
|
31
|
+
accumulate the misses instead of forgetting them.
|
|
32
|
+
|
|
6
33
|
## 0.6.51
|
|
7
34
|
|
|
8
35
|
### Fixed: the `--stdout` recipe offered one of the three fixes the refusal names
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "edf2csv",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.53",
|
|
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",
|