Skip to content

Commit

Permalink
Merge pull request #1160 from fatedier/dev
Browse files Browse the repository at this point in the history
bump version to v0.25.3, fix #1159
  • Loading branch information
fatedier authored Mar 26, 2019
2 parents 4b7aef2 + 9cee263 commit a8ab4c5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ for os in $os_all; do
mv ./frps_${os}_${arch} ${frp_path}/frps
fi
cp ./LICENSE ${frp_path}
cp ./conf/* ${frp_path}
cp -rf ./conf/* ${frp_path}

# packages
cd ./packages
Expand Down
4 changes: 4 additions & 0 deletions utils/net/conn.go
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,10 @@ func ConnectServerByProxy(proxyUrl string, protocol string, addr string) (c Conn

func ConnectServerByProxyWithTLS(proxyUrl string, protocol string, addr string, tlsConfig *tls.Config) (c Conn, err error) {
c, err = ConnectServerByProxy(proxyUrl, protocol, addr)
if err != nil {
return
}

if tlsConfig == nil {
return
}
Expand Down
2 changes: 1 addition & 1 deletion utils/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (
"strings"
)

var version string = "0.25.2"
var version string = "0.25.3"

func Full() string {
return version
Expand Down

1 comment on commit a8ab4c5

@wangshengfeng

This comment was marked as off-topic.

Please sign in to comment.