From 25e557a203ff15022e7e01b9a498737b2d643e92 Mon Sep 17 00:00:00 2001 From: Aleksa Sarai Date: Tue, 3 Dec 2019 15:02:21 +1100 Subject: [PATCH] version: update to 1.0.0-rc3 When image-tools was split off from image-spec 1.0.0~rc2, we downgraded the effective version. This caused issues with the Debian package[1], so we need to bump the version to be later than 1.0.0~rc2 to resolve this issue. [1]: https://bugs.debian.org/900900 Signed-off-by: Aleksa Sarai --- version/version.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version/version.go b/version/version.go index 61afd6e..a14dee3 100644 --- a/version/version.go +++ b/version/version.go @@ -25,7 +25,7 @@ const ( VersionPatch = 0 // VersionDev indicates development branch. Releases will be empty string. - VersionDev = "-rc1-dev" + VersionDev = "-rc3" ) // Version is the specification version that the package types support.