codehydra 2026.6.9 → 2026.6.10

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/codehydra.js +1 -1
  2. package/package.json +1 -1
package/codehydra.js CHANGED
@@ -136,7 +136,7 @@ async function main() {
136
136
  console.log("Done!\n");
137
137
  }
138
138
 
139
- const child = spawn(binaryPath, ["--auto-update=never", ...process.argv.slice(2)], {
139
+ const child = spawn(binaryPath, ["--update.notification=false", ...process.argv.slice(2)], {
140
140
  stdio: "inherit",
141
141
  });
142
142
  child.on("exit", (code) => process.exit(code || 0));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codehydra",
3
- "version": "2026.6.9",
3
+ "version": "2026.6.10",
4
4
  "description": "Multi-workspace IDE for parallel AI agent development",
5
5
  "bin": {
6
6
  "codehydra": "./codehydra.js"