]> source.dussan.org Git - gitea.git/commitdiff
use new Redis client
authorUnknwon <joe2010xtmf@163.com>
Fri, 2 Jan 2015 18:54:22 +0000 (02:54 +0800)
committerUnknwon <joe2010xtmf@163.com>
Fri, 2 Jan 2015 18:54:22 +0000 (02:54 +0800)
.gopmfile
cmd/web.go
gogs.go
templates/.VERSION

index 02c80cb0c3bab59d26a2cf5c44c5b45b0cc13f45..dcdcd1c0a9d43377e6859151c19496c460552f14 100644 (file)
--- a/.gopmfile
+++ b/.gopmfile
@@ -3,7 +3,6 @@ path = github.com/gogits/gogs
 
 [deps]
 github.com/beego/memcache = commit:2aea774416
-github.com/beego/redigo = commit:856744a0d5
 github.com/Unknwon/cae = commit:2e70a1351b
 github.com/Unknwon/com = 
 github.com/Unknwon/i18n = 
@@ -28,6 +27,7 @@ github.com/nfnt/resize = commit:581d15cb53
 github.com/russross/blackfriday = commit:05b8cefd6a
 github.com/saintfish/chardet = commit:3af4cd4741
 gopkg.in/ini.v1 = 
+gopkg.in/redis.v2 = 
 
 [res]
 include = conf|etc|public|scripts|templates
index b579ab08e824bff8e1092084b07f0f9a769a29dd..e0c899d37f0597a15ca88fc409f437ec257cc4e7 100644 (file)
@@ -77,10 +77,10 @@ func checkVersion() {
        checkers := []VerChecker{
                {"github.com/Unknwon/macaron", macaron.Version, "0.4.9"},
                {"github.com/macaron-contrib/binding", binding.Version, "0.0.4"},
-               {"github.com/macaron-contrib/cache", cache.Version, "0.0.2"},
+               {"github.com/macaron-contrib/cache", cache.Version, "0.0.3"},
                {"github.com/macaron-contrib/csrf", csrf.Version, "0.0.1"},
                {"github.com/macaron-contrib/i18n", i18n.Version, "0.0.5"},
-               {"github.com/macaron-contrib/session", session.Version, "0.1.1"},
+               {"github.com/macaron-contrib/session", session.Version, "0.1.2"},
                {"gopkg.in/ini.v1", ini.Version, "1.0.1"},
        }
        for _, c := range checkers {
diff --git a/gogs.go b/gogs.go
index abb4da4a9e3897b28726d2c9a6058a6e101ba24e..6b8978f2f7d85a459d13d4e1b0b02dc8c07c71a3 100644 (file)
--- a/gogs.go
+++ b/gogs.go
@@ -17,7 +17,7 @@ import (
        "github.com/gogits/gogs/modules/setting"
 )
 
-const APP_VER = "0.5.11.0102 Beta"
+const APP_VER = "0.5.11.0103 Beta"
 
 func init() {
        runtime.GOMAXPROCS(runtime.NumCPU())
index 8d89a54a1891fd85dfe8036bd9172ab889d74dae..3146279bd04ccdbd4378cac030fda52a1e8a5faf 100644 (file)
@@ -1 +1 @@
-0.5.11.0102 Beta
\ No newline at end of file
+0.5.11.0103 Beta
\ No newline at end of file