From 2543e974ee95654c34c5c9fe9d20223d455ba548 Mon Sep 17 00:00:00 2001 From: Arpit Temani Date: Tue, 15 Nov 2022 14:44:51 +0530 Subject: [PATCH] change version --- params/version.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/params/version.go b/params/version.go index 83e04a66f8..abb840e986 100644 --- a/params/version.go +++ b/params/version.go @@ -23,7 +23,7 @@ import ( const ( VersionMajor = 0 // Major version component of the current release VersionMinor = 3 // Minor version component of the current release - VersionPatch = 0 // Patch version component of the current release + VersionPatch = 1 // Patch version component of the current release VersionMeta = "beta" // Version metadata to append to the version string ) @@ -43,7 +43,8 @@ var VersionWithMeta = func() string { // ArchiveVersion holds the textual version string used for Geth archives. // e.g. "1.8.11-dea1ce05" for stable releases, or -// "1.8.13-unstable-21c059b6" for unstable releases +// +// "1.8.13-unstable-21c059b6" for unstable releases func ArchiveVersion(gitCommit string) string { vsn := Version if VersionMeta != "stable" {