edfcore 0.4.293 → 0.4.295
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 +22 -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.295";
|
|
113
113
|
//# sourceMappingURL=constants.d.ts.map
|
package/dist/constants.js
CHANGED
package/docs/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,28 @@ 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.295
|
|
10
|
+
|
|
11
|
+
- **Corrected** the release script's closing message, which 0.4.294 made false one release ago. It
|
|
12
|
+
said "publish.yml is now running and will publish to npm" and offered `npm view edfcore version`
|
|
13
|
+
to confirm — advice from when the script exited before the publish began. It now waits for that
|
|
14
|
+
publish, so by the time those lines print the version is already installable. It says so, and
|
|
15
|
+
gives the install command and the release URL instead of two ways to check something already
|
|
16
|
+
known.
|
|
17
|
+
|
|
18
|
+
## 0.4.294
|
|
19
|
+
|
|
20
|
+
- **Added** the last wait the release was missing: whether the version actually reached npm. The
|
|
21
|
+
CI wait from 0.4.244 asks about the commit; `publish.yml` is a different workflow, triggered by
|
|
22
|
+
the release that was just created, and it runs its own `npm run check` afterwards — so it can
|
|
23
|
+
fail on something the commit's checks passed, and the script had always exited 0 before it
|
|
24
|
+
started. That gap cost 0.4.287 through 0.4.292: six versions tagged, six green CI runs, six
|
|
25
|
+
GitHub releases, and nothing on npm, found only by looking.
|
|
26
|
+
- npm is polled rather than the workflow's status, because the question is whether the version is
|
|
27
|
+
installable. On timeout it says the tag, release and commit are all correct and the publish is
|
|
28
|
+
what did not happen, gives the two commands to see why, and warns that re-running the script
|
|
29
|
+
would cut the next version and leave this one a hole — which is exactly how the six were lost.
|
|
30
|
+
|
|
9
31
|
## 0.4.293
|
|
10
32
|
|
|
11
33
|
- **Moved** the tarball check out of the test suite, which is the only place it could not live.
|
package/package.json
CHANGED
package/src/constants.ts
CHANGED