Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
madeye committed Aug 9, 2019
1 parent 1c4ddd3 commit 615588b
Show file tree
Hide file tree
Showing 9 changed files with 406 additions and 6 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
cmake_minimum_required(VERSION 3.2)

set(PROJECT_NAME shadowsocks-libev)
set(RELEASE_DATE 2019-06-08)
set(PROJECT_VERSION "3.3.0")
set(RELEASE_DATE 2019-08-09)
set(PROJECT_VERSION "3.3.1")
set(PROJECT_DESC "a lightweight secured socks5 proxy")
set(PROJECT_URL "https://shadowsocks.org")
set(PROJECT_ISSUES_URL "https://github.com/shadowsocks/shadowsocks-libev")
Expand Down
8 changes: 8 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
shadowsocks-libev (3.3.1-1) unstable; urgency=high

* Fix a high CPU bug introduced in 3.3.0. (#2449)
* Fix MinGW build. (#2438)
* Minor bug fixes. (#2402, #2412, #2427, #2443)

-- Max Lv <[email protected]> Fri, 09 Aug 2019 15:02:34 +0800

shadowsocks-libev (3.3.0-1) unstable; urgency=medium

* Enlarge the socket buffer size to 16KB.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,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.3.0 | [Changelog](debian/changelog)
Current version: 3.3.1 | [Changelog](debian/changelog)

## Features

Expand Down
12 changes: 12 additions & 0 deletions config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"server":"la.maxlv.net",
"server_port":1080,
"local_address":"0.0.0.0",
"local_port":1080,
"password":"CCCCCCCC",
"method":"aes-256-gcm",
"timeout":60,
"mode":"tcp_and_udp",
"plugin":"obfs-local",
"plugin_opts":"obfs=http;obfs-host=www.CCCCCCC.com"
}
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -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.3.0], [[email protected]])
AC_INIT([shadowsocks-libev], [3.3.1], [[email protected]])
AC_CONFIG_SRCDIR([src/crypto.c])
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_AUX_DIR(auto)
Expand Down
8 changes: 8 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
shadowsocks-libev (3.3.1-1) unstable; urgency=high

* Fix a high CPU bug introduced in 3.3.0. (#2449)
* Fix MinGW build. (#2438)
* Minor bug fixes. (#2402, #2412, #2427, #2443)

-- Max Lv <[email protected]> Fri, 09 Aug 2019 15:02:34 +0800

shadowsocks-libev (3.3.0-1) unstable; urgency=medium

* Enlarge the socket buffer size to 16KB.
Expand Down
Loading

0 comments on commit 615588b

Please sign in to comment.