Details
Description
Building client master branch with make, does this call to go build:
go build -ldflags "-X main.Version=integration-0.1-219-g93ffd47" -v
version information is extracted like this:
VERSION = $(shell git describe --tags --always --dirty)
However because of how tags are added, the only tag that is present on the master branch is integration-0.1. The release branches 1.0.x were tagged though, but never merged to master. That's why release tags will not be picked up by git describe --tags when building.