@qorejs/qore 0.9.0 → 1.0.0-rc.1

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +3 -1
package/README.md CHANGED
@@ -579,7 +579,7 @@ Because the package already includes the correct `repository` field in `package.
579
579
 
580
580
  ## Release Checklist
581
581
 
582
- The canonical release checklist lives in [`RELEASE.md`](./RELEASE.md).
582
+ The canonical release checklist lives in [`RELEASE.md`](./RELEASE.md). You can generate the current version's GitHub release body with `npm run release:notes`.
583
583
 
584
584
  For every release candidate or stable release, the minimum local gate is:
585
585
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qorejs/qore",
3
- "version": "0.9.0",
3
+ "version": "1.0.0-rc.1",
4
4
  "description": "Qore is a streaming-response framework where stream becomes signal.",
5
5
  "type": "module",
6
6
  "main": "./dist/src/index.js",
@@ -22,9 +22,11 @@
22
22
  "build": "node ./scripts/build.mjs",
23
23
  "browsers:install": "playwright install chromium",
24
24
  "typecheck": "node ./scripts/typecheck.mjs",
25
+ "check:release-version": "node ./scripts/check-release-version.mjs",
25
26
  "check:dist": "node ./scripts/check-dist-sync.mjs",
26
27
  "check:api-surface": "node ./scripts/check-public-api.mjs",
27
28
  "check:release-docs": "node ./scripts/check-release-docs.mjs",
29
+ "release:notes": "node ./scripts/release-notes.mjs",
28
30
  "test:browser": "node ./scripts/browser-smoke.mjs",
29
31
  "test:benchmark": "node ./scripts/benchmark-gate.mjs",
30
32
  "smoke:package-types": "node ./scripts/package-type-smoke.mjs",