diff --git a/build.sh b/build.sh index 7f7c605..82f3cb0 100755 --- a/build.sh +++ b/build.sh @@ -1,7 +1,7 @@ #!/bin/sh project_name="ua3f" -release_version="0.7.3" +release_version="0.8.0" target=main.go dist=./dist release_dir=./bin diff --git a/ipkg/CONTROL/control b/ipkg/CONTROL/control index f8e8f03..12b26c7 100644 --- a/ipkg/CONTROL/control +++ b/ipkg/CONTROL/control @@ -1,5 +1,5 @@ Package: ua3f -Version: 0.7.3-1 +Version: 0.8.0-1 Depends: luci-compat Source: /feed/openwrt SourceName: UA3F diff --git a/ipkg/CONTROL/control-e b/ipkg/CONTROL/control-e index 1d7ab1b..9b71799 100644 --- a/ipkg/CONTROL/control-e +++ b/ipkg/CONTROL/control-e @@ -1,5 +1,5 @@ Package: ua3f -Version: 0.7.3-1 +Version: 0.8.0-1 Depends: luci-compat Source: /feed/openwrt SourceName: UA3F diff --git a/openwrt/Makefile b/openwrt/Makefile index 4625dd9..5dea7e3 100644 --- a/openwrt/Makefile +++ b/openwrt/Makefile @@ -1,7 +1,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=UA3F -PKG_VERSION:=0.7.3 +PKG_VERSION:=0.8.0 PKG_RELEASE:=1 # PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz diff --git a/openwrt/files/luci/cbi.lua b/openwrt/files/luci/cbi.lua index 6b7ff8f..7b7897d 100644 --- a/openwrt/files/luci/cbi.lua +++ b/openwrt/files/luci/cbi.lua @@ -3,7 +3,7 @@ local uci = require("luci.model.uci").cursor() ua3f = Map("ua3f", "UA3F", [[ - Version: 0.7.3 + Version: 0.8.0
Across the Campus we can reach every corner in the world. ]] diff --git a/src/main.go b/src/main.go index 646ff86..c9e9328 100644 --- a/src/main.go +++ b/src/main.go @@ -24,7 +24,7 @@ var ( ErrInvalidSocksCmd = errors.New("invalid socks cmd") ) -var version = "0.7.3" +var version = "0.8.0" var payload string var uaPattern string var uaRegexp *regexp2.Regexp