Parcourir la source

update metaversion to beta.0

fudongbai il y a 5 ans
Parent
commit
2f2778deec
2 fichiers modifiés avec 3 ajouts et 4 suppressions
  1. 1 2
      cmd/faucet/faucet.go
  2. 2 2
      params/version.go

+ 1 - 2
cmd/faucet/faucet.go

@@ -41,9 +41,8 @@ import (
 	"sync"
 	"time"
 
-	"github.com/ethereum/go-ethereum/accounts/abi"
-
 	"github.com/ethereum/go-ethereum/accounts"
+	"github.com/ethereum/go-ethereum/accounts/abi"
 	"github.com/ethereum/go-ethereum/accounts/keystore"
 	"github.com/ethereum/go-ethereum/common"
 	"github.com/ethereum/go-ethereum/core"

+ 2 - 2
params/version.go

@@ -23,8 +23,8 @@ import (
 const (
 	VersionMajor = 1        // Major version component of the current release
 	VersionMinor = 0        // Minor version component of the current release
-	VersionPatch = 0       // Patch version component of the current release
-	VersionMeta  = "alpha.0" // Version metadata to append to the version string
+	VersionPatch = 0        // Patch version component of the current release
+	VersionMeta  = "beta.0" // Version metadata to append to the version string
 )
 
 // Version holds the textual version string.