Bump version

This commit is contained in:
Max Lv
2017-11-06 14:55:54 +08:00
parent 20aa76404a
commit 917411a3ab
5 changed files with 24 additions and 11 deletions

View File

@@ -1,7 +1,7 @@
# Contributor: Max Lv <max.c.lv@gmail.com>
# Maintainer: Max Lv <max.c.lv@gmail.com>
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"

19
Changes
View File

@@ -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 <max.c.lv@gmail.com> Mon, 16 Jan 2017 10:53:34 +0800
-- Max Lv <max.c.lv@gmail.com> 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 <max.c.lv@gmail.com> Sat, 31 Dec 2016 18:37:12 +0800
-- Max Lv <max.c.lv@gmail.com> Fri, 17 Mar 2017 17:02:43 +0800
simple-obfs (0.0.2-1) UNRELEASED; urgency=low
* Initial release. (Closes: #)
-- Roger Shimizu <rogershimizu@gmail.com> Wed, 22 Feb 2017 21:55:18 +0900

View File

@@ -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,

View File

@@ -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

6
debian/changelog vendored
View File

@@ -1,3 +1,9 @@
simple-obfs (0.0.4-1) unstable; urgency=medium
* Minor bug fixes.
-- Max Lv <max.c.lv@gmail.com> Mon, 06 Nov 2017 14:52:48 +0800
simple-obfs (0.0.3-1) unstable; urgency=medium
* Add failover option.