edfcore 0.6.34 → 0.6.35

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.
@@ -109,5 +109,5 @@ export declare const SIGNAL_FIELD_BLOCK_OFFSETS: {
109
109
  readonly reserved: 224;
110
110
  };
111
111
  /** Published package version. Kept in sync with package.json by a test. */
112
- export declare const VERSION = "0.6.34";
112
+ export declare const VERSION = "0.6.35";
113
113
  //# sourceMappingURL=constants.d.ts.map
package/dist/constants.js CHANGED
@@ -79,5 +79,5 @@ export const SIGNAL_FIELD_BLOCK_OFFSETS = {
79
79
  reserved: 224,
80
80
  };
81
81
  /** Published package version. Kept in sync with package.json by a test. */
82
- export const VERSION = '0.6.34';
82
+ export const VERSION = '0.6.35';
83
83
  //# sourceMappingURL=constants.js.map
package/docs/CHANGELOG.md CHANGED
@@ -6,6 +6,26 @@ alone does not tell you whether you were affected.
6
6
  edfcore is pre-1.0. Patch releases have carried behaviour changes where the old behaviour was a
7
7
  defect; those are called out below.
8
8
 
9
+ ## 0.6.35
10
+
11
+ - **Added** the census that closes the class four releases in a row have been fixing. A sample rate
12
+ of `68.96551724137932` in a nine-character column (0.6.23), a signal index of 1000 in three
13
+ (0.6.24), a negative or hundred-hour clock in twelve (0.6.25), an observed range and sample count
14
+ that were not padded at all (0.6.34) — the same mistake in four formatters, each found by looking
15
+ at output rather than by anything failing.
16
+ - `every-column-knows-its-width.test.ts` lists every `padStart` and `padEnd` in `src/` that lays
17
+ out a column, with one of three reasons its width is safe: MEASURED from the rows being printed,
18
+ bounded by the FILE FORMAT (a label is 16 bytes, `kind` is one of two words, a rate is rounded to
19
+ fit), or bounded by an ARGUMENT no test can build.
20
+ - Two are in that last group and are named rather than assumed: the per-code diagnostic count and
21
+ the event count, with the arithmetic written out — seven digits is 9,999,999 of one code, and the
22
+ record count field is eight characters, so a per-record code on the largest file the format can
23
+ describe would need eight. They are not measured because no test can construct the report that
24
+ would show it, and saying so is better than a floor nobody can justify.
25
+ - A new width fails until it says which of the three it is. Zero-padding is excluded by pattern: a
26
+ clock digit spelling itself is not a place in a table.
27
+ - No behaviour changed.
28
+
9
29
  ## 0.6.34
10
30
 
11
31
  - **Fixed** the observed-ranges block in `edfcore validate` falling where the numbers left it. The
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "edfcore",
3
- "version": "0.6.34",
3
+ "version": "0.6.35",
4
4
  "description": "Modern, typed, zero-dependency reader for EDF, EDF+, BDF and BDF+ biosignal files. Works in browsers and Node with true random access.",
5
5
  "keywords": [
6
6
  "edf",
package/src/constants.ts CHANGED
@@ -93,4 +93,4 @@ export const SIGNAL_FIELD_BLOCK_OFFSETS = {
93
93
  } as const;
94
94
 
95
95
  /** Published package version. Kept in sync with package.json by a test. */
96
- export const VERSION = '0.6.34';
96
+ export const VERSION = '0.6.35';