From f546a6ea3445bd16df67330c59cee7edc8718db2 Mon Sep 17 00:00:00 2001 From: Kaian Date: Thu, 4 Dec 2014 20:39:04 +0100 Subject: [PATCH] Added changelog and version numbers for 0.2.0 release --- ChangeLog | 32 ++++++++++++++++++++------------ configure | 20 ++++++++++---------- configure.ac | 2 +- 3 files changed, 31 insertions(+), 23 deletions(-) diff --git a/ChangeLog b/ChangeLog index faa2efd..bdbbfa4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,21 +1,29 @@ +2014-12-04 Ivan Alonso + * sngrep 0.2.0 released + + * Added Initial TLS Support (No compression, AES) + * Added an option to resolve IP addresses + * Added a new panel to compare two SIP messages + * Fixed multiples memory leaks + 2014-10-21 Ivan Alonso - * sngrep 0.1.0 released + * sngrep 0.1.0 released - * Remove ngrep compatibility. Force libpcap during compilation - * Added TCP support - * Allow saving selected dialogs into pcap - * New UI design to maximize screen usage - * Added a serach box in Call List window - * Added Funtion Keys keybindings - * Added command line arguments - * Fixed some memory bugs + * Remove ngrep compatibility. Force libpcap during compilation + * Added TCP support + * Allow saving selected dialogs into pcap + * New UI design to maximize screen usage + * Added a serach box in Call List window + * Added Funtion Keys keybindings + * Added command line arguments + * Fixed some memory bugs 2013-04-22 Ivan Alonso - * sngrep 0.0-alpha released. + * sngrep 0.0-alpha released. - * Initial version, code is just a mere stub with global variables, without - sanity checks... expect the worst. + * Initial version, code is just a mere stub with global variables, without + sanity checks... expect the worst. diff --git a/configure b/configure index 9633721..44ed04b 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 sngrep 0.1.0. +# Generated by GNU Autoconf 2.69 for sngrep 0.2.0. # # Report bugs to . # @@ -582,8 +582,8 @@ MAKEFLAGS= # Identity of this package. PACKAGE_NAME='sngrep' PACKAGE_TARNAME='sngrep' -PACKAGE_VERSION='0.1.0' -PACKAGE_STRING='sngrep 0.1.0' +PACKAGE_VERSION='0.2.0' +PACKAGE_STRING='sngrep 0.2.0' PACKAGE_BUGREPORT='kaian@irontec.com' PACKAGE_URL='http://www.irontec.com/' @@ -1281,7 +1281,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 sngrep 0.1.0 to adapt to many kinds of systems. +\`configure' configures sngrep 0.2.0 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1347,7 +1347,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of sngrep 0.1.0:";; + short | recursive ) echo "Configuration of sngrep 0.2.0:";; esac cat <<\_ACEOF @@ -1441,7 +1441,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -sngrep configure 0.1.0 +sngrep configure 0.2.0 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -1783,7 +1783,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 sngrep $as_me 0.1.0, which was +It was created by sngrep $as_me 0.2.0, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -2598,7 +2598,7 @@ fi # Define the identity of the package. PACKAGE='sngrep' - VERSION='0.1.0' + VERSION='0.2.0' cat >>confdefs.h <<_ACEOF @@ -6257,7 +6257,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 sngrep $as_me 0.1.0, which was +This file was extended by sngrep $as_me 0.2.0, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -6324,7 +6324,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="\\ -sngrep config.status 0.1.0 +sngrep config.status 0.2.0 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" diff --git a/configure.ac b/configure.ac index 947ed28..0bc0340 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ([2.59]) -AC_INIT([sngrep], [0.1.0], [kaian@irontec.com], [sngrep], [http://www.irontec.com/]) +AC_INIT([sngrep], [0.2.0], [kaian@irontec.com], [sngrep], [http://www.irontec.com/]) AM_INIT_AUTOMAKE([1.10]) AM_SILENT_RULES([yes]) AC_CONFIG_HEADERS([src/config.h])