Categorygithub.com/antonputra/go-utils
repository
0.1.5
Repository: https://github.com/antonputra/go-utils.git
Documentation: pkg.go.dev

# Packages

No description provided by the author
No description provided by the author

# README

go-utils

Release

  1. Update Go version in go.mod file.

  2. Update packages used in the application.

go get -u ./util ./monitoring
  1. Run go mod tidy, which removes any dependencies the module might have accumulated that are no longer necessary.
go mod tidy
  1. Run go test ./... a final time to make sure everything is working.
go test ./...
  1. 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
  1. Push the new tag to the origin repository.
git push --atomic origin main v0.1.0
  1. 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]