Skip to content

fix: correct module path casing to github.com/TGPSKI/leather (prepare v0.4.1)#48

Merged
TGPSKI merged 1 commit into
mainfrom
fix/module-path-casing
Jul 5, 2026
Merged

fix: correct module path casing to github.com/TGPSKI/leather (prepare v0.4.1)#48
TGPSKI merged 1 commit into
mainfrom
fix/module-path-casing

Conversation

@TGPSKI

@TGPSKI TGPSKI commented Jul 5, 2026

Copy link
Copy Markdown
Owner

Problem

go install github.com/TGPSKI/[email protected] fails:

module declares its path as: github.com/tgpski/leather
        but was required as: github.com/TGPSKI/leather

go.mod declared the module path in lowercase, but the canonical repo is TGPSKI/leather. Go module paths are case-sensitive, so the install is rejected on a path mismatch.

Fix

Rename the module path and all 90 Go imports (plus .golangci.yml depguard rule, docs, and CHANGELOG links) from github.com/tgpski/leathergithub.com/TGPSKI/leather. go build ./... passes.

Release

Prepares v0.4.1. Note: v0.4.0 is immutable in the Go proxy, so the install fix only takes effect once v0.4.1 is tagged.

The go.mod declared the module path in lowercase (tgpski/leather),
but the canonical GitHub repo is TGPSKI/leather. Go module paths are
case-sensitive, so 'go install github.com/TGPSKI/leather@...' failed
with a version constraints conflict. Rename the module path and all
imports to match the repo casing.
@TGPSKI
TGPSKI merged commit a9cffc5 into main Jul 5, 2026
2 checks passed
@TGPSKI
TGPSKI deleted the fix/module-path-casing branch July 5, 2026 08:35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant