From 237e3bf3bbcaa2262bc4af837fcc4c9d3a23e444 Mon Sep 17 00:00:00 2001 From: SunBK201 Date: Thu, 21 Nov 2024 21:22:44 +0800 Subject: [PATCH] feat: bump to v0.7.2 --- build.sh | 2 +- install.sh | 2 +- ipkg/CONTROL/control | 2 +- ipkg/CONTROL/control-e | 2 +- openwrt/Makefile | 2 +- openwrt/files/luci/cbi.lua | 2 +- src/main.go | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/build.sh b/build.sh index f1521ae..b55fcf6 100755 --- a/build.sh +++ b/build.sh @@ -1,7 +1,7 @@ #!/bin/sh project_name="ua3f" -release_version="0.7.1" +release_version="0.7.2" target=main.go dist=./dist release_dir=./bin diff --git a/install.sh b/install.sh index 9956860..0b33fa9 100755 --- a/install.sh +++ b/install.sh @@ -98,7 +98,7 @@ install_ua3f() { cd /root getcpucore -version=0.7.1 +version=0.7.2 ua3f_tar=ua3f-$version-$cpucore.tar.gz chmod_clash diff --git a/ipkg/CONTROL/control b/ipkg/CONTROL/control index f6a6e77..6736dd2 100644 --- a/ipkg/CONTROL/control +++ b/ipkg/CONTROL/control @@ -1,5 +1,5 @@ Package: ua3f -Version: 0.7.1-1 +Version: 0.7.2-1 Depends: luci-compat Source: /feed/openwrt SourceName: UA3F diff --git a/ipkg/CONTROL/control-e b/ipkg/CONTROL/control-e index d7a6cf9..a30984b 100644 --- a/ipkg/CONTROL/control-e +++ b/ipkg/CONTROL/control-e @@ -1,5 +1,5 @@ Package: ua3f -Version: 0.7.1-1 +Version: 0.7.2-1 Depends: luci-compat Source: /feed/openwrt SourceName: UA3F diff --git a/openwrt/Makefile b/openwrt/Makefile index 27d9047..c7fc4a0 100644 --- a/openwrt/Makefile +++ b/openwrt/Makefile @@ -1,7 +1,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=UA3F -PKG_VERSION:=0.7.1 +PKG_VERSION:=0.7.2 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 ad6137e..de0a42c 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.1 + Version: 0.7.2
Across the Campus we can reach every corner in the world. ]] diff --git a/src/main.go b/src/main.go index aac0e2e..7e6bb30 100644 --- a/src/main.go +++ b/src/main.go @@ -18,7 +18,7 @@ import ( "github.com/sunbk201/ua3f/log" ) -var version = "0.7.1" +var version = "0.7.2" var payload string var uaPattern string var uaRegexp *regexp2.Regexp