From 20d20d72dcfd7299f474862c6deb3e7fb0819983 Mon Sep 17 00:00:00 2001 From: meows Date: Thu, 13 Jan 2022 11:36:06 -0800 Subject: [PATCH] .github/workflows,params: bump version: v1.12.6-unstable to v1.12.6-stable This version bump fixes the ARM builds that didnt build right on the CI in the latest version (v1.12.5). Date: 2022-01-13 11:36:06-08:00 Signed-off-by: meows --- .github/workflows/release-packages.yml | 2 +- params/version.go | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release-packages.yml b/.github/workflows/release-packages.yml index ee50129ad7..02bb6b8626 100644 --- a/.github/workflows/release-packages.yml +++ b/.github/workflows/release-packages.yml @@ -62,7 +62,7 @@ jobs: echo "arm: This archive filepath is deprecated." echo " It will be removed, and will cease to be present" - echo " as of the etclabscore/core-geth@v1.12.6 release." + echo " as of the etclabscore/core-geth@v1.12.7 release." echo " The \*-arm5\* build should be used instead." GOARM=5 go run build/ci.go install -dlgo -arch arm -cc arm-linux-gnueabi-gcc env BUILD_OS_NAME=arm ./build/archive-signing.sh diff --git a/params/version.go b/params/version.go index b54a6fe3e9..e0bcad76be 100644 --- a/params/version.go +++ b/params/version.go @@ -21,10 +21,10 @@ import ( ) const ( - VersionMajor = 1 // Major version component of the current release - VersionMinor = 12 // Minor version component of the current release - VersionPatch = 6 // Patch version component of the current release - VersionMeta = "unstable" // Version metadata to append to the version string + VersionMajor = 1 // Major version component of the current release + VersionMinor = 12 // Minor version component of the current release + VersionPatch = 6 // Patch version component of the current release + VersionMeta = "stable" // Version metadata to append to the version string VersionName = "CoreGeth" )