edf2csv 0.6.34 → 0.6.36

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.
Files changed (2) hide show
  1. package/docs/CHANGELOG.md +24 -0
  2. package/package.json +1 -1
package/docs/CHANGELOG.md CHANGED
@@ -3,6 +3,30 @@
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.36
7
+
8
+ ### Fixed: `EdfFile.modifiedAtOpenMs` was the last unmentioned member of the class
9
+
10
+ The second of the two 0.6.35 found. It is what `changedSinceOpen()` compares against, so a
11
+ caller reasoning about whether their input moved has the predicate documented and not the value
12
+ under it — and it carries a decision worth stating: it is a raw number rather than a `Date`
13
+ because `new Date(ms).getTime()` truncates to whole milliseconds, which against a filesystem
14
+ that keeps finer precision reported every quiet conversion as one whose input had changed.
15
+
16
+ Every public member of `EdfFile` is now named somewhere on the page.
17
+
18
+ ## 0.6.35
19
+
20
+ ### Fixed: `EdfFile.sha256()` is public API and the reference never mentioned it
21
+
22
+ Twenty-two members on that class and this was one of two the page did not name once. It is the
23
+ method `--checksum` runs, and the one with a rule attached that a caller cannot guess: it hashes
24
+ the bytes that were there when the file was opened, through the descriptor already on them, so
25
+ it has to be called before `close()` and it deliberately does not re-read the path.
26
+
27
+ The test that keeps the reference honest checks the package's top-level exports. `EdfFile` is
28
+ one name; its members are not checked, which is how two of them stayed unwritten.
29
+
6
30
  ## 0.6.34
7
31
 
8
32
  ### Fixed: the `NO_SAMPLES` summary repeated a conflation the warning itself stopped making
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "edf2csv",
3
- "version": "0.6.34",
3
+ "version": "0.6.36",
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",