bump version to 2.0.3

This commit is contained in:
Michael Rash 2012-09-03 22:23:48 -04:00
parent 8d26cc90ee
commit 40ac28df21
8 changed files with 16 additions and 13 deletions

View File

@ -1,6 +1,4 @@
fwknop-2.0.3 (08//2012):
- Fixed RPM builds by including the $(DESTDIR) prefix for uninstall-local
and install-exec-hook stages in Makefile.am.
fwknop-2.0.3 (09/03/2012):
- [server] Fernando Arnaboldi from IOActive found several DoS/code
execution vulnerabilities for malicious fwknop clients that manage to
get past the authentication stage (so a such a client must be in
@ -28,6 +26,8 @@ fwknop-2.0.3 (08//2012):
- [test suite] Added a new fuzzing capability to ensure proper server-side
input validation. Fuzzing data is constructed with modified fwknop
client code that is designed to emulate malicious behavior.
- Fixed RPM builds by including the $(DESTDIR) prefix for uninstall-local
and install-exec-hook stages in Makefile.am.
fwknop-2.0.2 (08/18/2012):
- [server] For GPG mode, added a new access.conf variable

View File

@ -1 +1 @@
fwknop-2.0.2
fwknop-2.0.3

View File

@ -207,13 +207,13 @@
#define PACKAGE_NAME "fwknop"
/* Define to the full name and version of this package. */
#define PACKAGE_STRING "fwknop 2.0.2"
#define PACKAGE_STRING "fwknop 2.0.3"
/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "fwknop"
/* Define to the version of this package. */
#define PACKAGE_VERSION "2.0.2"
#define PACKAGE_VERSION "2.0.3"
/* The size of `unsigned int', as computed by sizeof. */
#define SIZEOF_UNSIGNED_INT 4
@ -247,7 +247,7 @@
/* Version number of package */
#define VERSION "2.0.2"
#define VERSION "2.0.3"
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
significant byte first (like Motorola and SPARC, unlike Intel). */

View File

@ -11,7 +11,7 @@ AC_PREREQ(2.62)
dnl Define our name, version and email.
m4_define(my_package, [fwknop])
m4_define(my_version, [2.0.2])
m4_define(my_version, [2.0.3])
m4_define(my_bug_email, [dstuart@dstuart.org])
AC_INIT(my_package, my_version, my_bug_email)

View File

@ -13,7 +13,7 @@
%define _mandir /usr/share/man
Name: fwknop
Version: 2.0.2
Version: 2.0.3
Epoch: 1
Release: 1%{?dist}
Summary: Firewall Knock Operator client. An implementation of Single Packet Authorization.

View File

@ -203,13 +203,13 @@ Copyright (C) Max Kastanas 2010
#define PACKAGE_NAME "fwknop"
/* Define to the full name and version of this package. */
#define PACKAGE_STRING "fwknop 2.0.2"
#define PACKAGE_STRING "fwknop 2.0.3"
/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "fwknop"
/* Define to the version of this package. */
#define PACKAGE_VERSION "2.0.2"
#define PACKAGE_VERSION "2.0.3"
/* The size of `unsigned int', as computed by sizeof. */
#define SIZEOF_UNSIGNED_INT 4
@ -243,7 +243,7 @@ Copyright (C) Max Kastanas 2010
/* Version number of package */
#define VERSION "2.0.2"
#define VERSION "2.0.3"
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
significant byte first (like Motorola and SPARC, unlike Intel). */

View File

@ -55,7 +55,7 @@ extern "C" {
/* General params
*/
#define FKO_PROTOCOL_VERSION "2.0.2" /* The fwknop protocol version */
#define FKO_PROTOCOL_VERSION "2.0.3" /* The fwknop protocol version */
/* Supported FKO Message types...
*/

View File

@ -9,6 +9,9 @@
*** Release fwknop-2.0.2
:CLOSED: <2012-08-18 Sat>
Make the fwknop-2.0.2 release.
*** Release fwknop-2.0.3
:CLOSED: <2012-09-03 Mon>
Make the fwknop-2.0.3 release.
*** Update fwknopd man page for GPG_ALLOW_NO_PW
:CLOSED: <2012-08-14 Tue>
*** Preserve existing configs under 'make install'