@rightkit/release 0.2.5 → 0.2.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rightkit/release",
3
- "version": "0.2.5",
3
+ "version": "0.2.6",
4
4
  "description": "Portable Right Suite release CLI/SDK: signed installers, updater artifacts, patch/update routing, hardening, R2 publish, and RightApps registration.",
5
5
  "type": "module",
6
6
  "bin": {
package/release.mjs CHANGED
@@ -13,7 +13,7 @@ const VERSION = "0.2.4";
13
13
  const TIERS = new Set(["patch", "update"]);
14
14
  const RIGHTKIT_EXPECTED = new Map([
15
15
  ["@rightkit/license", "^0.1.5"],
16
- ["@rightkit/logs", "^0.1.2"],
16
+ ["@rightkit/logs", "^0.1.3"],
17
17
  ["@rightkit/release", `^${VERSION}`],
18
18
  ]);
19
19
  const FORBIDDEN_RIGHTKIT_SPEC = /^(?:git|file|link|workspace):|github|github\.com/i;
package/release.test.mjs CHANGED
@@ -17,7 +17,7 @@ function fixture({ signed = true, publish = false, packageJson } = {}) {
17
17
  packageJson ?? {
18
18
  name: "fixture",
19
19
  scripts: { "release:patch:win": "right-release --platform win --tier patch" },
20
- dependencies: { "@rightkit/license": "^0.1.5", "@rightkit/logs": "^0.1.2" },
20
+ dependencies: { "@rightkit/license": "^0.1.5", "@rightkit/logs": "^0.1.3" },
21
21
  devDependencies: { "@rightkit/release": "^0.2.4" },
22
22
  },
23
23
  null,