opencode-pilot 0.24.2 → 0.24.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/.releaserc.cjs CHANGED
@@ -22,7 +22,15 @@ module.exports = {
22
22
  // Publish to npm with provenance
23
23
  ['@semantic-release/npm', { provenance: true }],
24
24
 
25
- // Create GitHub release (creates the tag/tarball)
25
+ // Commit version bump to package.json + package-lock.json back to repo
26
+ // Runs in 'prepare' phase AFTER npm bumps package.json, BEFORE GitHub creates the tag
27
+ // This ensures the GitHub tarball includes the correct version
28
+ ['@semantic-release/git', {
29
+ assets: ['package.json', 'package-lock.json'],
30
+ message: 'chore(release): ${nextRelease.version} [skip ci]'
31
+ }],
32
+
33
+ // Create GitHub release (creates the tag/tarball from the version-bumped commit)
26
34
  '@semantic-release/github',
27
35
 
28
36
  // Update Homebrew formula with new version and SHA (runs after release is created)
package/CONTRIBUTING.md CHANGED
@@ -87,5 +87,6 @@ Releases are automated via [semantic-release](https://github.com/semantic-releas
87
87
  1. Run tests
88
88
  2. Determine the next version from commit messages
89
89
  3. Publish to npm
90
- 4. Create a GitHub release
91
- 5. Update the Homebrew formula
90
+ 4. Commit version bump (`package.json`, `package-lock.json`) back to the repo
91
+ 5. Create a GitHub release
92
+ 6. Update the Homebrew formula
@@ -1,8 +1,8 @@
1
1
  class OpencodePilot < Formula
2
2
  desc "Automation daemon for OpenCode - polls GitHub/Linear issues and spawns sessions"
3
3
  homepage "https://github.com/athal7/opencode-pilot"
4
- url "https://github.com/athal7/opencode-pilot/archive/refs/tags/v0.24.1.tar.gz"
5
- sha256 "ea5cb01e8893bdebc24b7868659355c1762e6672bfc50b2cec775f0431381adb"
4
+ url "https://github.com/athal7/opencode-pilot/archive/refs/tags/v0.24.2.tar.gz"
5
+ sha256 "ffdb6ca6cf6b4d0656df859c91fd287c8a466137e86accfcb2b6d1a056782562"
6
6
  license "MIT"
7
7
 
8
8
  depends_on "node"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-pilot",
3
- "version": "0.24.2",
3
+ "version": "0.24.3",
4
4
  "type": "module",
5
5
  "main": "plugin/index.js",
6
6
  "description": "Automation daemon for OpenCode - polls for work and spawns sessions",
@@ -31,6 +31,7 @@
31
31
  },
32
32
  "devDependencies": {
33
33
  "@semantic-release/exec": "^7.1.0",
34
+ "@semantic-release/git": "^10.0.1",
34
35
  "@semantic-release/github": "^9.2.6",
35
36
  "@semantic-release/npm": "^13.1.0",
36
37
  "semantic-release": "^25.0.2"