diff --git a/release.sh b/release.sh
index cadb586d3345fca044e7f906fb7286ca410e66bf..74b5f6445314cae33b31f3feb2a0af634027e3e5 100755
--- a/release.sh
+++ b/release.sh
@@ -22,7 +22,7 @@ check_branch() {
 }
 
 update_version() {
-	sed -i "s/SILKAJ_VERSION = \"silkaj.*\"/SILKAJ_VERSION = \"silkaj $VERSION\"/" silkaj/constants.py
+	sed -i "s/SILKAJ_VERSION = \".*\"/SILKAJ_VERSION = \"$VERSION\"/" silkaj/constants.py
 	sed -i "s/version=\".*\",/version=\"$VERSION\",/" setup.py
 	git diff
 }
diff --git a/silkaj/cli_tools.py b/silkaj/cli_tools.py
index 2351f3403d87a6ec780bab649d444150e773ede8..c97b263f78f63f49722a979ae14951d9c9739267 100644
--- a/silkaj/cli_tools.py
+++ b/silkaj/cli_tools.py
@@ -184,7 +184,7 @@ def about():
         "\
 \n             @@@@@@@@@@@@@\
 \n         @@@     @         @@@\
-\n      @@@   @@       @@@@@@   @@.           ",
+\n      @@@   @@       @@@@@@   @@.            Silkaj",
         SILKAJ_VERSION,
         "\
 \n     @@  @@@       @@@@@@@@@@@  @@,\
diff --git a/silkaj/constants.py b/silkaj/constants.py
index b62aa686d26733f23f693fd447ebd1b01a024b20..5860b6ebfe28ac651099e8902c932ff1db9908ed 100644
--- a/silkaj/constants.py
+++ b/silkaj/constants.py
@@ -1,4 +1,4 @@
-SILKAJ_VERSION = "silkaj 0.6.1"
+SILKAJ_VERSION = "0.6.1"
 NO_MATCHING_ID = "No matching identity"
 G1_SYMBOL = "Ğ1"
 GTEST_SYMBOL = "ĞTest"