From 69d389d3f73296180467c9be7530593996d83f88 Mon Sep 17 00:00:00 2001 From: Mathias Date: Tue, 30 Jun 2026 21:34:18 +0200 Subject: [PATCH] =?UTF-8?q?chore(module):=20rename=20gitea.d-ma.be=20?= =?UTF-8?q?=E2=86=92=20git.d-ma.be=20module=20path?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The host rename broke `go mod download` for consumers: the server serves a go-import meta tag of git.d-ma.be/... which no longer matches the old gitea.d-ma.be/... import path (hyperguild #74). Rename the module path to match. Single leaf package (auth/), no internal self-imports — go.mod + README example only. Tagged v0.2.0; v0.1.0 (old path) left intact for unmigrated consumers. Co-Authored-By: Claude Opus 4.8 (1M context) --- README.md | 4 ++-- go.mod | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index aa05c32..f09b520 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ import ( "net/http" "os" - "gitea.d-ma.be/mathias/mcp-chassis/auth" + "git.d-ma.be/mathias/mcp-chassis/auth" ) func main() { @@ -82,7 +82,7 @@ func mcpHandler() http.Handler { /* per-domain */ return nil } ## Versioning Trunk-based development on `main`. Tagged with semver. Consumers pin -specific tags (`go.mod` `require gitea.d-ma.be/mathias/mcp-chassis v0.x.y`) +specific tags (`go.mod` `require git.d-ma.be/mathias/mcp-chassis v0.x.y`) and bump deliberately. Migrations are documented per-consumer in the consumer's CHANGELOG / commits. diff --git a/go.mod b/go.mod index 64a2c3f..d3744e9 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module gitea.d-ma.be/mathias/mcp-chassis +module git.d-ma.be/mathias/mcp-chassis go 1.26.1