Skip to content

Commit 615588b

Browse files
committed
Bump version
1 parent 1c4ddd3 commit 615588b

File tree

9 files changed

+406
-6
lines changed

9 files changed

+406
-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 2019-06-08)
5-
set(PROJECT_VERSION "3.3.0")
4+
set(RELEASE_DATE 2019-08-09)
5+
set(PROJECT_VERSION "3.3.1")
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: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
shadowsocks-libev (3.3.1-1) unstable; urgency=high
2+
3+
* Fix a high CPU bug introduced in 3.3.0. (#2449)
4+
* Fix MinGW build. (#2438)
5+
* Minor bug fixes. (#2402, #2412, #2427, #2443)
6+
7+
-- Max Lv <max.c.lv@gmail.com> Fri, 09 Aug 2019 15:02:34 +0800
8+
19
shadowsocks-libev (3.3.0-1) unstable; urgency=medium
210

311
* Enlarge the socket buffer size to 16KB.

README.md

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

14-
Current version: 3.3.0 | [Changelog](debian/changelog)
14+
Current version: 3.3.1 | [Changelog](debian/changelog)
1515

1616
## Features
1717

config.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"server":"la.maxlv.net",
3+
"server_port":1080,
4+
"local_address":"0.0.0.0",
5+
"local_port":1080,
6+
"password":"CCCCCCCC",
7+
"method":"aes-256-gcm",
8+
"timeout":60,
9+
"mode":"tcp_and_udp",
10+
"plugin":"obfs-local",
11+
"plugin_opts":"obfs=http;obfs-host=www.CCCCCCC.com"
12+
}

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.3.0], [max.c.lv@gmail.com])
5+
AC_INIT([shadowsocks-libev], [3.3.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.3.1-1) unstable; urgency=high
2+
3+
* Fix a high CPU bug introduced in 3.3.0. (#2449)
4+
* Fix MinGW build. (#2438)
5+
* Minor bug fixes. (#2402, #2412, #2427, #2443)
6+
7+
-- Max Lv <max.c.lv@gmail.com> Fri, 09 Aug 2019 15:02:34 +0800
8+
19
shadowsocks-libev (3.3.0-1) unstable; urgency=medium
210

311
* Enlarge the socket buffer size to 16KB.

0 commit comments

Comments
 (0)