Browse Source

Bump version

pull/1595/head v3.0.8
Max Lv 7 years ago
parent
commit
f1dd1354a9
6 changed files with 19 additions and 5 deletions
  1. 4
      CMakeLists.txt
  2. 7
      Changes
  3. 2
      README.md
  4. 2
      configure.ac
  5. 7
      debian/changelog
  6. 2
      docker/alpine/Dockerfile

4
CMakeLists.txt

@ -1,8 +1,8 @@
cmake_minimum_required(VERSION 3.2)
set(PROJECT_NAME shadowsocks-libev)
set(RELEASE_DATE 2017-6-27)
set(PROJECT_VERSION "3.0.7")
set(RELEASE_DATE 2017-7-27)
set(PROJECT_VERSION "3.0.8")
set(PROJECT_DESC "a lightweight secured socks5 proxy")
set(PROJECT_URL "https://shadowsocks.org")
set(PROJECT_ISSUES_URL "https://github.com/shadowsocks/shadowsocks-libev")

7
Changes

@ -1,3 +1,10 @@
shadowsocks-libev (3.0.8-1) unstable; urgency=medium
* Refine the ping-pong bloom filter.
* Minor bug fixes by @vfreex, @vlolteanu and @jackyyf.
-- Max Lv <max.c.lv@gmail.com> Thu, 27 Jul 2017 11:01:37 +0800
shadowsocks-libev (3.0.7-1) unstable; urgency=medium
* Refine manager mode by @mengxd.

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.7 | [Changelog](debian/changelog)
Current version: 3.0.8 | [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.7], [max.c.lv@gmail.com])
AC_INIT([shadowsocks-libev], [3.0.8], [max.c.lv@gmail.com])
AC_CONFIG_SRCDIR([src/crypto.c])
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_AUX_DIR(auto)

7
debian/changelog

@ -1,3 +1,10 @@
shadowsocks-libev (3.0.8-1) unstable; urgency=medium
* Refine the ping-pong bloom filter.
* Minor bug fixes by @vfreex, @vlolteanu and @jackyyf.
-- Max Lv <max.c.lv@gmail.com> Thu, 27 Jul 2017 11:01:37 +0800
shadowsocks-libev (3.0.7-1) unstable; urgency=medium
* Refine manager mode by @mengxd.

2
docker/alpine/Dockerfile

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