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.
- package/dist/constants.d.ts +1 -1
- package/dist/constants.js +1 -1
- package/docs/CHANGELOG.md +20 -0
- package/package.json +1 -1
- package/src/constants.ts +1 -1
package/dist/constants.d.ts
CHANGED
|
@@ -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.
|
|
112
|
+
export declare const VERSION = "0.6.35";
|
|
113
113
|
//# sourceMappingURL=constants.d.ts.map
|
package/dist/constants.js
CHANGED
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
package/src/constants.ts
CHANGED