From 525b3550f6d7579a7a094fdcbc9f18b7ad463f7a Mon Sep 17 00:00:00 2001 From: Dustin Lundquist Date: Wed, 13 Aug 2014 18:32:33 -0700 Subject: [PATCH] 0.3.5 release --- ChangeLog | 13 +++++++++++++ configure.ac | 2 +- debian/changelog | 13 +++++++++++++ redhat/sniproxy.spec | 12 +++++++++++- setver.sh | 2 +- 5 files changed, 39 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index e69de29b..40c2c306 100644 --- a/ChangeLog +++ b/ChangeLog @@ -0,0 +1,13 @@ +2014-08-13 Dustin Lundquist + 0.3.5 release + + * Configuration reloading on SIGHUP + * SSL 2.0 connection handling: do not treat as an error, use fallback + address if configured. + * Fix buffer_coalesce error + * Spawn privileged child to bind sockets to privileged ports on reload + * Add -V flag to return sniproxy version + * Use libev for timestamps to improve portability + * Include several for BSD compatibility + * Large file support (for log files) + diff --git a/configure.ac b/configure.ac index 206ab755..f209b0a9 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ([2.60]) -AC_INIT([sniproxy], [0.3.4]) +AC_INIT([sniproxy], [0.3.5]) AC_CONFIG_SRCDIR([src/sniproxy.c]) AC_CONFIG_MACRO_DIR([m4]) AM_INIT_AUTOMAKE([subdir-objects]) diff --git a/debian/changelog b/debian/changelog index a999495f..65dd7421 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,16 @@ +sniproxy (0.3.5) unstable; urgency=medium + + * Configuration reloading on SIGHUP + * SSL 2.0 connection handling: do not treat as an error, use fallback + address if configured. + * Fix buffer_coalesce error + * Spawn privileged child to bind sockets to privileged ports on reload + * Add -V flag to return sniproxy version + * Use libev for timestamps to improve portability + * Include several for BSD compatibility + + -- Dustin Lundquist Wed, 13 Aug 2014 18:25:53 -0700 + sniproxy (0.3.4) unstable; urgency=medium * Add source address specification configuration option. diff --git a/redhat/sniproxy.spec b/redhat/sniproxy.spec index afb59066..71a4ad51 100644 --- a/redhat/sniproxy.spec +++ b/redhat/sniproxy.spec @@ -1,5 +1,5 @@ Name: sniproxy -Version: 0.3.4 +Version: 0.3.5 Release: 1%{?dist} Summary: Transparent TLS proxy @@ -43,3 +43,13 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Aug 13 2014 Dustin Lundquist 0.3.5-1 +- Configuration reloading on SIGHUP +- SSL 2.0 connection handling: do not treat as an error, use fallback + address if configured. +- Fix buffer_coalesce error +- Spawn privileged child to bind sockets to privileged ports on reload +- Add -V flag to return sniproxy version +- Use libev for timestamps to improve portability +- Include several for BSD compatibility +- Large file support (for log files) diff --git a/setver.sh b/setver.sh index cf491c2b..b9edd09d 100755 --- a/setver.sh +++ b/setver.sh @@ -1,6 +1,6 @@ #!/bin/sh -VERSION=0.3.4 +VERSION=0.3.5 SOURCE_DIR=$(dirname $0) GIT_DIR=${SOURCE_DIR}/.git