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

Commit

Permalink
Bump to 1.2.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
lixin9311 committed Jan 19, 2017
1 parent 964fa27 commit d7780ed
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 6 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
1.2.0 (2017-01-20)
* Support UDP reley on server side, and OTA
* Support "aes-[128/192/256]-ctr" encryption method (Thanks for @slurin)
* Support "chacha20-ietf" encryption method
* Improve performance of "chacha20" encryption method
* Corrently close connection if handshake failed

1.1.5 (2016-05-04)
* Support OTA (Thanks for @ayanamist for implementing this feature)

1.1.4 (2015-05-10)
* Support "chacha20" encryption method, thanks to @defia
* Support "salsa20" encryption method, thanks to @genzj
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# shadowsocks-go

Current version: 1.1.5 [![Build Status](https://travis-ci.org/shadowsocks/shadowsocks-go.png?branch=develop)](https://travis-ci.org/shadowsocks/shadowsocks-go)
Current version: 1.2.0 [![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 Down
10 changes: 5 additions & 5 deletions shadowsocks/util.go
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
package shadowsocks

import (
"errors"
"fmt"
"os"
"crypto/hmac"
"crypto/sha1"
"encoding/binary"
"errors"
"fmt"
"os"
)

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

Expand Down Expand Up @@ -57,4 +57,4 @@ func (flag *ClosedFlag) SetClosed() {

func (flag *ClosedFlag) IsClosed() bool {
return flag.flag
}
}

0 comments on commit d7780ed

Please sign in to comment.