diff --git a/cmd/geth/main.go b/cmd/geth/main.go
index e18b92a2effa5e2055753bbb789cbaa64637c94b..c0953d75e64b8f197bc298ae602b8f4b4090746f 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")