From c37e35bf9fc4e06a1cd941f446f814b0182948c4 Mon Sep 17 00:00:00 2001 From: Leeren Chang Date: Sun, 18 Aug 2024 00:54:03 -0700 Subject: [PATCH 1/3] version: begin story-geth v0.9.1 unstable release --- params/version.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/params/version.go b/params/version.go index 1af7ec09e4ea..ddfbf5d0cde3 100644 --- a/params/version.go +++ b/params/version.go @@ -21,10 +21,10 @@ import ( ) const ( - VersionMajor = 0 // Major version component of the current release - VersionMinor = 9 // Minor version component of the current release - VersionPatch = 0 // Patch version component of the current release - VersionMeta = "stable" // Version metadata to append to the version string + VersionMajor = 0 // Major version component of the current release + VersionMinor = 9 // Minor version component of the current release + VersionPatch = 1 // Patch version component of the current release + VersionMeta = "unstable" // Version metadata to append to the version string ) // Version holds the textual version string. From 963444e4ba95a881d3be597b7381dcfd811a4416 Mon Sep 17 00:00:00 2001 From: Leeren Chang Date: Sun, 18 Aug 2024 00:54:48 -0700 Subject: [PATCH 2/3] params/verkle: change A --- params/verkle_params.go | 1 + 1 file changed, 1 insertion(+) diff --git a/params/verkle_params.go b/params/verkle_params.go index 93d4f7cd6476..02d6fcdef318 100644 --- a/params/verkle_params.go +++ b/params/verkle_params.go @@ -16,6 +16,7 @@ package params +// Maintenance Release Change // Verkle tree EIP: costs associated to witness accesses var ( WitnessBranchReadCost uint64 = 1900 From c7c474f1b5d81e549f7806fe174011f1e2d2e959 Mon Sep 17 00:00:00 2001 From: Leeren Chang Date: Sun, 18 Aug 2024 00:55:09 -0700 Subject: [PATCH 3/3] version: finalize story-geth v0.9.1 stable release --- params/version.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/params/version.go b/params/version.go index ddfbf5d0cde3..946854de5dc8 100644 --- a/params/version.go +++ b/params/version.go @@ -24,7 +24,7 @@ const ( VersionMajor = 0 // Major version component of the current release VersionMinor = 9 // Minor version component of the current release VersionPatch = 1 // Patch version component of the current release - VersionMeta = "unstable" // Version metadata to append to the version string + VersionMeta = "stable" // Version metadata to append to the version string ) // Version holds the textual version string.