edfcore 0.4.434 → 0.4.435
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 +18 -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.435";
|
|
113
113
|
//# sourceMappingURL=constants.d.ts.map
|
package/dist/constants.js
CHANGED
package/docs/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,24 @@ 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.435
|
|
10
|
+
|
|
11
|
+
- **Added** a check that the announce script cuts one release and that a dry run cuts none.
|
|
12
|
+
`npm run announce` is the last step of every batch and the only command here that writes to
|
|
13
|
+
GitHub. Everything else — the bump, the commit, the tag, the publish — is either reversible or
|
|
14
|
+
gated by `npm run check`. A release is neither: it is public the moment it exists, it notifies
|
|
15
|
+
watchers, and a second one over the same range is not something anyone undoes quietly.
|
|
16
|
+
- Three properties keep that safe and none was checked. Exactly one mutating call, because one
|
|
17
|
+
release per version is precisely what this script replaced and a per-version loop reintroduced by
|
|
18
|
+
someone would look like a fix. A dry run that exits rather than falling through, or the flag
|
|
19
|
+
people use to preview a batch would announce it. And a refusal to announce past a tag with no
|
|
20
|
+
changelog entry, because the notes *are* the changelog entries — a missing one produces a release
|
|
21
|
+
whose body skips a version, in the one artefact a reader trusts to be complete.
|
|
22
|
+
- The title is pinned too: `edfcore <first>–<last>` with an en dash, dropping the range for a
|
|
23
|
+
single version, cut on the newest tag so it points at the code the range ends with. A small thing
|
|
24
|
+
to get wrong and a permanent one, since release titles are what the release list looks like
|
|
25
|
+
forever.
|
|
26
|
+
|
|
9
27
|
## 0.4.434
|
|
10
28
|
|
|
11
29
|
- **Added** a check that asking a source for nothing costs nothing, in every adapter. A zero-length
|
package/package.json
CHANGED
package/src/constants.ts
CHANGED