@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 +11 -0
- package/dist/core/otlp.js +1 -1
- package/package.json +1 -1
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.
|
|
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