From b16decf9761ff0ccc2f6341152b2e56e2f3a34c6 Mon Sep 17 00:00:00 2001 From: "arraykeys@gmail.com" Date: Wed, 23 May 2018 14:38:19 +0800 Subject: [PATCH] Signed-off-by: arraykeys@gmail.com --- README.md | 5 +++-- README_ZH.md | 5 +++-- install_auto.sh | 2 +- main.go | 2 +- release.sh | 2 +- 5 files changed, 9 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index abf848a..6035367 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,8 @@ Proxy is a high performance HTTP, HTTPS, HTTPS, websocket, TCP, UDP, Socks5 prox - ...   -This page is the v4.8 manual, and the other version of the manual can be checked by the following link. +This page is the v4.9 manual, and the other version of the manual can be checked by the following link. +- [v4.8 manual](https://github.com/snail007/goproxy/tree/v4.8) - [v4.7 manual](https://github.com/snail007/goproxy/tree/v4.7) - [v4.6 manual](https://github.com/snail007/goproxy/tree/v4.6) - [v4.5 manual](https://github.com/snail007/goproxy/tree/v4.5) @@ -162,7 +163,7 @@ If the installation fails or your VPS is not a linux64 system, please follow the Download address: https://github.com/snail007/goproxy/releases ```shell cd /root/proxy/ -wget https://github.com/snail007/goproxy/releases/download/v4.8/proxy-linux-amd64.tar.gz +wget https://github.com/snail007/goproxy/releases/download/v4.9/proxy-linux-amd64.tar.gz ``` #### **2.Download the automatic installation script** ```shell diff --git a/README_ZH.md b/README_ZH.md index c17898a..ba32e0c 100644 --- a/README_ZH.md +++ b/README_ZH.md @@ -37,7 +37,8 @@ Proxy是golang实现的高性能http,https,websocket,tcp,udp,socks5代理服务 - ... -本页是v4.8手册,其他版本手册请点击下面链接查看. +本页是v4.9手册,其他版本手册请点击下面链接查看. +- [v4.8手册](https://github.com/snail007/goproxy/tree/v4.8) - [v4.7手册](https://github.com/snail007/goproxy/tree/v4.7) - [v4.6手册](https://github.com/snail007/goproxy/tree/v4.6) - [v4.5手册](https://github.com/snail007/goproxy/tree/v4.5) @@ -161,7 +162,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.8/proxy-linux-amd64.tar.gz +wget https://github.com/snail007/goproxy/releases/download/v4.9/proxy-linux-amd64.tar.gz ``` #### **2.下载自动安装脚本** ```shell diff --git a/install_auto.sh b/install_auto.sh index 47be61e..4eb34a2 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.8/proxy-linux-amd64.tar.gz +wget https://github.com/snail007/goproxy/releases/download/v4.9/proxy-linux-amd64.tar.gz # #install proxy tar zxvf proxy-linux-amd64.tar.gz diff --git a/main.go b/main.go index e3c654c..6bf8f13 100644 --- a/main.go +++ b/main.go @@ -9,7 +9,7 @@ import ( "github.com/snail007/goproxy/services" ) -const APP_VERSION = "4.8" +const APP_VERSION = "4.9" func main() { err := initConfig() diff --git a/release.sh b/release.sh index 454ff02..9747785 100755 --- a/release.sh +++ b/release.sh @@ -1,5 +1,5 @@ #!/bin/bash -VER="4.8" +VER="4.9" RELEASE="release-${VER}" rm -rf .cert mkdir .cert