Skip to content

Commit

Permalink
Update version to 0.3.0-stable
Browse files Browse the repository at this point in the history
  • Loading branch information
whitebit-robot committed Jul 19, 2023
1 parent 7d1d9b7 commit 3cd4235
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions params/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 3cd4235

Please sign in to comment.