diff --git a/APKBUILD b/APKBUILD index d1df270..4edec03 100644 --- a/APKBUILD +++ b/APKBUILD @@ -1,7 +1,7 @@ # Contributor: Max Lv # Maintainer: Max Lv pkgname=simple-obfs -pkgver=0.0.3 +pkgver=0.0.4 pkgrel=0 pkgdesc="Simple-obfs is a simple obfusacting tool, designed as plugin server of shadowsocks." url="https://github.com/shadowsocks/simple-obfs" diff --git a/Changes b/Changes index 0f717cf..45df826 100644 --- a/Changes +++ b/Changes @@ -1,11 +1,18 @@ -simple-obfs (0.0.2-1) unstable; urgency=medium +simple-obfs (0.0.4-1) unstable; urgency=medium - * Refine SIP003 interfaces. + * Minor bug fixes. - -- Max Lv Mon, 16 Jan 2017 10:53:34 +0800 + -- Max Lv Mon, 06 Nov 2017 14:52:48 +0800 -simple-obfs (0.0.1-1) unstable; urgency=medium +simple-obfs (0.0.3-1) unstable; urgency=medium - * Add HTTP/TLS obfuscating. + * Add failover option. + * Minor bug fixes. - -- Max Lv Sat, 31 Dec 2016 18:37:12 +0800 + -- Max Lv Fri, 17 Mar 2017 17:02:43 +0800 + +simple-obfs (0.0.2-1) UNRELEASED; urgency=low + + * Initial release. (Closes: #) + + -- Roger Shimizu Wed, 22 Feb 2017 21:55:18 +0900 diff --git a/README.md b/README.md index a625b64..00c62e5 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Simple-obfs is a simple obfusacting tool, designed as plugin server of shadowsocks. -Current version: 0.0.3 | [Changelog](Changes) +Current version: 0.0.4 | [Changelog](Changes) ## Build For Unix-like systems, especially Debian-based systems, diff --git a/configure.ac b/configure.ac index a307f27..f0866c8 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([simple-obfs], [0.0.3], [max.c.lv@gmail.com]) +AC_INIT([simple-obfs], [0.0.4], [max.c.lv@gmail.com]) AC_CONFIG_SRCDIR([src/encrypt.c]) AC_CONFIG_HEADERS([config.h]) AC_CONFIG_AUX_DIR(auto) @@ -28,9 +28,9 @@ AM_CONDITIONAL([ENABLE_DOCUMENTATION], [test x$disable_documentation = xfalse]) AM_COND_IF([ENABLE_DOCUMENTATION], [ AC_PATH_PROG([ASCIIDOC], [asciidoc]) - test x"${ASCIIDOC}" != x || AC_MSG_ERROR([Cannot find `asciidoc` in PATH.]) + test x"${ASCIIDOC}" != x || AC_MSG_ERROR([Cannot find `asciidoc` in PATH.]) AC_PATH_PROG([XMLTO], [xmlto]) - test x"$XMLTO" != x || AC_MSG_ERROR([Cannot find `xmlto` in PATH.]) + test x"$XMLTO" != x || AC_MSG_ERROR([Cannot find `xmlto` in PATH.]) AC_PATH_PROG([GZIP], [gzip], [gzip]) AC_PATH_PROG([MV], [mv], [mv]) AC_PROG_SED diff --git a/debian/changelog b/debian/changelog index ff07606..45df826 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +simple-obfs (0.0.4-1) unstable; urgency=medium + + * Minor bug fixes. + + -- Max Lv Mon, 06 Nov 2017 14:52:48 +0800 + simple-obfs (0.0.3-1) unstable; urgency=medium * Add failover option.