@pinta-ai/pinta-copilot 0.1.0 → 0.2.0

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,17 @@
2
2
 
3
3
  All notable changes to pinta-copilot are documented here.
4
4
 
5
+ ## [0.2.0] - 2026-06-16
6
+
7
+ ### Changed
8
+
9
+ - **GitHub org migration** `awarecorp` → `pinta-ai`. Repository/homepage/bugs
10
+ URLs in `package.json` and the git remotes now point at
11
+ `github.com/pinta-ai/pinta-copilot`; `repository.url` normalized to the
12
+ `git+https://` form.
13
+ - Version bumped to `0.2.0` across `package.json`, `package-lock.json`, and
14
+ the `SDK_VERSION` constant in `src/core/otlp.ts` (telemetry SDK version).
15
+
5
16
  ## [0.1.0] - 2026-06-09
6
17
 
7
18
  Initial release. Forked from `pinta-cc` (Claude Code adapter); core layer
package/dist/core/otlp.js CHANGED
@@ -11,7 +11,7 @@ const crypto_1 = __importDefault(require("crypto"));
11
11
  const os_1 = __importDefault(require("os"));
12
12
  const redact_js_1 = require("./redact.js");
13
13
  const types_js_1 = require("./types.js");
14
- const SDK_VERSION = "0.1.0"; // keep in sync with package.json
14
+ const SDK_VERSION = "0.2.0"; // keep in sync with package.json
15
15
  /**
16
16
  * Copilot CLI/ext version isn't reliably discoverable from the hook process
17
17
  * env. Read an optional `COPILOT_CLI_VERSION` override, else "unknown" — a
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pinta-ai/pinta-copilot",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "description": "Generic OTLP forwarder + guard for GitHub Copilot hook events (CLI + VS Code extension)",
5
5
  "main": "dist/index.js",
6
6
  "license": "PolyForm-Noncommercial-1.0.0",