Browse Source

Bump version

pull/1379/head
Max Lv 8 years ago
parent
commit
913dfd81e8
6 changed files with 16 additions and 4 deletions
  1. 6
      Changes
  2. 2
      Makefile.am
  3. 2
      README.md
  4. 2
      configure.ac
  5. 6
      debian/changelog
  6. 2
      docker/alpine/Dockerfile

6
Changes

@ -1,3 +1,9 @@
shadowsocks-libev (3.0.3-1) unstable; urgency=medium
* Replace nonce cache with a ping-pong bloom filter.
-- Max Lv <max.c.lv@gmail.com> Fri, 24 Feb 2017 12:08:31 +0800
shadowsocks-libev (3.0.2-1) unstable; urgency=high
* Add session key for AEAD. (SIP007)

2
Makefile.am

@ -13,7 +13,7 @@ ACLOCAL_AMFLAGS = -I m4
pkgconfiglibdir = $(libdir)/pkgconfig
pkgconfiglib_DATA = shadowsocks-libev.pc
EXTRA_DIST = acl Changes completions debian docker rpm README.md
EXTRA_DIST = acl Changes completions debian docker rpm scripts README.md
EXTRA_DIST += libbloom
EXTRA_DIST += libcork/include libipset/include
EXTRA_DIST += libipset/src/libipset/map/inspection-template.c.in

2
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.2 | [Changelog](debian/changelog)
Current version: 3.0.3 | [Changelog](debian/changelog)
Travis CI: [![Travis CI](https://travis-ci.org/shadowsocks/shadowsocks-libev.svg?branch=master)](https://travis-ci.org/shadowsocks/shadowsocks-libev)

2
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.2], [max.c.lv@gmail.com])
AC_INIT([shadowsocks-libev], [3.0.3], [max.c.lv@gmail.com])
AC_CONFIG_SRCDIR([src/crypto.c])
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_AUX_DIR(auto)

6
debian/changelog

@ -1,3 +1,9 @@
shadowsocks-libev (3.0.3-1) unstable; urgency=medium
* Replace nonce cache with a ping-pong bloom filter.
-- Max Lv <max.c.lv@gmail.com> Fri, 24 Feb 2017 12:08:31 +0800
shadowsocks-libev (3.0.2-1) unstable; urgency=high
* Add session key for AEAD. (SIP007)

2
docker/alpine/Dockerfile

@ -5,7 +5,7 @@
FROM alpine
MAINTAINER kev <noreply@datageek.info>
ARG SS_VER=3.0.2
ARG SS_VER=3.0.3
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

Loading…
Cancel
Save