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

Commit fb3fcfa

Browse files
committed
Bump version to 1.1.2
1 parent 5052b3e commit fb3fcfa

File tree

4 files changed

+27
-23
lines changed

4 files changed

+27
-23
lines changed

CHANGELOG

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
1.1.2 (2014-09-21)
2+
* Support new encryption method "rc4-md5"
3+
* Use aes-256-cfb as default encryption method for command line app
4+
15
1.1.1 (2013-07-12)
26
* Add -b option to limit listen address for client
37
* Fix can't override server address on command line

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# shadowsocks-go
22

3-
Current version: 1.1.1 [![Build Status](https://travis-ci.org/shadowsocks/shadowsocks-go.png?branch=develop)](https://travis-ci.org/shadowsocks/shadowsocks-go)
3+
Current version: 1.1.2 [![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

@@ -23,7 +23,7 @@ go get github.com/shadowsocks/shadowsocks-go/cmd/shadowsocks-server
2323
go get github.com/shadowsocks/shadowsocks-go/cmd/shadowsocks-local
2424
```
2525

26-
It's recommend to disable cgo when compiling shadowsocks-go. This will prevent the go runtime from creating too many threads for dns lookup.
26+
It's recommended to disable cgo when compiling shadowsocks-go. This will prevent the go runtime from creating too many threads for dns lookup.
2727

2828
# Usage
2929

@@ -35,8 +35,8 @@ Configuration file is in json format and has the same syntax with [shadowsocks-n
3535
server your server ip or hostname
3636
server_port server port
3737
local_port local socks5 proxy port
38-
method encryption method, null by default, the following methods are supported:
39-
aes-128-cfb, aes-192-cfb, aes-256-cfb, bf-cfb, cast5-cfb, des-cfb, rc4
38+
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
4040
password a password used to encrypt transfer
4141
timeout server option, in seconds
4242
```
@@ -61,10 +61,10 @@ Command line options can override settings from configuration files. Use `-h` op
6161

6262
```
6363
shadowsocks-local -s server_address -p server_port -k password
64-
-m rc4 -c config.json
64+
-m aes-128-cfb -c config.json
6565
-b local_address -l local_port
6666
shadowsocks-server -p server_port -k password
67-
-m rc4 -c config.json
67+
-m aes-128-cfb -c config.json
6868
-t timeout
6969
```
7070

script/build.sh

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -43,19 +43,19 @@ build() {
4343
popd
4444
}
4545

46-
#build darwin amd64 mac64 local
47-
#build linux amd64 linux64 local
48-
#build linux 386 linux32 local
49-
#build windows amd64 win64 local
50-
#build windows 386 win32 local
51-
52-
#build linux amd64 linux64 server
53-
#build linux 386 linux32 server
54-
#build darwin amd64 mac64 server
55-
#build windows amd64 win64 server
56-
#build windows 386 win32 server
57-
58-
script/createdeb.sh amd64
59-
script/createdeb.sh i386
60-
mv shadowsocks-go_$version-1-*.deb bin/
61-
rm -rf shadowsocks-go_$version-1*
46+
build darwin amd64 mac64 local
47+
build linux amd64 linux64 local
48+
build linux 386 linux32 local
49+
build windows amd64 win64 local
50+
build windows 386 win32 local
51+
52+
build linux amd64 linux64 server
53+
build linux 386 linux32 server
54+
build darwin amd64 mac64 server
55+
build windows amd64 win64 server
56+
build windows 386 win32 server
57+
58+
#script/createdeb.sh amd64
59+
#script/createdeb.sh i386
60+
#mv shadowsocks-go_$version-1-*.deb bin/
61+
#rm -rf shadowsocks-go_$version-1*

shadowsocks/util.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
)
88

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

0 commit comments

Comments
 (0)