Skip to content

Commit fdb1f19

Browse files
committed
Bump version
1 parent a0d38b3 commit fdb1f19

File tree

6 files changed

+21
-5
lines changed

6 files changed

+21
-5
lines changed

Changes

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
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+
19
shadowsocks-libev (3.0.0-1) unstable; urgency=medium
210

311
* Drop dependencies of OpenSSL and PolarSSL.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ It is a port of [Shadowsocks](https://github.com/shadowsocks/shadowsocks)
99
created by [@clowwindy](https://github.com/clowwindy), and maintained by
1010
[@madeye](https://github.com/madeye) and [@linusyang](https://github.com/linusyang).
1111

12-
Current version: 3.0.0 | [Changelog](debian/changelog)
12+
Current version: 3.0.1 | [Changelog](debian/changelog)
1313

1414
Travis CI: [![Travis CI](https://travis-ci.org/shadowsocks/shadowsocks-libev.svg?branch=master)](https://travis-ci.org/shadowsocks/shadowsocks-libev)
1515

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ dnl -*- Autoconf -*-
22
dnl Process this file with autoconf to produce a configure script.
33

44
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])
66
AC_CONFIG_SRCDIR([src/crypto.c])
77
AC_CONFIG_HEADERS([config.h])
88
AC_CONFIG_AUX_DIR(auto)

debian/changelog

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
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+
19
shadowsocks-libev (3.0.0-1) unstable; urgency=medium
210

311
* Drop dependencies of OpenSSL and PolarSSL.

docker/alpine/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
FROM alpine
66
MAINTAINER kev <noreply@datageek.info>
77

8-
ARG SS_VER=3.0.0
8+
ARG SS_VER=3.0.1
99
ARG SS_URL=https://github.com/shadowsocks/shadowsocks-libev/releases/download/v$SS_VER/shadowsocks-libev-$SS_VER.tar.gz
1010

1111
ENV SERVER_ADDR 0.0.0.0

rpm/genrpm.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ show_help()
77
echo
88
echo -e "Options:"
99
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)."
1111
echo -e " -f with argument format (tar.xz by default) used by git archive."
1212
echo
1313
echo -e "Examples:"
@@ -38,7 +38,7 @@ do
3838
esac
3939
done
4040

41-
: ${version:=3.0.0}
41+
: ${version:=3.0.1}
4242
: ${format:=tar.gz}
4343

4444
name="shadowsocks-libev"

0 commit comments

Comments
 (0)