From 3cd42354d5b4317120c9fb934ded05b7baf9149a Mon Sep 17 00:00:00 2001 From: whitebit-robot Date: Wed, 19 Jul 2023 13:03:36 +0200 Subject: [PATCH] Update version to 0.3.0-stable --- README.md | 2 +- params/version.go | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index e7a00ff3aaf1..4ce3c1d2296d 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ Open a terminal or command prompt, then enter: docker run --rm -it \ --name wbt -v /Users/alice/wbt:/root \ -p 8545:8545 -p 30303:30303 \ - whitebit/wbt:0.2.0 --wbt-testnet + whitebit/wbt:0.3.0 --wbt-testnet ``` This will start `geth` in snap-sync mode with a DB memory allowance of 1GB just as the diff --git a/params/version.go b/params/version.go index 3213376d0cdf..548f3726f01f 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 = 3 // Minor version component of the current release - VersionPatch = 0 // Patch version component of the current release - VersionMeta = "unstable" // Version metadata to append to the version string + 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 + VersionMeta = "stable" // Version metadata to append to the version string ) // Version holds the textual version string.