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.
@@ -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.7";
112
+ export declare const VERSION = "0.6.8";
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.7';
82
+ export const VERSION = '0.6.8';
83
83
  //# sourceMappingURL=constants.js.map
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "edfcore",
3
- "version": "0.6.7",
3
+ "version": "0.6.8",
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.7';
96
+ export const VERSION = '0.6.8';