@diggerhq/catty 0.2.32 → 0.2.36

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": "@diggerhq/catty",
3
- "version": "0.2.32",
3
+ "version": "0.2.36",
4
4
  "description": "Run Claude Code sessions remotely",
5
5
  "keywords": [
6
6
  "ai",
@@ -7,7 +7,7 @@ const { execSync } = require('child_process');
7
7
 
8
8
  const packageJson = require('../package.json');
9
9
  const VERSION = process.env.CATTY_VERSION || packageJson.version;
10
- const GITHUB_REPO = 'diggerhq/catty';
10
+ const GITHUB_REPO = 'diggerhq/catty-releases';
11
11
 
12
12
  function getPlatform() {
13
13
  const platform = process.platform;
@@ -38,8 +38,8 @@ console.log(`\nReleasing v${version}...\n`);
38
38
  // 3. Build binaries (pass version to Makefile)
39
39
  run(`make release VERSION=${version}`);
40
40
 
41
- // 4. Create GitHub release
42
- run(`gh release create v${version} dist/* --title "v${version}" --notes "Release v${version}"`);
41
+ // 4. Create GitHub release (in catty-releases repo)
42
+ run(`gh release create v${version} dist/* --repo diggerhq/catty-releases --title "v${version}" --notes "Release v${version}"`);
43
43
 
44
44
  // 5. Publish to npm
45
45
  run('npm publish --access public', npmDir);