diff --git a/README.md b/README.md
index 69e375d33f..3e7b596243 100644
--- a/README.md
+++ b/README.md
@@ -3,7 +3,7 @@ Gogs - Go Git Service [![Build Status](https://travis-ci.org/gogits/gogs.svg?bra
 
 ![](https://github.com/gogits/gogs/blob/master/public/img/gogs-large-resize.png?raw=true)
 
-##### Current version: 0.8.22
+##### Current version: 0.8.23
 
 | Web | UI  | Preview  |
 |:-------------:|:-------:|:-------:|
diff --git a/gogs.go b/gogs.go
index 81b28c6bb2..c1f128f810 100644
--- a/gogs.go
+++ b/gogs.go
@@ -17,7 +17,7 @@ import (
 	"github.com/gogits/gogs/modules/setting"
 )
 
-const APP_VER = "0.8.22.0115"
+const APP_VER = "0.8.23.0125"
 
 func init() {
 	runtime.GOMAXPROCS(runtime.NumCPU())
diff --git a/modules/ssh/ssh.go b/modules/ssh/ssh.go
index 41a8706630..4a78d84554 100644
--- a/modules/ssh/ssh.go
+++ b/modules/ssh/ssh.go
@@ -91,7 +91,7 @@ func handleServerConn(keyID string, chans <-chan ssh.NewChannel) {
 						return
 					}
 
-					req.Reply(true, nil);
+					req.Reply(true, nil)
 					go io.Copy(input, ch)
 					io.Copy(ch, stdout)
 					io.Copy(ch.Stderr(), stderr)
diff --git a/public/css/gogs.css b/public/css/gogs.css
index e37d7bdc96..02032e83a7 100755
--- a/public/css/gogs.css
+++ b/public/css/gogs.css
@@ -1490,6 +1490,9 @@ footer .container .links > *:first-child {
   border-radius: 3px;
   box-shadow: inset 0 -1px 0 #bbb;
 }
+.markdown input[type="checkbox"] {
+  vertical-align: middle !important;
+}
 .markdown .csv-data td,
 .markdown .csv-data th {
   padding: 5px;
diff --git a/public/less/_markdown.less b/public/less/_markdown.less
index f12d504f9c..e59f6a591f 100644
--- a/public/less/_markdown.less
+++ b/public/less/_markdown.less
@@ -458,6 +458,10 @@
 		box-shadow:inset 0 -1px 0 #bbb;
 	}
 
+	input[type="checkbox"] {
+		vertical-align: middle !important;
+	}
+
 	.csv-data td,
 	.csv-data th {
 		padding:5px;
diff --git a/templates/.VERSION b/templates/.VERSION
index fbe31ee632..aeb556ae95 100644
--- a/templates/.VERSION
+++ b/templates/.VERSION
@@ -1 +1 @@
-0.8.22.0115
\ No newline at end of file
+0.8.23.0125
\ No newline at end of file