aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/geth/main.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-04-18 08:27:50 +0800
committerobscuren <geffobscura@gmail.com>2015-04-18 08:27:50 +0800
commitf1ae3dc4aa8f706d758c4ee40fe6b3968ee18324 (patch)
tree5b96d3f99f9c541abf73a75ce8866cfbb4d2cfc7 /cmd/geth/main.go
parent12e8d9c4dd03e02c507e7174c5a5288e2292a674 (diff)
downloadgo-tangerine-f1ae3dc4aa8f706d758c4ee40fe6b3968ee18324.tar
go-tangerine-f1ae3dc4aa8f706d758c4ee40fe6b3968ee18324.tar.gz
go-tangerine-f1ae3dc4aa8f706d758c4ee40fe6b3968ee18324.tar.bz2
go-tangerine-f1ae3dc4aa8f706d758c4ee40fe6b3968ee18324.tar.lz
go-tangerine-f1ae3dc4aa8f706d758c4ee40fe6b3968ee18324.tar.xz
go-tangerine-f1ae3dc4aa8f706d758c4ee40fe6b3968ee18324.tar.zst
go-tangerine-f1ae3dc4aa8f706d758c4ee40fe6b3968ee18324.zip
geth: bump version number
Diffstat (limited to 'cmd/geth/main.go')
-rw-r--r--cmd/geth/main.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/cmd/geth/main.go b/cmd/geth/main.go
index e18b92a2e..c0953d75e 100644
--- a/cmd/geth/main.go
+++ b/cmd/geth/main.go
@@ -31,6 +31,8 @@ import (
"strconv"
"time"
+ "path"
+
"github.com/codegangsta/cli"
"github.com/ethereum/ethash"
"github.com/ethereum/go-ethereum/accounts"
@@ -42,13 +44,12 @@ import (
"github.com/ethereum/go-ethereum/eth"
"github.com/ethereum/go-ethereum/logger"
"github.com/peterh/liner"
- "path"
)
import _ "net/http/pprof"
const (
ClientIdentifier = "Geth"
- Version = "0.9.9"
+ Version = "0.9.10"
)
var app = utils.NewApp(Version, "the go-ethereum command line interface")