Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
madeye committed Jan 16, 2018
1 parent 6040be9 commit 85a64ae
Show file tree
Hide file tree
Showing 41 changed files with 53 additions and 41 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 2017-12-29)
set(PROJECT_VERSION "3.1.2")
set(RELEASE_DATE 2018-1-15)
set(PROJECT_VERSION "3.1.3")
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
6 changes: 6 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
shadowsocks-libev (3.1.3-1) unstable; urgency=medium

* Fix a bug in UDP relay.

-- Max Lv <[email protected]> Mon, 15 Jan 2018 17:19:31 -0800

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

* Fix a bug in DNS resolver.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.1.2 | [Changelog](debian/changelog)
Current version: 3.1.3 | [Changelog](debian/changelog)

Travis CI: [![Travis CI](https://travis-ci.org/shadowsocks/shadowsocks-libev.svg?branch=master)](https://travis-ci.org/shadowsocks/shadowsocks-libev)

Expand Down Expand Up @@ -491,7 +491,7 @@ setting up your server's firewall rules to limit connections from each user:

```
Copyright: 2013-2015, Clow Windy <[email protected]>
2013-2017, Max Lv <[email protected]>
2013-2018, Max Lv <[email protected]>
2014, Linus Yang <[email protected]>
This program is free software: you can redistribute it and/or modify
Expand Down
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.1.2], [[email protected]])
AC_INIT([shadowsocks-libev], [3.1.3], [[email protected]])
AC_CONFIG_SRCDIR([src/crypto.c])
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_AUX_DIR(auto)
Expand Down
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
shadowsocks-libev (3.1.3-1) unstable; urgency=medium

* Fix a bug in UDP relay.

-- Max Lv <[email protected]> Mon, 15 Jan 2018 17:19:31 -0800

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

* Fix a bug in DNS resolver.
Expand Down
2 changes: 1 addition & 1 deletion docker/alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
FROM alpine
MAINTAINER kev <[email protected]>

ARG SS_VER=3.1.2
ARG SS_VER=3.1.3
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
Expand Down
2 changes: 1 addition & 1 deletion src/acl.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* acl.c - Manage the ACL (Access Control List)
*
* Copyright (C) 2013 - 2017, Max Lv <[email protected]>
* Copyright (C) 2013 - 2018, Max Lv <[email protected]>
*
* This file is part of the shadowsocks-libev.
*
Expand Down
2 changes: 1 addition & 1 deletion src/acl.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* acl.h - Define the ACL interface
*
* Copyright (C) 2013 - 2017, Max Lv <[email protected]>
* Copyright (C) 2013 - 2018, Max Lv <[email protected]>
*
* This file is part of the shadowsocks-libev.
*
Expand Down
2 changes: 1 addition & 1 deletion src/aead.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* aead.c - Manage AEAD ciphers
*
* Copyright (C) 2013 - 2017, Max Lv <[email protected]>
* Copyright (C) 2013 - 2018, Max Lv <[email protected]>
*
* This file is part of the shadowsocks-libev.
*
Expand Down
2 changes: 1 addition & 1 deletion src/aead.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* aead.h - Define the AEAD interface
*
* Copyright (C) 2013 - 2017, Max Lv <[email protected]>
* Copyright (C) 2013 - 2018, Max Lv <[email protected]>
*
* This file is part of the shadowsocks-libev.
*
Expand Down
2 changes: 1 addition & 1 deletion src/android.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* android.c - Setup IPC for shadowsocks-android
*
* Copyright (C) 2013 - 2017, Max Lv <[email protected]>
* Copyright (C) 2013 - 2018, Max Lv <[email protected]>
*
* This file is part of the shadowsocks-libev.
*
Expand Down
2 changes: 1 addition & 1 deletion src/cache.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* cache.c - Manage the connection cache for UDPRELAY
*
* Copyright (C) 2013 - 2017, Max Lv <[email protected]>
* Copyright (C) 2013 - 2018, Max Lv <[email protected]>
*
* This file is part of the shadowsocks-libev.
*
Expand Down
2 changes: 1 addition & 1 deletion src/cache.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* cache.h - Define the cache manager interface
*
* Copyright (C) 2013 - 2017, Max Lv <[email protected]>
* Copyright (C) 2013 - 2018, Max Lv <[email protected]>
*
* This file is part of the shadowsocks-libev.
*
Expand Down
2 changes: 1 addition & 1 deletion src/common.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* common.h - Provide global definitions
*
* Copyright (C) 2013 - 2017, Max Lv <[email protected]>
* Copyright (C) 2013 - 2018, Max Lv <[email protected]>
*
* This file is part of the shadowsocks-libev.
* shadowsocks-libev is free software; you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/crypto.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* crypto.c - Manage the global crypto
*
* Copyright (C) 2013 - 2017, Max Lv <[email protected]>
* Copyright (C) 2013 - 2018, Max Lv <[email protected]>
*
* This file is part of the shadowsocks-libev.
*
Expand Down
2 changes: 1 addition & 1 deletion src/crypto.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* crypto.h - Define the enryptor's interface
*
* Copyright (C) 2013 - 2017, Max Lv <[email protected]>
* Copyright (C) 2013 - 2018, Max Lv <[email protected]>
*
* This file is part of the shadowsocks-libev.
*
Expand Down
2 changes: 1 addition & 1 deletion src/jconf.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* jconf.c - Parse the JSON format config file
*
* Copyright (C) 2013 - 2017, Max Lv <[email protected]>
* Copyright (C) 2013 - 2018, Max Lv <[email protected]>
*
* This file is part of the shadowsocks-libev.
* shadowsocks-libev is free software; you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/jconf.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* jconf.h - Define the config data structure
*
* Copyright (C) 2013 - 2017, Max Lv <[email protected]>
* Copyright (C) 2013 - 2018, Max Lv <[email protected]>
*
* This file is part of the shadowsocks-libev.
* shadowsocks-libev is free software; you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/local.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* local.c - Setup a socks5 proxy through remote shadowsocks server
*
* Copyright (C) 2013 - 2017, Max Lv <[email protected]>
* Copyright (C) 2013 - 2018, Max Lv <[email protected]>
*
* This file is part of the shadowsocks-libev.
*
Expand Down
2 changes: 1 addition & 1 deletion src/local.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* local.h - Define the client's buffers and callbacks
*
* Copyright (C) 2013 - 2017, Max Lv <[email protected]>
* Copyright (C) 2013 - 2018, Max Lv <[email protected]>
*
* This file is part of the shadowsocks-libev.
*
Expand Down
2 changes: 1 addition & 1 deletion src/manager.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* server.c - Provide shadowsocks service
*
* Copyright (C) 2013 - 2017, Max Lv <[email protected]>
* Copyright (C) 2013 - 2018, Max Lv <[email protected]>
*
* This file is part of the shadowsocks-libev.
*
Expand Down
2 changes: 1 addition & 1 deletion src/manager.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* server.h - Define shadowsocks server's buffers and callbacks
*
* Copyright (C) 2013 - 2017, Max Lv <[email protected]>
* Copyright (C) 2013 - 2018, Max Lv <[email protected]>
*
* This file is part of the shadowsocks-libev.
*
Expand Down
2 changes: 1 addition & 1 deletion src/netutils.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* netutils.c - Network utilities
*
* Copyright (C) 2013 - 2017, Max Lv <[email protected]>
* Copyright (C) 2013 - 2018, Max Lv <[email protected]>
*
* This file is part of the shadowsocks-libev.
*
Expand Down
2 changes: 1 addition & 1 deletion src/netutils.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* netutils.h - Network utilities
*
* Copyright (C) 2013 - 2017, Max Lv <[email protected]>
* Copyright (C) 2013 - 2018, Max Lv <[email protected]>
*
* This file is part of the shadowsocks-libev.
*
Expand Down
2 changes: 1 addition & 1 deletion src/plugin.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* plugin.c - Manage plugins
*
* Copyright (C) 2013 - 2017, Max Lv <[email protected]>
* Copyright (C) 2013 - 2018, Max Lv <[email protected]>
*
* This file is part of the shadowsocks-libev.
*
Expand Down
2 changes: 1 addition & 1 deletion src/plugin.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* acl.h - Define the ACL interface
*
* Copyright (C) 2013 - 2017, Max Lv <[email protected]>
* Copyright (C) 2013 - 2018, Max Lv <[email protected]>
*
* This file is part of the shadowsocks-libev.
*
Expand Down
2 changes: 1 addition & 1 deletion src/ppbloom.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* ppbloom.c - Ping-Pong Bloom Filter for nonce reuse detection
*
* Copyright (C) 2013 - 2017, Max Lv <[email protected]>
* Copyright (C) 2013 - 2018, Max Lv <[email protected]>
*
* This file is part of the shadowsocks-libev.
*
Expand Down
2 changes: 1 addition & 1 deletion src/ppbloom.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* ppbloom.h - Define the Ping-Pong Bloom Filter interface
*
* Copyright (C) 2013 - 2017, Max Lv <[email protected]>
* Copyright (C) 2013 - 2018, Max Lv <[email protected]>
*
* This file is part of the shadowsocks-libev.
*
Expand Down
2 changes: 1 addition & 1 deletion src/redir.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* redir.c - Provide a transparent TCP proxy through remote shadowsocks
* server
*
* Copyright (C) 2013 - 2017, Max Lv <[email protected]>
* Copyright (C) 2013 - 2018, Max Lv <[email protected]>
*
* This file is part of the shadowsocks-libev.
*
Expand Down
2 changes: 1 addition & 1 deletion src/redir.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* * redir.h - Define the redirector's buffers and callbacks
*
* Copyright (C) 2013 - 2017, Max Lv <[email protected]>
* Copyright (C) 2013 - 2018, Max Lv <[email protected]>
*
* This file is part of the shadowsocks-libev.
*
Expand Down
2 changes: 1 addition & 1 deletion src/server.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* server.c - Provide shadowsocks service
*
* Copyright (C) 2013 - 2017, Max Lv <[email protected]>
* Copyright (C) 2013 - 2018, Max Lv <[email protected]>
*
* This file is part of the shadowsocks-libev.
*
Expand Down
2 changes: 1 addition & 1 deletion src/server.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* server.h - Define shadowsocks server's buffers and callbacks
*
* Copyright (C) 2013 - 2017, Max Lv <[email protected]>
* Copyright (C) 2013 - 2018, Max Lv <[email protected]>
*
* This file is part of the shadowsocks-libev.
*
Expand Down
2 changes: 1 addition & 1 deletion src/shadowsocks.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* shadowsocks.h - Header files of library interfaces
*
* Copyright (C) 2013 - 2017, Max Lv <[email protected]>
* Copyright (C) 2013 - 2018, Max Lv <[email protected]>
*
* This file is part of the shadowsocks-libev.
* shadowsocks-libev is free software; you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion src/stream.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* stream.c - Manage stream ciphers
*
* Copyright (C) 2013 - 2017, Max Lv <[email protected]>
* Copyright (C) 2013 - 2018, Max Lv <[email protected]>
*
* This file is part of the shadowsocks-libev.
*
Expand Down
2 changes: 1 addition & 1 deletion src/stream.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* encrypt.h - Define the enryptor's interface
*
* Copyright (C) 2013 - 2017, Max Lv <[email protected]>
* Copyright (C) 2013 - 2018, Max Lv <[email protected]>
*
* This file is part of the shadowsocks-libev.
*
Expand Down
2 changes: 1 addition & 1 deletion src/tunnel.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* tunnel.c - Setup a local port forwarding through remote shadowsocks server
*
* Copyright (C) 2013 - 2017, Max Lv <[email protected]>
* Copyright (C) 2013 - 2018, Max Lv <[email protected]>
*
* This file is part of the shadowsocks-libev.
*
Expand Down
2 changes: 1 addition & 1 deletion src/tunnel.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* tunnel.h - Define tunnel's buffers and callbacks
*
* Copyright (C) 2013 - 2017, Max Lv <[email protected]>
* Copyright (C) 2013 - 2018, Max Lv <[email protected]>
*
* This file is part of the shadowsocks-libev.
*
Expand Down
2 changes: 1 addition & 1 deletion src/udprelay.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* udprelay.c - Setup UDP relay for both client and server
*
* Copyright (C) 2013 - 2017, Max Lv <[email protected]>
* Copyright (C) 2013 - 2018, Max Lv <[email protected]>
*
* This file is part of the shadowsocks-libev.
*
Expand Down
2 changes: 1 addition & 1 deletion src/udprelay.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* udprelay.h - Define UDP relay's buffers and callbacks
*
* Copyright (C) 2013 - 2017, Max Lv <[email protected]>
* Copyright (C) 2013 - 2018, Max Lv <[email protected]>
*
* This file is part of the shadowsocks-libev.
*
Expand Down
2 changes: 1 addition & 1 deletion src/utils.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* utils.c - Misc utilities
*
* Copyright (C) 2013 - 2017, Max Lv <[email protected]>
* Copyright (C) 2013 - 2018, Max Lv <[email protected]>
*
* This file is part of the shadowsocks-libev.
*
Expand Down
2 changes: 1 addition & 1 deletion src/utils.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* utils.h - Misc utilities
*
* Copyright (C) 2013 - 2017, Max Lv <[email protected]>
* Copyright (C) 2013 - 2018, Max Lv <[email protected]>
*
* This file is part of the shadowsocks-libev.
*
Expand Down

0 comments on commit 85a64ae

Please sign in to comment.