File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
- // Copyright 2024 the libevm authors.
1
+ // Copyright 2024-2025 the libevm authors.
2
2
//
3
3
// The libevm additions to go-ethereum are free software: you can redistribute
4
4
// them and/or modify them under the terms of the GNU Lesser General Public License
@@ -23,8 +23,8 @@ const (
23
23
LibEVMVersionMinor = 1
24
24
LibEVMVersionPatch = 0
25
25
26
- libEVMReleaseType releaseType = betaRelease
27
- libEVMReleaseCandidate uint = 0 // ignored unless [libEVMReleaseType] == [releaseCandidate]
26
+ libEVMReleaseType releaseType = releaseCandidate
27
+ libEVMReleaseCandidate uint = 3 // ignored unless [libEVMReleaseType] == [releaseCandidate]
28
28
)
29
29
30
30
// LibEVMVersion holds the textual version string of `libevm` modifications.
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ func TestLibEVMVersioning(t *testing.T) {
29
29
30
30
// This is a deliberate change-detector test to provide us with a copyable
31
31
// string of the current version, useful for git tagging.
32
- const curr = "1.13.14-0.1.0.beta "
32
+ const curr = "1.13.14-0.1.0.rc.3 "
33
33
if got , want := LibEVMVersion , curr ; got != want {
34
34
t .Errorf ("got LibEVMVersion %q; want %q" , got , want )
35
35
}
You can’t perform that action at this time.
0 commit comments