forked from Mirrors/sngrep
doc: update ChangeLog for 1.7.0 release
This commit is contained in:
parent
e9f9bcc748
commit
ece9e0df1e
|
@ -1,3 +1,12 @@
|
|||
2023-03-31 Ivan Alonso <kaian@irontec.com>
|
||||
* sngrep 1.7.0 released
|
||||
|
||||
* save: add option --text to save captured data to plain text
|
||||
* capture: fix memory overflows while parsing IP headers
|
||||
* hep: fix hep listener enabled in offline mode
|
||||
* core: stop sngrep when parent process has ended
|
||||
* ssl: fix decrypt with AES256 GCM SHA384 cipher
|
||||
|
||||
2022-08-31 Ivan Alonso <kaian@irontec.com>
|
||||
* sngrep 1.6.0 released
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
AC_PREREQ([2.59])
|
||||
AC_INIT([sngrep], [1.6.0], [kaian@irontec.com], [sngrep], [http://www.irontec.com/])
|
||||
AC_INIT([sngrep], [1.7.0], [kaian@irontec.com], [sngrep], [http://www.irontec.com/])
|
||||
AM_INIT_AUTOMAKE([1.9])
|
||||
AC_CONFIG_HEADERS([src/config.h])
|
||||
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" Copyright (c) 2013-2021 Ivan Alonso <kaian@irontec.com>
|
||||
.\" Copyright (c) 2013-2021 Irontec S.L.
|
||||
|
||||
.TH SNGREP 8 "May 2021" "sngrep 1.6.0"
|
||||
.TH SNGREP 8 "Mar 2023" "sngrep 1.7.0"
|
||||
|
||||
.SH NAME
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Contributor: Francesco Colista <fcolista@alpinelinux.org>
|
||||
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
|
||||
pkgname=sngrep
|
||||
pkgver=1.6.0
|
||||
pkgver=1.7.0
|
||||
pkgrel=0
|
||||
pkgdesc="display SIP call message flows from a terminal"
|
||||
url="https://github.com/irontec/sngrep"
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
sngrep (1.7.0) experimental; urgency=low
|
||||
|
||||
* sngrep 1.7.0 released
|
||||
|
||||
-- Ivan Alonso <kaian@irontec.com> Fri, 31 Mar 2023 09:55:37 +0200
|
||||
|
||||
sngrep (1.6.0) experimental; urgency=low
|
||||
|
||||
* sngrep 1.6.0 released
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
Summary: SIP Messages flow viewer
|
||||
Name: sngrep
|
||||
Version: 1.6.0
|
||||
Version: 1.7.0
|
||||
Release: 0%{?dist}
|
||||
License: GPLv3
|
||||
Group: Applications/Engineering
|
||||
|
@ -59,6 +59,8 @@ make %{?_smp_mflags}
|
|||
%{__rm} -rf %{buildroot}
|
||||
|
||||
%changelog
|
||||
* Fri Mar 31 2023 Ivan Alonso <kaian@irontec.com> - 1.7.0
|
||||
- Version 1.7.0
|
||||
* Wed Aug 31 2022 Ivan Alonso <kaian@irontec.com> - 1.6.0
|
||||
- Version 1.6.0
|
||||
* Tue Apr 26 2022 Ivan Alonso <kaian@irontec.com> - 1.5.0
|
||||
|
|
Loading…
Reference in New Issue