edfcore 0.6.7 → 0.6.8
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 +14 -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.8";
|
|
113
113
|
//# sourceMappingURL=constants.d.ts.map
|
package/dist/constants.js
CHANGED
package/docs/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,20 @@ 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.8
|
|
10
|
+
|
|
11
|
+
- **Fixed** `AGENTS.md` quoting the corpus download as ~59 MB. It is ~102 MB, which is what
|
|
12
|
+
`tests/README.md` says on the same subject — so the two pages disagreed by more than the whole
|
|
13
|
+
rest of the corpus put together, and the wrong one was the page an agent reads before deciding
|
|
14
|
+
whether to run the command.
|
|
15
|
+
- 59 MB is what the manifest held before `chb01_01.edf` was added to it. That is how this number
|
|
16
|
+
rots: on exactly the event that makes it matter.
|
|
17
|
+
- `the-corpus-is-the-size-it-says.test.ts` reads the true figure out of `manifest.json`, which
|
|
18
|
+
records `bytes` per entry because `fetch-corpus.mjs` verifies each download against it, and
|
|
19
|
+
requires every `corpus:fetch` line anywhere in the repository to be within a megabyte of the
|
|
20
|
+
total. Megabytes rather than mebibytes, because that is the unit the script prints as it goes.
|
|
21
|
+
A third page quoting a size is checked the moment it is written.
|
|
22
|
+
|
|
9
23
|
## 0.6.7
|
|
10
24
|
|
|
11
25
|
- **Fixed** `edfcore json --patient` reporting one identification field where every other command
|
package/package.json
CHANGED
package/src/constants.ts
CHANGED