Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"packages/gittensory-mcp": "0.9.0",
"packages/gittensory-engine": "2.0.0",
"packages/gittensory-miner": "1.0.0",
"packages/gittensory-miner": "2.0.0",
"packages/gittensory-ui-kit": "0.2.0"
}
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 16 additions & 0 deletions packages/gittensory-miner/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## [2.0.0](https://github.com/JSONbored/gittensory/compare/miner-v1.0.0...miner-v2.0.0) (2026-07-14)


### ⚠ BREAKING CHANGES

* **cli:** `gittensory-miner`, `gittensory-miner-mcp`, and `gittensory-mcp` no longer exist as installed binaries; use `loopover-miner`, `loopover-miner-mcp`, and `loopover-mcp`. No dual-read/alias, per the epic's full-cutover mandate. A global npm install/link of the old package names must be reinstalled.

### Features

* **cli:** Phase 3 - full-cutover rename CLI binaries to loopover-* ([#5728](https://github.com/JSONbored/gittensory/issues/5728)) ([f2ee2ad](https://github.com/JSONbored/gittensory/commit/f2ee2ad24e0bf01d0a2dfd8f39421bb80aa527b6))


### Fixes

* **miner:** tighten the @loopover/engine dependency to ^2.0.0 ([#5729](https://github.com/JSONbored/gittensory/issues/5729)) ([634e121](https://github.com/JSONbored/gittensory/commit/634e121c7ed360a5e395f425013d32ca9c5d0ed6))

## [1.0.0](https://github.com/JSONbored/gittensory/compare/miner-v0.1.0...miner-v1.0.0) (2026-07-14)


Expand Down
2 changes: 1 addition & 1 deletion packages/gittensory-miner/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@loopover/miner",
"version": "1.0.0",
"version": "2.0.0",
"license": "AGPL-3.0-only",
"type": "module",
"description": "Foundation CLI for the local LoopOver miner runtime.",
Expand Down
4 changes: 2 additions & 2 deletions test/unit/miner-cli.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ describe("loopover-miner CLI helpers", () => {
"../../packages/gittensory-miner/package.json",
{ with: { type: "json" } }
);
expect(packageJson.default.version).toBe("1.0.0");
expect(packageJson.default.version).toBe("2.0.0");
});
});

Expand Down Expand Up @@ -319,7 +319,7 @@ describe("loopover-miner startup update check (#2331)", () => {

it("serves --version without blocking when update checks are disabled", () => {
const output = runCapture(["--version", "--no-update-check"]);
expect(output).toContain("@loopover/miner/1.0.0");
expect(output).toContain("@loopover/miner/2.0.0");
});

it("serves --help immediately without waiting for a slow registry check", async () => {
Expand Down
Loading