diff --git a/Changes b/Changes index 8f8c2192..eba1a25d 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,11 @@ +shadowsocks-libev (3.0.1-1) unstable; urgency=medium + + * Fix a crashe when using stream ciphers. + * Fix a protocol bug in AEAD ciphers. (SIP004) + * Allow setting keys directly. (SIP006) + + -- Max Lv Tue, 07 Feb 2017 13:18:02 +0800 + shadowsocks-libev (3.0.0-1) unstable; urgency=medium * Drop dependencies of OpenSSL and PolarSSL. diff --git a/README.md b/README.md index 99373f4b..7c76db63 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ It is a port of [Shadowsocks](https://github.com/shadowsocks/shadowsocks) created by [@clowwindy](https://github.com/clowwindy), and maintained by [@madeye](https://github.com/madeye) and [@linusyang](https://github.com/linusyang). -Current version: 3.0.0 | [Changelog](debian/changelog) +Current version: 3.0.1 | [Changelog](debian/changelog) Travis CI: [![Travis CI](https://travis-ci.org/shadowsocks/shadowsocks-libev.svg?branch=master)](https://travis-ci.org/shadowsocks/shadowsocks-libev) diff --git a/configure.ac b/configure.ac index 20a2d244..008c2d21 100755 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ dnl -*- Autoconf -*- dnl Process this file with autoconf to produce a configure script. AC_PREREQ([2.67]) -AC_INIT([shadowsocks-libev], [3.0.0], [max.c.lv@gmail.com]) +AC_INIT([shadowsocks-libev], [3.0.1], [max.c.lv@gmail.com]) AC_CONFIG_SRCDIR([src/crypto.c]) AC_CONFIG_HEADERS([config.h]) AC_CONFIG_AUX_DIR(auto) diff --git a/debian/changelog b/debian/changelog index 8f8c2192..eba1a25d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +shadowsocks-libev (3.0.1-1) unstable; urgency=medium + + * Fix a crashe when using stream ciphers. + * Fix a protocol bug in AEAD ciphers. (SIP004) + * Allow setting keys directly. (SIP006) + + -- Max Lv Tue, 07 Feb 2017 13:18:02 +0800 + shadowsocks-libev (3.0.0-1) unstable; urgency=medium * Drop dependencies of OpenSSL and PolarSSL. diff --git a/docker/alpine/Dockerfile b/docker/alpine/Dockerfile index 52aa8ac2..d54d5fad 100644 --- a/docker/alpine/Dockerfile +++ b/docker/alpine/Dockerfile @@ -5,7 +5,7 @@ FROM alpine MAINTAINER kev -ARG SS_VER=3.0.0 +ARG SS_VER=3.0.1 ARG SS_URL=https://github.com/shadowsocks/shadowsocks-libev/releases/download/v$SS_VER/shadowsocks-libev-$SS_VER.tar.gz ENV SERVER_ADDR 0.0.0.0 diff --git a/rpm/genrpm.sh b/rpm/genrpm.sh index 51861318..5bc28cfa 100755 --- a/rpm/genrpm.sh +++ b/rpm/genrpm.sh @@ -7,7 +7,7 @@ show_help() echo echo -e "Options:" echo -e " -h show this help." - echo -e " -v with argument version (3.0.0 by default)." + echo -e " -v with argument version (3.0.1 by default)." echo -e " -f with argument format (tar.xz by default) used by git archive." echo echo -e "Examples:" @@ -38,7 +38,7 @@ do esac done -: ${version:=3.0.0} +: ${version:=3.0.1} : ${format:=tar.gz} name="shadowsocks-libev"