golang/dep is a prototype dependency management tool. Soon to be an official versioning tool. Current status Alpha.
Usage
Get the tool via
$ go get -u github.com/golang/dep/...
Typical usage on a new repo might be
$ dep init
$ dep ensure -update
To update a dependency to a new version, yo...