diff --git a/.travis.yml b/.travis.yml index 69a9516c..7c221fff 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,7 +8,7 @@ go: - "1.13.x" - "1.13.4" install: - - go get golang.org/x/lint/golint + - GO111MODULE=off go get golang.org/x/lint/golint script: - make deploy: diff --git a/CHANGES.md b/CHANGES.md index 500329af..c0f6351d 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -4,7 +4,7 @@ Notable changes between releases. ## Latest -## v0.8.2 +## v0.8.3 * Publish docs to [https://matchbox.psdn.io](https://matchbox.psdn.io/) ([#769](https://github.com/poseidon/matchbox/pull/769)) * Update Go version from v1.11.7 to v1.13.4 ([#766](https://github.com/poseidon/matchbox/pull/766), [#770](https://github.com/poseidon/matchbox/pull/770)) @@ -13,9 +13,12 @@ Notable changes between releases. * Remove Kubernetes provisioning examples ([#759](https://github.com/poseidon/matchbox/pull/759)) * Remove rkt tutorials and docs ([#765](https://github.com/poseidon/matchbox/pull/765)) -## v0.8.1 +## v0.8.1 - v0.8.2 -This release was not built correctly and is skipped. +Releases `v0.8.1` and `v0.8.2` were not built cleanly + +* Release tags and container images have been removed +* Caused by go get golint (module-aware) mutating `go.mod` on Travis (see [#775](https://github.com/poseidon/matchbox/pull/775)) ## v0.8.0 diff --git a/Makefile b/Makefile index 4464084a..47d807a3 100644 --- a/Makefile +++ b/Makefile @@ -16,7 +16,6 @@ all: build test vet lint fmt build: clean bin/matchbox bin/%: - git describe --tags --match=v* --always --dirty --debug @go build -o bin/$* -ldflags $(LD_FLAGS) $(REPO)/cmd/$* .PHONY: test