diff --git a/CHANGELOG b/CHANGELOG index 4b6cf940..e9f800cb 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,15 @@ -0.6.3 (not released) - * Support IPv6 server +1.1.1 (2013-07-12) + * Add -b option to limit listen address for client + * Fix can't override server address on command line + +1.1 (2013-05-26) + * Add more encryption methods + * Enable CGO for OS X when building + +1.0 (2013-05-17) + * Support specify servers with IPv6 address + * Support IPv6 address in socks requests + * Better handling of configuration file for debian package 0.6.2 (2013-03-15) * Connect to multiple servers in the order specified in config diff --git a/README.md b/README.md index de70b7cc..20a0f81f 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # shadowsocks-go -Current version: 1.1 [![Build Status](https://travis-ci.org/shadowsocks/shadowsocks-go.png?branch=develop)](https://travis-ci.org/shadowsocks/shadowsocks-go) +Current version: 1.1.1 [![Build Status](https://travis-ci.org/shadowsocks/shadowsocks-go.png?branch=develop)](https://travis-ci.org/shadowsocks/shadowsocks-go) shadowsocks-go is a lightweight tunnel proxy which can help you get through firewalls. It is a port of [shadowsocks](https://github.com/clowwindy/shadowsocks). diff --git a/shadowsocks/util.go b/shadowsocks/util.go index a81d8fe7..801b966a 100644 --- a/shadowsocks/util.go +++ b/shadowsocks/util.go @@ -7,7 +7,7 @@ import ( ) func PrintVersion() { - const version = "1.1" + const version = "1.1.1" fmt.Println("shadowsocks-go version", version) }