From a4a94173e3b769e1eeca00a12387d42a771aaa03 Mon Sep 17 00:00:00 2001 From: SunBK201 Date: Tue, 4 Nov 2025 16:35:21 +0800 Subject: [PATCH] chore: bump version to 1.2.1 --- build.sh | 2 +- ipkg/CONTROL/control | 2 +- ipkg/CONTROL/control-e | 2 +- openwrt/Makefile | 2 +- openwrt/files/luci/cbi.lua | 2 +- src/main.go | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/build.sh b/build.sh index 633e495..68e6e88 100755 --- a/build.sh +++ b/build.sh @@ -8,7 +8,7 @@ set -e project_name="ua3f" -release_version="1.2.0" +release_version="1.2.1" target=main.go dist=./dist release_dir=./bin diff --git a/ipkg/CONTROL/control b/ipkg/CONTROL/control index eb9994f..e3b7c0d 100644 --- a/ipkg/CONTROL/control +++ b/ipkg/CONTROL/control @@ -1,5 +1,5 @@ Package: ua3f -Version: 1.2.0-1 +Version: 1.2.1-1 Depends: luci-compat, ipset, iptables, iptables-mod-tproxy, iptables-mod-extra, iptables-mod-nat-extra, kmod-ipt-conntrack Source: /feed/openwrt SourceName: UA3F diff --git a/ipkg/CONTROL/control-e b/ipkg/CONTROL/control-e index 002f5fe..5cae710 100644 --- a/ipkg/CONTROL/control-e +++ b/ipkg/CONTROL/control-e @@ -1,5 +1,5 @@ Package: ua3f -Version: 1.2.0-1 +Version: 1.2.1-1 Depends: luci-compat, ipset, iptables, iptables-mod-tproxy, iptables-mod-extra, iptables-mod-nat-extra, kmod-ipt-conntrack Source: /feed/openwrt SourceName: UA3F diff --git a/openwrt/Makefile b/openwrt/Makefile index 15efaf1..d35bdc3 100644 --- a/openwrt/Makefile +++ b/openwrt/Makefile @@ -1,7 +1,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=UA3F -PKG_VERSION:=1.2.0 +PKG_VERSION:=1.2.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 2532942..5ad194d 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: 1.2.0 + Version: 1.2.1
Across the Campus we can reach every corner in the world. ]] diff --git a/src/main.go b/src/main.go index fa999bf..a46dffa 100644 --- a/src/main.go +++ b/src/main.go @@ -11,7 +11,7 @@ import ( "github.com/sunbk201/ua3f/internal/server" ) -const version = "1.2.0" +const version = "1.2.1" func main() { cfg, showVer := config.Parse()