Fixes go install for good: go install github.com/i-am-fran/markdown-do/cmd/mdd@latest has never actually worked — release tags were bare (3.2.1, 2026.07.1), which Go's module tooling doesn't recognize as valid versions at all, so @latest always silently resolved to the ancient, mislabeled v1.0.0 tag instead of the real latest release. Fixing this needed two changes together:
- Tags are now
v-prefixed (v3.4.0), which Go requires to recognize a version at all. - The module path is now
github.com/i-am-fran/markdown-do/v3(previously no suffix) — Go separately requires the import path to carry a matching/vNsuffix once the tagged major version reaches 2+, or it rejects the version outright.
go install github.com/i-am-fran/markdown-do/v3/cmd/mdd@latest is the corrected, working install command.