ft232h icon indicating copy to clipboard operation
ft232h copied to clipboard

Request (low priority): push tag for go module purposes

Open yunginnanet opened this issue 8 months ago • 0 comments
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.

yunginnanet avatar Feb 24 '25 09:02 yunginnanet