mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-18 19:00:46 +00:00
chore: bump libevm minor version to 0.3.0 (#192)
## Why this should be merged Addition of recent, functionality constitutes a bump to the minor version. Doing this on `main` first for consistency and will cut a release candidate after. ## How this works Magic ## How this was tested Super magic
This commit is contained in:
parent
9b97d60230
commit
263186c08f
1 changed files with 3 additions and 3 deletions
|
|
@ -18,11 +18,11 @@ package params
|
||||||
|
|
||||||
const (
|
const (
|
||||||
LibEVMVersionMajor = 0
|
LibEVMVersionMajor = 0
|
||||||
LibEVMVersionMinor = 2
|
LibEVMVersionMinor = 3
|
||||||
LibEVMVersionPatch = 0
|
LibEVMVersionPatch = 0
|
||||||
|
|
||||||
LibEVMReleaseType ReleaseType = BetaRelease
|
LibEVMReleaseType ReleaseType = BetaRelease
|
||||||
libEVMReleaseCandidate uint = 3 // ignored unless [LibEVMReleaseType] == [ReleaseCandidate]
|
libEVMReleaseCandidate uint = 0 // ignored unless [LibEVMReleaseType] == [ReleaseCandidate]
|
||||||
)
|
)
|
||||||
|
|
||||||
// LibEVMVersion holds the textual version string of `libevm` modifications.
|
// LibEVMVersion holds the textual version string of `libevm` modifications.
|
||||||
|
|
@ -48,7 +48,7 @@ const (
|
||||||
// triplet.
|
// triplet.
|
||||||
//
|
//
|
||||||
// [semver v2]: https://semver.org/
|
// [semver v2]: https://semver.org/
|
||||||
const LibEVMVersion = "1.13.14-0.2.0.beta"
|
const LibEVMVersion = "1.13.14-0.3.0.beta"
|
||||||
|
|
||||||
// A ReleaseType is a suffix for [LibEVMVersion].
|
// A ReleaseType is a suffix for [LibEVMVersion].
|
||||||
type ReleaseType string
|
type ReleaseType string
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue