Skip to content

Commit 85a64ae

Browse files
committed
Bump version
1 parent 6040be9 commit 85a64ae

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+53
-41
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-12-29)
5-
set(PROJECT_VERSION "3.1.2")
4+
set(RELEASE_DATE 2018-1-15)
5+
set(PROJECT_VERSION "3.1.3")
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.3-1) unstable; urgency=medium
2+
3+
* Fix a bug in UDP relay.
4+
5+
-- Max Lv <[email protected]> Mon, 15 Jan 2018 17:19:31 -0800
6+
17
shadowsocks-libev (3.1.2-1) unstable; urgency=medium
28

39
* Fix a bug in DNS resolver.

README.md

Lines changed: 2 additions & 2 deletions

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.1.2], [[email protected]])
5+
AC_INIT([shadowsocks-libev], [3.1.3], [[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.3-1) unstable; urgency=medium
2+
3+
* Fix a bug in UDP relay.
4+
5+
-- Max Lv <[email protected]> Mon, 15 Jan 2018 17:19:31 -0800
6+
17
shadowsocks-libev (3.1.2-1) unstable; urgency=medium
28

39
* Fix a bug in DNS resolver.

docker/alpine/Dockerfile

Lines changed: 1 addition & 1 deletion
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.1.2
8+
ARG SS_VER=3.1.3
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

src/acl.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* acl.c - Manage the ACL (Access Control List)
33
*
4-
* Copyright (C) 2013 - 2017, Max Lv <[email protected]>
4+
* Copyright (C) 2013 - 2018, Max Lv <[email protected]>
55
*
66
* This file is part of the shadowsocks-libev.
77
*

src/acl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* acl.h - Define the ACL interface
33
*
4-
* Copyright (C) 2013 - 2017, Max Lv <[email protected]>
4+
* Copyright (C) 2013 - 2018, Max Lv <[email protected]>
55
*
66
* This file is part of the shadowsocks-libev.
77
*

src/aead.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* aead.c - Manage AEAD ciphers
33
*
4-
* Copyright (C) 2013 - 2017, Max Lv <[email protected]>
4+
* Copyright (C) 2013 - 2018, Max Lv <[email protected]>
55
*
66
* This file is part of the shadowsocks-libev.
77
*

src/aead.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* aead.h - Define the AEAD interface
33
*
4-
* Copyright (C) 2013 - 2017, Max Lv <[email protected]>
4+
* Copyright (C) 2013 - 2018, Max Lv <[email protected]>
55
*
66
* This file is part of the shadowsocks-libev.
77
*

0 commit comments

Comments
 (0)