diff --git a/README_ZH.md b/README_ZH.md index ccd549d..a484a03 100644 --- a/README_ZH.md +++ b/README_ZH.md @@ -158,7 +158,7 @@ curl -L https://raw.githubusercontent.com/snail007/goproxy/master/install_auto.s 下载地址:https://github.com/snail007/goproxy/releases ```shell cd /root/proxy/ -wget https://github.com/snail007/goproxy/releases/download/v4.7/proxy-linux-amd64.tar.gz +wget https://github.com/snail007/goproxy/releases/download/v4.8/proxy-linux-amd64.tar.gz ``` #### **2.下载自动安装脚本** ```shell diff --git a/install_auto.sh b/install_auto.sh index fac84d2..47be61e 100755 --- a/install_auto.sh +++ b/install_auto.sh @@ -5,7 +5,7 @@ if [ -e /tmp/proxy ]; then fi mkdir /tmp/proxy cd /tmp/proxy -wget https://github.com/snail007/goproxy/releases/download/v4.7/proxy-linux-amd64.tar.gz +wget https://github.com/snail007/goproxy/releases/download/v4.8/proxy-linux-amd64.tar.gz # #install proxy tar zxvf proxy-linux-amd64.tar.gz diff --git a/main.go b/main.go index b4d0dec..d853600 100644 --- a/main.go +++ b/main.go @@ -1,14 +1,15 @@ package main import ( - "github.com/snail007/goproxy/services" "log" "os" "os/signal" "syscall" + + "github.com/snail007/goproxy/services" ) -const APP_VERSION = "4.7" +const APP_VERSION = "4.8" func main() { err := initConfig() diff --git a/release.sh b/release.sh index ccad76d..454ff02 100755 --- a/release.sh +++ b/release.sh @@ -1,5 +1,5 @@ #!/bin/bash -VER="4.7" +VER="4.8" RELEASE="release-${VER}" rm -rf .cert mkdir .cert