Skip to content
This repository was archived by the owner on Apr 9, 2020. It is now read-only.

Commit d4a6a12

Browse files
committed
Bump version to 1.1.4
1 parent 0cb0001 commit d4a6a12

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
*.deb
2+
script/http

CHANGELOG

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
1.1.4 (2015-05-10)
2+
* Support "chacha20" encryption method, thanks to @defia
3+
* Support "salsa20" encryption method, thanks to @genzj
4+
* Fix go 1.4 canonical import paths, thanks to @ddatsh
5+
* Exit if port not bindable, thanks to @thomasf
6+
* More buffer reuse
7+
18
1.1.3 (2014-09-28)
29
* Fix can't specify encryption method in config file
310

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# shadowsocks-go
22

3-
Current version: 1.1.3 [![Build Status](https://travis-ci.org/shadowsocks/shadowsocks-go.png?branch=develop)](https://travis-ci.org/shadowsocks/shadowsocks-go)
3+
Current version: 1.1.4 [![Build Status](https://travis-ci.org/shadowsocks/shadowsocks-go.png?branch=develop)](https://travis-ci.org/shadowsocks/shadowsocks-go)
44

55
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).
66

@@ -36,7 +36,7 @@ server your server ip or hostname
3636
server_port server port
3737
local_port local socks5 proxy port
3838
method encryption method, null by default (table), the following methods are supported:
39-
aes-128-cfb, aes-192-cfb, aes-256-cfb, bf-cfb, cast5-cfb, des-cfb, rc4-md5, rc4, table
39+
aes-128-cfb, aes-192-cfb, aes-256-cfb, bf-cfb, cast5-cfb, des-cfb, rc4-md5, chacha20, salsa20, rc4, table
4040
password a password used to encrypt transfer
4141
timeout server option, in seconds
4242
```

shadowsocks/util.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
)
88

99
func PrintVersion() {
10-
const version = "1.1.3"
10+
const version = "1.1.4"
1111
fmt.Println("shadowsocks-go version", version)
1212
}
1313

0 commit comments

Comments
 (0)