From 144fa0f0d18b1fafcd94852e448a25c202154e41 Mon Sep 17 00:00:00 2001 From: Chen Yufei Date: Sun, 28 Sep 2014 10:09:54 +0800 Subject: [PATCH] Bump version to 1.1.3 --- CHANGELOG | 3 +++ README.md | 2 +- shadowsocks/util.go | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 72826e9..07fb962 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,6 @@ +1.1.3 (2014-09-28) + * Fix can't specify encryption method in config file + 1.1.2 (2014-09-21) * Support new encryption method "rc4-md5" * Use aes-256-cfb as default encryption method for command line app diff --git a/README.md b/README.md index 7106909..4939dd0 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # shadowsocks-go -Current version: 1.1.2 [![Build Status](https://travis-ci.org/shadowsocks/shadowsocks-go.png?branch=develop)](https://travis-ci.org/shadowsocks/shadowsocks-go) +Current version: 1.1.3 [![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 a026e9f..732a5a5 100644 --- a/shadowsocks/util.go +++ b/shadowsocks/util.go @@ -7,7 +7,7 @@ import ( ) func PrintVersion() { - const version = "1.1.2" + const version = "1.1.3" fmt.Println("shadowsocks-go version", version) }