@kevinrabun/judges 3.7.2 → 3.7.3

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/CHANGELOG.md CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  All notable changes to **@kevinrabun/judges** are documented here.
4
4
 
5
+ ## [3.7.3] — 2026-03-01
6
+
7
+ ### Fixed
8
+ - Fixed CI workflow race condition: extension install failed because `@kevinrabun/judges@^3.7.2` wasn't propagated on npm yet.
9
+ - Workflow now uses local tarball (`npm pack`) for the extension build instead of relying on npm registry propagation.
10
+ - Removed dependency version sync from the extension publish step; `^3.7.1` semver range covers all 3.x patches.
11
+
5
12
  ## [3.7.2] — 2026-03-01
6
13
 
7
14
  ### Fixed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kevinrabun/judges",
3
- "version": "3.7.2",
3
+ "version": "3.7.3",
4
4
  "description": "35 specialized judges that evaluate AI-generated code for security, cost, and quality.",
5
5
  "mcpName": "io.github.KevinRabun/judges",
6
6
  "type": "module",
package/server.json CHANGED
@@ -7,12 +7,12 @@
7
7
  "url": "https://github.com/kevinrabun/judges",
8
8
  "source": "github"
9
9
  },
10
- "version": "3.7.2",
10
+ "version": "3.7.3",
11
11
  "packages": [
12
12
  {
13
13
  "registryType": "npm",
14
14
  "identifier": "@kevinrabun/judges",
15
- "version": "3.7.2",
15
+ "version": "3.7.3",
16
16
  "transport": {
17
17
  "type": "stdio"
18
18
  }