From f7b7d008b684a3475a1834b8b574e5ce082a723c Mon Sep 17 00:00:00 2001 From: Unknwon Date: Thu, 2 Mar 2017 22:08:39 -0500 Subject: [PATCH] setting: fix Webhook.SkipTLSVerify didn't load (#4228) --- gogs.go | 2 +- modules/setting/setting.go | 2 +- templates/.VERSION | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/gogs.go b/gogs.go index fc11c85e4..17a919d5e 100644 --- a/gogs.go +++ b/gogs.go @@ -16,7 +16,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.10.3.0301" +const APP_VER = "0.10.4.0302" func init() { setting.AppVer = APP_VER diff --git a/modules/setting/setting.go b/modules/setting/setting.go index 0f7505541..ed04665e4 100644 --- a/modules/setting/setting.go +++ b/modules/setting/setting.go @@ -142,7 +142,7 @@ var ( Types []string QueueLength int DeliverTimeout int - SkipTLSVerify bool + SkipTLSVerify bool `ini:"SKIP_TLS_VERIFY"` PagingNum int } diff --git a/templates/.VERSION b/templates/.VERSION index 5c5e94d5f..132f1d901 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.10.3.0301 \ No newline at end of file +0.10.4.0302 \ No newline at end of file