Skip to content

Commit 69c41d9

Browse files
committed
Bump version
1 parent 666801d commit 69c41d9

File tree

6 files changed

+18
-6
lines changed

6 files changed

+18
-6
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
cmake_minimum_required(VERSION 3.2)
22

33
set(PROJECT_NAME shadowsocks-libev)
4-
set(RELEASE_DATE 2017-7-27)
5-
set(PROJECT_VERSION "3.0.8")
4+
set(RELEASE_DATE 2017-9-15)
5+
set(PROJECT_VERSION "3.1.0")
66
set(PROJECT_DESC "a lightweight secured socks5 proxy")
77
set(PROJECT_URL "https://shadowsocks.org")
88
set(PROJECT_ISSUES_URL "https://github.com/shadowsocks/shadowsocks-libev")

Changes

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
shadowsocks-libev (3.1.0-1) unstable; urgency=low
2+
3+
* Replace libudns with libc-ares.
4+
5+
-- Max Lv <[email protected]> Thu, 14 Sep 2017 19:27:51 -0700
6+
17
shadowsocks-libev (3.0.8-1) unstable; urgency=medium
28

39
* Refine the ping-pong bloom filter.

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.8 | [Changelog](debian/changelog)
12+
Current version: 3.1.0 | [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.8], [[email protected]])
5+
AC_INIT([shadowsocks-libev], [3.1.0], [[email protected]])
66
AC_CONFIG_SRCDIR([src/crypto.c])
77
AC_CONFIG_HEADERS([config.h])
88
AC_CONFIG_AUX_DIR(auto)

debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
shadowsocks-libev (3.1.0-1) unstable; urgency=low
2+
3+
* Replace libudns with libc-ares.
4+
5+
-- Max Lv <[email protected]> Thu, 14 Sep 2017 19:27:51 -0700
6+
17
shadowsocks-libev (3.0.8-1) unstable; urgency=medium
28

39
* Refine the ping-pong bloom filter.

docker/alpine/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
FROM alpine
66
MAINTAINER kev <[email protected]>
77

8-
ARG SS_VER=3.0.8
8+
ARG SS_VER=3.1.0
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
@@ -29,7 +29,7 @@ RUN set -ex && \
2929
mbedtls-dev \
3030
pcre-dev \
3131
tar \
32-
udns-dev && \
32+
c-ares-dev && \
3333
cd /tmp && \
3434
curl -sSL $SS_URL | tar xz --strip 1 && \
3535
./configure --prefix=/usr --disable-documentation && \

0 commit comments

Comments
 (0)