From d6a97b2e2b123d4316874a62893e3113bfd3177a Mon Sep 17 00:00:00 2001 From: Reagan Lopez Date: Sun, 12 Jan 2020 19:29:10 -0800 Subject: [PATCH] Release 6.1.6 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This release includes transitioning to `go mod` to manage dependencies along with minor enhancements and bug fixes. Changes: - vendor: Use `go mod` to manage dependencies. - Makefile: Remove unused local gopath and set default gopath. - Makefile: Install go linters if it's not present. - MCA: Refactor diff results analysis section to make it easier to handle special case manifest files. - MCA: Add support for bundle tracking file. - swupd: Retain previously deleted file entries when the previous manifest's filelist is longer than the new manifest's list. - repo: Add the option to set a repo’s priority using the `set-priority` repo command. - Detect deprecated bundles when crossing an upstream format bump in a downstream mix. - When packages cannot be resolved during `build bundles`, indicate the unresolved packages in the error message. Signed-off-by: Reagan Lopez --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 62ae8888b..552508532 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ include Makefile.bats .NOTPARALLEL: -VERSION=6.1.4 +VERSION=6.1.6 GO_PACKAGE_PREFIX := github.com/clearlinux/mixer-tools GOPATH ?= ${HOME}/go gopath = $(shell go env GOPATH)