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

Commit d7780ed

Browse files
committed
Bump to 1.2.0.
1 parent 964fa27 commit d7780ed

File tree

3 files changed

+16
-6
lines changed

3 files changed

+16
-6
lines changed

CHANGELOG

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
1.2.0 (2017-01-20)
2+
* Support UDP reley on server side, and OTA
3+
* Support "aes-[128/192/256]-ctr" encryption method (Thanks for @slurin)
4+
* Support "chacha20-ietf" encryption method
5+
* Improve performance of "chacha20" encryption method
6+
* Corrently close connection if handshake failed
7+
8+
1.1.5 (2016-05-04)
9+
* Support OTA (Thanks for @ayanamist for implementing this feature)
10+
111
1.1.4 (2015-05-10)
212
* Support "chacha20" encryption method, thanks to @defia
313
* Support "salsa20" encryption method, thanks to @genzj

README.md

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

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

shadowsocks/util.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
package shadowsocks
22

33
import (
4-
"errors"
5-
"fmt"
6-
"os"
74
"crypto/hmac"
85
"crypto/sha1"
96
"encoding/binary"
7+
"errors"
8+
"fmt"
9+
"os"
1010
)
1111

1212
func PrintVersion() {
13-
const version = "1.1.5"
13+
const version = "1.2.0"
1414
fmt.Println("shadowsocks-go version", version)
1515
}
1616

@@ -57,4 +57,4 @@ func (flag *ClosedFlag) SetClosed() {
5757

5858
func (flag *ClosedFlag) IsClosed() bool {
5959
return flag.flag
60-
}
60+
}

0 commit comments

Comments
 (0)