ft232h
ft232h copied to clipboard
Request (low priority): push tag for go module purposes
trafficstars
Proposal
export semver= # your call, v0.0.2 maybe?
git tag "$semver"
git push origin "$semver"
Purpose
this allows for clean upgrades to the go module, e.g:
require (
github.com/ardnew/ft232h v0.0.2
)
or
go get -u github.com/ardnew/[email protected]
The go get and go mod tidy tools when used in the default GOENV access modules via a proxy. This causes many headaches over time without tags.