diff options
author | obscuren <geffobscura@gmail.com> | 2014-07-30 07:05:40 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-07-30 07:05:40 +0800 |
commit | 23f83f53ccd71e5aefa9faf93e3527a589d1e487 (patch) | |
tree | 965f1d53713a6731b357d856ab57bdaeb2f298e7 /ethereal/main.go | |
parent | 719b7784f38a8ee6158d4d5a9230a98041f140b1 (diff) | |
download | dexon-23f83f53ccd71e5aefa9faf93e3527a589d1e487.tar.gz dexon-23f83f53ccd71e5aefa9faf93e3527a589d1e487.tar.zst dexon-23f83f53ccd71e5aefa9faf93e3527a589d1e487.zip |
Upped version number
Diffstat (limited to 'ethereal/main.go')
-rw-r--r-- | ethereal/main.go | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/ethereal/main.go b/ethereal/main.go index 0f99be886..04a04536d 100644 --- a/ethereal/main.go +++ b/ethereal/main.go @@ -1,16 +1,17 @@ package main import ( + "os" + "runtime" + "github.com/ethereum/eth-go/ethlog" "github.com/ethereum/go-ethereum/utils" "github.com/go-qml/qml" - "os" - "runtime" ) const ( ClientIdentifier = "Ethereal" - Version = "0.6.0" + Version = "0.6.1" ) func main() { |