From 1cad16d7df52fcebe4dba2bf8955fc8b750ac749 Mon Sep 17 00:00:00 2001 From: iceming123 <> Date: Tue, 10 Jan 2023 18:05:22 +0800 Subject: [PATCH] update version to 3.0.3 --- Dockerfile | 2 +- params/version.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index d1d67716..022d63f3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Build Geth in a stock Go builder container -FROM golang:1.15-alpine as construction +FROM golang:1.17-alpine as construction RUN apk add --no-cache make gcc musl-dev linux-headers diff --git a/params/version.go b/params/version.go index 1a8469c0..6270c437 100644 --- a/params/version.go +++ b/params/version.go @@ -23,7 +23,7 @@ import ( const ( VersionMajor = 3 // Major version component of the current release VersionMinor = 0 // Minor version component of the current release - VersionPatch = 2 // Patch version component of the current release + VersionPatch = 3 // Patch version component of the current release VersionMeta = "stable" // Version metadata to append to the version string )