From 45d647ef831a0cff7c1603cd04a4a5dd715fba5f Mon Sep 17 00:00:00 2001 From: SunBK201 Date: Wed, 20 Nov 2024 18:18:10 +0800 Subject: [PATCH] feat: bump version to 0.7.1 --- 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 cd5a0d0..f1521ae 100755 --- a/build.sh +++ b/build.sh @@ -1,7 +1,7 @@ #!/bin/sh project_name="ua3f" -release_version="0.7.0" +release_version="0.7.1" target=main.go dist=./dist release_dir=./bin diff --git a/install.sh b/install.sh index 99d18c0..9956860 100755 --- a/install.sh +++ b/install.sh @@ -98,7 +98,7 @@ install_ua3f() { cd /root getcpucore -version=0.7.0 +version=0.7.1 ua3f_tar=ua3f-$version-$cpucore.tar.gz chmod_clash diff --git a/ipkg/CONTROL/control b/ipkg/CONTROL/control index d767638..f6a6e77 100644 --- a/ipkg/CONTROL/control +++ b/ipkg/CONTROL/control @@ -1,5 +1,5 @@ Package: ua3f -Version: 0.7.0-1 +Version: 0.7.1-1 Depends: luci-compat Source: /feed/openwrt SourceName: UA3F diff --git a/ipkg/CONTROL/control-e b/ipkg/CONTROL/control-e index 00b7369..d7a6cf9 100644 --- a/ipkg/CONTROL/control-e +++ b/ipkg/CONTROL/control-e @@ -1,5 +1,5 @@ Package: ua3f -Version: 0.7.0-1 +Version: 0.7.1-1 Depends: luci-compat Source: /feed/openwrt SourceName: UA3F diff --git a/openwrt/Makefile b/openwrt/Makefile index f0bee20..27d9047 100644 --- a/openwrt/Makefile +++ b/openwrt/Makefile @@ -1,7 +1,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=UA3F -PKG_VERSION:=0.7.0 +PKG_VERSION:=0.7.1 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 e328002..eb07068 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.0 + Version: 0.7.1
Across the Campus we can reach every corner in the world. ]] diff --git a/src/main.go b/src/main.go index 82eb677..6bdbfff 100644 --- a/src/main.go +++ b/src/main.go @@ -18,7 +18,7 @@ import ( "github.com/sunbk201/ua3f/log" ) -var version = "0.7.0" +var version = "0.7.1" var payload string var uaPattern string var uaRegexp *regexp2.Regexp