Added changelog and version numbers for 0.2.0 release

This commit is contained in:
Kaian 2014-12-04 20:39:04 +01:00
parent e43231e47f
commit f546a6ea34
3 changed files with 31 additions and 23 deletions

View File

@ -1,21 +1,29 @@
2014-12-04 Ivan Alonso <kaian@irontec.com>
* 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 <kaian@irontec.com>
* 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 <kaian@irontec.com>
* 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.

20
configure vendored
View File

@ -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 <kaian@irontec.com>.
#
@ -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\\"

View File

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