File tree Expand file tree Collapse file tree 6 files changed +21
-5
lines changed Expand file tree Collapse file tree 6 files changed +21
-5
lines changed Original file line number Diff line number Diff line change
1
+ shadowsocks-libev (3.0.1-1) unstable; urgency=medium
2
+
3
+ * Fix a crashe when using stream ciphers.
4
+ * Fix a protocol bug in AEAD ciphers. (SIP004)
5
+ * Allow setting keys directly. (SIP006)
6
+
7
+ -- Max Lv <max.c.lv@gmail.com> Tue, 07 Feb 2017 13:18:02 +0800
8
+
1
9
shadowsocks-libev (3.0.0-1) unstable; urgency=medium
2
10
3
11
* Drop dependencies of OpenSSL and PolarSSL.
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ It is a port of [Shadowsocks](https://github.com/shadowsocks/shadowsocks)
9
9
created by [ @clowwindy ] ( https://github.com/clowwindy ) , and maintained by
10
10
[ @madeye ] ( https://github.com/madeye ) and [ @linusyang ] ( https://github.com/linusyang ) .
11
11
12
- Current version: 3.0.0 | [ Changelog] ( debian/changelog )
12
+ Current version: 3.0.1 | [ Changelog] ( debian/changelog )
13
13
14
14
Travis CI: [ ![ Travis CI] ( https://travis-ci.org/shadowsocks/shadowsocks-libev.svg?branch=master )] ( https://travis-ci.org/shadowsocks/shadowsocks-libev )
15
15
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ dnl -*- Autoconf -*-
2
2
dnl Process this file with autoconf to produce a configure script.
3
3
4
4
AC_PREREQ ( [ 2.67] )
5
- AC_INIT ( [ shadowsocks-libev] , [ 3.0.0 ] , [ max.c.lv@gmail.com] )
5
+ AC_INIT ( [ shadowsocks-libev] , [ 3.0.1 ] , [ max.c.lv@gmail.com] )
6
6
AC_CONFIG_SRCDIR ( [ src/crypto.c] )
7
7
AC_CONFIG_HEADERS ( [ config.h] )
8
8
AC_CONFIG_AUX_DIR ( auto )
Original file line number Diff line number Diff line change
1
+ shadowsocks-libev (3.0.1-1) unstable; urgency=medium
2
+
3
+ * Fix a crashe when using stream ciphers.
4
+ * Fix a protocol bug in AEAD ciphers. (SIP004)
5
+ * Allow setting keys directly. (SIP006)
6
+
7
+ -- Max Lv <max.c.lv@gmail.com> Tue, 07 Feb 2017 13:18:02 +0800
8
+
1
9
shadowsocks-libev (3.0.0-1) unstable; urgency=medium
2
10
3
11
* Drop dependencies of OpenSSL and PolarSSL.
Original file line number Diff line number Diff line change 5
5
FROM alpine
6
6
MAINTAINER kev <noreply@datageek.info>
7
7
8
- ARG SS_VER=3.0.0
8
+ ARG SS_VER=3.0.1
9
9
ARG SS_URL=https://github.com/shadowsocks/shadowsocks-libev/releases/download/v$SS_VER/shadowsocks-libev-$SS_VER.tar.gz
10
10
11
11
ENV SERVER_ADDR 0.0.0.0
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ show_help()
7
7
echo
8
8
echo -e " Options:"
9
9
echo -e " -h show this help."
10
- echo -e " -v with argument version (3.0.0 by default)."
10
+ echo -e " -v with argument version (3.0.1 by default)."
11
11
echo -e " -f with argument format (tar.xz by default) used by git archive."
12
12
echo
13
13
echo -e " Examples:"
38
38
esac
39
39
done
40
40
41
- : ${version:= 3.0.0 }
41
+ : ${version:= 3.0.1 }
42
42
: ${format:= tar.gz}
43
43
44
44
name=" shadowsocks-libev"
You can’t perform that action at this time.
0 commit comments