From e0f332415a88233cce0f0ae1ba446e0bfd5f396b Mon Sep 17 00:00:00 2001 From: Max Lv Date: Sun, 9 Jun 2013 09:57:08 +0000 Subject: [PATCH] bump version --- README.md | 16 ++++++++++------ configure | 20 ++++++++++---------- configure.ac | 2 +- debian/changelog | 18 ++++++++++++------ 4 files changed, 33 insertions(+), 23 deletions(-) diff --git a/README.md b/README.md index 26a5b07f..c24323ae 100644 --- a/README.md +++ b/README.md @@ -11,30 +11,34 @@ It is a port of [shadowsocks](https://github.com/clowwindy/shadowsocks) created by [@clowwindy](https://github.com/clowwindy) maintained by [@madeye](https://github.com/madeye). -Current version: 1.3.1 [![Build Status](https://travis-ci.org/madeye/shadowsocks-libev.png?branch=master)](https://travis-ci.org/madeye/shadowsocks-libev) +Current version: 1.3.2 [![Build Status](https://travis-ci.org/madeye/shadowsocks-libev.png?branch=master)](https://travis-ci.org/madeye/shadowsocks-libev) Changelog --------- -shadowsocks 1.3.1 -- Tue, 04 Jun 2013 00:56:17 +0000 +1.3.2 -- Sun, 09 Jun 2013 09:52:31 +0000 + + * Fix some ciphers by @linusyang. + +1.3.1 -- Tue, 04 Jun 2013 00:56:17 +0000 * Support more cihpers: camellia, idea, rc2 and seed. -shadowsocks 1.3 -- Thu, 16 May 2013 10:51:15 +0800 +1.3 -- Thu, 16 May 2013 10:51:15 +0800 * Able to bind connections to specific interface * Support more ciphers: aes-128-cfb, aes-192-cfb, aes-256-cfb, bf-cfb, cast5-cfb, des-cfb -shadowsocks 1.2 -- Tue, 07 May 2013 14:10:33 +0800 +1.2 -- Tue, 07 May 2013 14:10:33 +0800 * Close timeouted TCP connections * Fix a high load issue -shadowsocks 1.1 -- Wed, 10 Apr 2013 12:11:36 +0800 +1.1 -- Wed, 10 Apr 2013 12:11:36 +0800 * Fix a IPV6 resolve issue -shadowsocks 1.0 -- Sat, 06 Apr 2013 16:59:15 +0800 +1.0 -- Sat, 06 Apr 2013 16:59:15 +0800 * Initial release diff --git a/configure b/configure index 0c15cdb6..46660940 100755 --- a/configure +++ b/configure @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.67 for shadowsocks 1.3.1. +# Generated by GNU Autoconf 2.67 for shadowsocks 1.3.2. # # Report bugs to . # @@ -701,8 +701,8 @@ MAKEFLAGS= # Identity of this package. PACKAGE_NAME='shadowsocks' PACKAGE_TARNAME='shadowsocks' -PACKAGE_VERSION='1.3.1' -PACKAGE_STRING='shadowsocks 1.3.1' +PACKAGE_VERSION='1.3.2' +PACKAGE_STRING='shadowsocks 1.3.2' PACKAGE_BUGREPORT='max.c.lv@gmail.com' PACKAGE_URL='' @@ -1425,7 +1425,7 @@ if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures shadowsocks 1.3.1 to adapt to many kinds of systems. +\`configure' configures shadowsocks 1.3.2 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1495,7 +1495,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of shadowsocks 1.3.1:";; + short | recursive ) echo "Configuration of shadowsocks 1.3.2:";; esac cat <<\_ACEOF @@ -1601,7 +1601,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -shadowsocks configure 1.3.1 +shadowsocks configure 1.3.2 generated by GNU Autoconf 2.67 Copyright (C) 2010 Free Software Foundation, Inc. @@ -2123,7 +2123,7 @@ cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by shadowsocks $as_me 1.3.1, which was +It was created by shadowsocks $as_me 1.3.2, which was generated by GNU Autoconf 2.67. Invocation command line was $ $0 $@ @@ -2942,7 +2942,7 @@ fi # Define the identity of the package. PACKAGE='shadowsocks' - VERSION='1.3.1' + VERSION='1.3.2' cat >>confdefs.h <<_ACEOF @@ -13332,7 +13332,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by shadowsocks $as_me 1.3.1, which was +This file was extended by shadowsocks $as_me 1.3.2, which was generated by GNU Autoconf 2.67. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -13398,7 +13398,7 @@ _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -shadowsocks config.status 1.3.1 +shadowsocks config.status 1.3.2 configured by $0, generated by GNU Autoconf 2.67, with options \\"\$ac_cs_config\\" diff --git a/configure.ac b/configure.ac index 97396c31..107ed4be 100755 --- a/configure.ac +++ b/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], [1.3.1], [max.c.lv@gmail.com]) +AC_INIT([shadowsocks], [1.3.2], [max.c.lv@gmail.com]) AC_CONFIG_SRCDIR([src/encrypt.c]) AC_CONFIG_HEADERS([config.h]) diff --git a/debian/changelog b/debian/changelog index cd537df7..6618f441 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,36 +1,42 @@ +shadowsocks (1.3.2-1) unstable; urgency=high + + * Fix some ciphers by @linusyang. + + -- Max Lv Sun, 09 Jun 2013 09:52:31 +0000 + shadowsocks (1.3.1-1) unstable; urgency=low * Support more cihpers: camellia, idea, rc2 and seed. - -- Max Lv Tue, 04 Jun 2013 00:56:17 +0000 + -- Max Lv Tue, 04 Jun 2013 00:56:17 +0000 shadowsocks (1.3-1) unstable; urgency=low * Able to bind connections to specific interface. * Support more ciphers: aes-128-cfb, aes-192-cfb, aes-256-cfb, bf-cfb, cast5-cfb, des-cfb. - -- Max Lv Thu, 16 May 2013 10:51:15 +0800 + -- Max Lv Thu, 16 May 2013 10:51:15 +0800 shadowsocks (1.2-2) unstable; urgency=low * Close timeouted TCP connections. - -- Max Lv Tue, 07 May 2013 14:10:33 +0800 + -- Max Lv Tue, 07 May 2013 14:10:33 +0800 shadowsocks (1.2-1) unstable; urgency=low * Fix a high load issue. - -- Max Lv Thu, 18 Apr 2013 10:52:34 +0800 + -- Max Lv Thu, 18 Apr 2013 10:52:34 +0800 shadowsocks (1.1-1) unstable; urgency=low * Fix a IPV6 resolve issue. - -- Max Lv Wed, 10 Apr 2013 12:11:36 +0800 + -- Max Lv Wed, 10 Apr 2013 12:11:36 +0800 shadowsocks (1.0-2) unstable; urgency=low * Initial release. - -- Max Lv Sat, 06 Apr 2013 16:59:15 +0800 + -- Max Lv Sat, 06 Apr 2013 16:59:15 +0800