Browse Source

Update to Gogs 0.9.48

Girish Ramakrishnan 8 years ago
parent
commit
207fc95264
3 changed files with 6 additions and 2 deletions
  1. 4 0
      CHANGELOG
  2. 1 1
      CloudronManifest.json
  3. 1 1
      Dockerfile

+ 4 - 0
CHANGELOG

@@ -53,3 +53,7 @@
 [0.12.7]
 * Update base image to 0.8.1
 
+[0.13.0]
+* Update Gogs to 0.9.48
+* [Changelog](https://github.com/gogits/gogs/releases/tag/v0.9.48)
+

+ 1 - 1
CloudronManifest.json

@@ -4,7 +4,7 @@
   "author": "Gogs developers",
   "description": "file://DESCRIPTION.md",
   "tagline": "A painless self-hosted Git Service",
-  "version": "0.12.7",
+  "version": "0.13.0",
   "healthCheckPath": "/healthcheck",
   "httpPort": 3000,
   "addons": {

+ 1 - 1
Dockerfile

@@ -15,7 +15,7 @@ RUN passwd -d git
 RUN mkdir -p /home/git/gogs
 ## TODO: use redis as well
 RUN cd /home/git/gogs && \
-    curl -L https://github.com/gogits/gogs/releases/download/v0.9.13/linux_amd64.tar.gz | tar zxvf - --strip-components 1
+    curl -L https://github.com/gogits/gogs/releases/download/v0.9.48/linux_amd64.tar.gz | tar zxvf - --strip-components 1
 
 # setup config paths
 ADD app.ini.template /home/git/app.ini.template