edfcore 0.4.193 → 0.4.195
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 +29 -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.4.
|
|
112
|
+
export declare const VERSION = "0.4.195";
|
|
113
113
|
//# sourceMappingURL=constants.d.ts.map
|
package/dist/constants.js
CHANGED
package/docs/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,22 @@ 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.4.195
|
|
10
|
+
|
|
11
|
+
- **Recorded** why `v0.1.1` has no tag, the last unexplained hole in the version history. It is not
|
|
12
|
+
a consumed number like 0.2.29: it shipped to npm and is installable. It predates
|
|
13
|
+
`scripts/release.mjs` by hours — the bump rode inside an ordinary commit, the publish was done by
|
|
14
|
+
hand, and 0.1.2 fifty minutes later was the first release the script cut. Every other version in
|
|
15
|
+
this file is either tagged or says it was never released.
|
|
16
|
+
|
|
17
|
+
## 0.4.194
|
|
18
|
+
|
|
19
|
+
- **Added** the missing `0.2.29` entry. Four numbers have been consumed by a release that failed
|
|
20
|
+
after bumping, and three say so in this file. 0.2.29 said nothing — while the 0.2.36 entry cites
|
|
21
|
+
it as the precedent for its own, and `scripts/release.mjs` tells the next person to record a skip
|
|
22
|
+
"the way 0.2.29, 0.2.36 and 0.2.59 are". Both pointed at the one that was not. Reconstructed from
|
|
23
|
+
7ea90ff, which carries the 0.2.28 → 0.2.29 bump alongside the lint fix that run died on.
|
|
24
|
+
|
|
9
25
|
## 0.4.193
|
|
10
26
|
|
|
11
27
|
- **Added** the guard for 0.4.191 and 0.4.192: both corpus sizes in `tests/README.md` are now
|
|
@@ -4146,6 +4162,14 @@ against the published 0.2.27 tarball rather than assumed.
|
|
|
4146
4162
|
refusal for a file whose records really do exist and really are too big, so the guard is still
|
|
4147
4163
|
covered.
|
|
4148
4164
|
|
|
4165
|
+
## 0.2.29
|
|
4166
|
+
|
|
4167
|
+
Never released. The release run failed `npm run check` on two unused imports in
|
|
4168
|
+
`tests/io/hardening.test.ts` after bumping the version, which consumed the number before a tag was
|
|
4169
|
+
cut; the scan-buffer fix it was carrying shipped as 0.2.30 instead. Written down in 0.4.194 — it was
|
|
4170
|
+
the only consumed number with no entry of its own, while `0.2.36` above and the guidance in
|
|
4171
|
+
`scripts/release.mjs` both name it as one of the recorded ones.
|
|
4172
|
+
|
|
4149
4173
|
## 0.2.28
|
|
4150
4174
|
|
|
4151
4175
|
- **Fixed** `readAnnotations` answering on the header's axis for any record range that does not
|
|
@@ -4574,6 +4598,11 @@ feature is a minor under semver, and nineteen patch bumps read as nineteen bug f
|
|
|
4574
4598
|
`toPhysical` call. The type stops you reading the gain; it does not gate the call.
|
|
4575
4599
|
- **Fixed** three README links that 404ed on npmjs.com.
|
|
4576
4600
|
|
|
4601
|
+
Published by hand and never tagged, which is why `v0.1.1` is absent while every version around it
|
|
4602
|
+
has a tag. The bump rode inside a34ffd0 rather than a `Release v0.1.1` commit, and the package went
|
|
4603
|
+
to npm at 03:55 on 2026-08-03. `scripts/release.mjs` was added the same day, and 0.1.2 went out
|
|
4604
|
+
fifty minutes later as the first release it cut. This is the last version published without it.
|
|
4605
|
+
|
|
4577
4606
|
## 0.1.0
|
|
4578
4607
|
|
|
4579
4608
|
First release. Reads EDF, EDF+, BDF and BDF+ with real random access.
|
package/package.json
CHANGED
package/src/constants.ts
CHANGED