From c0101ba5d78758d30503682935b5b7602269aa93 Mon Sep 17 00:00:00 2001 From: Joshua Judson Rosen Date: Tue, 17 Feb 2015 00:43:54 -0500 Subject: Prepare for v0.8.5 release Update version-strings and summarise the changes since v0.8.4 in ChangeLog. --- ChangeLog | 12 ++++++++++++ README | 2 +- configure | 20 ++++++++++---------- configure.ac | 4 ++-- doc/afclient.1 | 2 +- doc/afclient.conf.5 | 2 +- doc/afserver.1 | 2 +- doc/afserver.conf.5 | 2 +- doc/en/README | 2 +- src/activefor.h | 2 +- 10 files changed, 31 insertions(+), 19 deletions(-) diff --git a/ChangeLog b/ChangeLog index 2cbe382..9d35eaf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,15 @@ +17.02.2015 (v0.8.5): + - Fixed: security issues with SSL. We now use TLS rather than SSLv3, + and autonegotiate the strongest version of TLS we can get, + since all versions of pre-TLS SSL are widely deprecated + at this point (POODLE attack finally killed SSLv3). + - Removed: internal support for HTTP/HTTPS proxies: + there are better options readily available as external tools, + and removing the internal code makes it much easier to + reason about our own security and general correctness. + - Added: support for per-realm CA certificates + - Added: support for loading complete certificate-chains in afclient + 03.10.2007 (v0.8.4): - Added (by Joshua Judson Rosen): certificate-based authentication diff --git a/README b/README index a1952f4..80f5d30 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -AF - Active Port Forwarder 0.8.4 - README +AF - Active Port Forwarder 0.8.5 - README Copyright (C) 2003-2007 jeremian - ================================================================= diff --git a/configure b/configure index 0bcd3ce..f16fead 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.69 for Active port forwarder 0.8.4. +# Generated by GNU Autoconf 2.69 for Active port forwarder 0.8.5. # # Report bugs to . # @@ -599,8 +599,8 @@ MAKEFLAGS= # Identity of this package. PACKAGE_NAME='Active port forwarder' PACKAGE_TARNAME='apf' -PACKAGE_VERSION='0.8.4' -PACKAGE_STRING='Active port forwarder 0.8.4' +PACKAGE_VERSION='0.8.5' +PACKAGE_STRING='Active port forwarder 0.8.5' PACKAGE_BUGREPORT='jeremian@poczta.fm' PACKAGE_URL='' @@ -1283,7 +1283,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 Active port forwarder 0.8.4 to adapt to many kinds of systems. +\`configure' configures Active port forwarder 0.8.5 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1349,7 +1349,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of Active port forwarder 0.8.4:";; + short | recursive ) echo "Configuration of Active port forwarder 0.8.5:";; esac cat <<\_ACEOF @@ -1438,7 +1438,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -Active port forwarder configure 0.8.4 +Active port forwarder configure 0.8.5 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -1826,7 +1826,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 Active port forwarder $as_me 0.8.4, which was +It was created by Active port forwarder $as_me 0.8.5, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -2641,7 +2641,7 @@ fi # Define the identity of the package. PACKAGE=apf - VERSION=0.8.4 + VERSION=0.8.5 cat >>confdefs.h <<_ACEOF @@ -5517,7 +5517,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 Active port forwarder $as_me 0.8.4, which was +This file was extended by Active port forwarder $as_me 0.8.5, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -5583,7 +5583,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="\\ -Active port forwarder config.status 0.8.4 +Active port forwarder config.status 0.8.5 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" diff --git a/configure.ac b/configure.ac index db59cae..ef6e96f 100644 --- a/configure.ac +++ b/configure.ac @@ -2,8 +2,8 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ(2.59) -AC_INIT([Active port forwarder], [0.8.4], [jeremian@poczta.fm], [apf]) -AM_INIT_AUTOMAKE([apf], [0.8.4]) +AC_INIT([Active port forwarder], [0.8.5], [jeremian@poczta.fm], [apf]) +AM_INIT_AUTOMAKE([apf], [0.8.5]) AC_COPYRIGHT([ Copyright (C) 2003-2007 jeremian - =================== diff --git a/doc/afclient.1 b/doc/afclient.1 index fc3fa7d..7377455 100644 --- a/doc/afclient.1 +++ b/doc/afclient.1 @@ -1,4 +1,4 @@ -.TH afclient 1 "apf 0.8.4" Jeremian +.TH afclient 1 "apf 0.8.5" Jeremian .SH NAME afclient \- active port forwarder client .SH SYNOPSIS diff --git a/doc/afclient.conf.5 b/doc/afclient.conf.5 index 903be32..d0a7af0 100644 --- a/doc/afclient.conf.5 +++ b/doc/afclient.conf.5 @@ -1,4 +1,4 @@ -.TH afclient.conf 5 "apf 0.8.4" Jeremian +.TH afclient.conf 5 "apf 0.8.5" Jeremian .SH NAME afclient.conf \- Configuration File for afclient .SH INTRODUCTION diff --git a/doc/afserver.1 b/doc/afserver.1 index a4fa66e..333273e 100644 --- a/doc/afserver.1 +++ b/doc/afserver.1 @@ -1,4 +1,4 @@ -.TH afserver 1 "apf 0.8.4" Jeremian +.TH afserver 1 "apf 0.8.5" Jeremian .SH NAME afserver \- active port forwarder server .SH SYNOPSIS diff --git a/doc/afserver.conf.5 b/doc/afserver.conf.5 index 51090c1..b9a399a 100644 --- a/doc/afserver.conf.5 +++ b/doc/afserver.conf.5 @@ -1,4 +1,4 @@ -.TH afserver.conf 5 "apf 0.8.4" Jeremian +.TH afserver.conf 5 "apf 0.8.5" Jeremian .SH NAME afserver.conf \- Configuration File for afserver .SH INTRODUCTION diff --git a/doc/en/README b/doc/en/README index a1952f4..80f5d30 100644 --- a/doc/en/README +++ b/doc/en/README @@ -1,4 +1,4 @@ -AF - Active Port Forwarder 0.8.4 - README +AF - Active Port Forwarder 0.8.5 - README Copyright (C) 2003-2007 jeremian - ================================================================= diff --git a/src/activefor.h b/src/activefor.h index 6a73c69..786a351 100644 --- a/src/activefor.h +++ b/src/activefor.h @@ -53,7 +53,7 @@ #define S_STATE_OPENING_CLOSED 17 #define S_STATE_KICKING 19 -#define AF_VER(info) info" v0.8.4" +#define AF_VER(info) info" v0.8.5" #define TYPE_TCP 1 #define TYPE_UDP 3 -- cgit v1.1