summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.gopmfile2
-rw-r--r--cmd/web.go4
-rw-r--r--gogs.go2
-rw-r--r--templates/.VERSION2
4 files changed, 5 insertions, 5 deletions
diff --git a/.gopmfile b/.gopmfile
index 02c80cb0c3..dcdcd1c0a9 100644
--- 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
diff --git a/cmd/web.go b/cmd/web.go
index b579ab08e8..e0c899d37f 100644
--- a/cmd/web.go
+++ b/cmd/web.go
@@ -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 abb4da4a9e..6b8978f2f7 100644
--- 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())
diff --git a/templates/.VERSION b/templates/.VERSION
index 8d89a54a18..3146279bd0 100644
--- a/templates/.VERSION
+++ b/templates/.VERSION
@@ -1 +1 @@
-0.5.11.0102 Beta \ No newline at end of file
+0.5.11.0103 Beta \ No newline at end of file