Skip to content

Commit f8eba9e

Browse files
committed
chore: set version to v1.13.14-0.1.0.rc.3
1 parent a3ed790 commit f8eba9e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

params/version.libevm.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2024 the libevm authors.
1+
// Copyright 2024-2025 the libevm authors.
22
//
33
// The libevm additions to go-ethereum are free software: you can redistribute
44
// them and/or modify them under the terms of the GNU Lesser General Public License
@@ -23,8 +23,8 @@ const (
2323
LibEVMVersionMinor = 1
2424
LibEVMVersionPatch = 0
2525

26-
libEVMReleaseType releaseType = betaRelease
27-
libEVMReleaseCandidate uint = 0 // ignored unless [libEVMReleaseType] == [releaseCandidate]
26+
libEVMReleaseType releaseType = releaseCandidate
27+
libEVMReleaseCandidate uint = 3 // ignored unless [libEVMReleaseType] == [releaseCandidate]
2828
)
2929

3030
// LibEVMVersion holds the textual version string of `libevm` modifications.

params/version.libevm_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ func TestLibEVMVersioning(t *testing.T) {
2929

3030
// This is a deliberate change-detector test to provide us with a copyable
3131
// 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"
3333
if got, want := LibEVMVersion, curr; got != want {
3434
t.Errorf("got LibEVMVersion %q; want %q", got, want)
3535
}

0 commit comments

Comments
 (0)