# README
go-utils
Release
-
Update Go version in
go.mod
file. -
Update packages used in the application.
go get -u ./util ./monitoring
- Run go mod tidy, which removes any dependencies the module might have accumulated that are no longer necessary.
go mod tidy
- Run go test ./... a final time to make sure everything is working.
go test ./...
- Tag the project with a new version number using the git tag command.
git add .
git commit -m "util: changes for v0.1.0"
git tag v0.1.0
- Push the new tag to the origin repository.
git push --atomic origin main v0.1.0
- Make the module available by running the go list command to prompt Go to update its index of modules with information about the module you’re publishing.
GOPROXY=proxy.golang.org go list -m github.com/antonputra/[email protected]