Skip to content

Commit

Permalink
Bump version to 1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
cyfdecyf committed Sep 21, 2014
1 parent 5052b3e commit fb3fcfa
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 23 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
1.1.2 (2014-09-21)
* Support new encryption method "rc4-md5"
* Use aes-256-cfb as default encryption method for command line app

1.1.1 (2013-07-12)
* Add -b option to limit listen address for client
* Fix can't override server address on command line
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# 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)
Current version: 1.1.2 [![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).

Expand All @@ -23,7 +23,7 @@ go get github.com/shadowsocks/shadowsocks-go/cmd/shadowsocks-server
go get github.com/shadowsocks/shadowsocks-go/cmd/shadowsocks-local
```

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

# Usage

Expand All @@ -35,8 +35,8 @@ Configuration file is in json format and has the same syntax with [shadowsocks-n
server your server ip or hostname
server_port server port
local_port local socks5 proxy port
method encryption method, null by default, the following methods are supported:
aes-128-cfb, aes-192-cfb, aes-256-cfb, bf-cfb, cast5-cfb, des-cfb, rc4
method encryption method, null by default (table), the following methods are supported:
aes-128-cfb, aes-192-cfb, aes-256-cfb, bf-cfb, cast5-cfb, des-cfb, rc4-md5, rc4, table
password a password used to encrypt transfer
timeout server option, in seconds
```
Expand All @@ -61,10 +61,10 @@ Command line options can override settings from configuration files. Use `-h` op

```
shadowsocks-local -s server_address -p server_port -k password
-m rc4 -c config.json
-m aes-128-cfb -c config.json
-b local_address -l local_port
shadowsocks-server -p server_port -k password
-m rc4 -c config.json
-m aes-128-cfb -c config.json
-t timeout
```

Expand Down
32 changes: 16 additions & 16 deletions script/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,19 +43,19 @@ build() {
popd
}

#build darwin amd64 mac64 local
#build linux amd64 linux64 local
#build linux 386 linux32 local
#build windows amd64 win64 local
#build windows 386 win32 local

#build linux amd64 linux64 server
#build linux 386 linux32 server
#build darwin amd64 mac64 server
#build windows amd64 win64 server
#build windows 386 win32 server

script/createdeb.sh amd64
script/createdeb.sh i386
mv shadowsocks-go_$version-1-*.deb bin/
rm -rf shadowsocks-go_$version-1*
build darwin amd64 mac64 local
build linux amd64 linux64 local
build linux 386 linux32 local
build windows amd64 win64 local
build windows 386 win32 local

build linux amd64 linux64 server
build linux 386 linux32 server
build darwin amd64 mac64 server
build windows amd64 win64 server
build windows 386 win32 server

#script/createdeb.sh amd64
#script/createdeb.sh i386
#mv shadowsocks-go_$version-1-*.deb bin/
#rm -rf shadowsocks-go_$version-1*
2 changes: 1 addition & 1 deletion shadowsocks/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
)

func PrintVersion() {
const version = "1.1.1"
const version = "1.1.2"
fmt.Println("shadowsocks-go version", version)
}

Expand Down

0 comments on commit fb3fcfa

Please sign in to comment.