Skip to content

Commit

Permalink
Bump version to 4.0.23
Browse files Browse the repository at this point in the history
  • Loading branch information
salcock committed Nov 9, 2023
1 parent 42bfd5c commit 0fea5ac
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
libtrace 4.0.22
libtrace 4.0.23

Code and documentation added since version 4.0.20 is
Copyright (c) 2023 Shane Alcock and has been contributed as per
Expand Down
10 changes: 6 additions & 4 deletions configure.in
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
# Now you only need to update the version number in two places - below,
# and in the README

AC_INIT([libtrace],[4.0.22],[[email protected]],[libtrace])
AC_INIT([libtrace],[4.0.23],[[email protected]],[libtrace])

LIBTRACE_MAJOR=4
LIBTRACE_MID=0
LIBTRACE_MINOR=22
LIBTRACE_MINOR=23

# OpenSolaris hides libraries like libncurses in /usr/gnu/lib, which is not
# searched by default - add it to LDFLAGS so we at least have a chance of
Expand Down Expand Up @@ -102,8 +102,10 @@ ADD_LDFLAGS="$ADD_LDFLAGS -L\$(abs_top_srcdir)/lib"
LIBTRACE_LIBS=""
TOOLS_LIBS=""

CFLAGS="$CFLAGS -Wall -Wmissing-prototypes -Wextra -DLT_BUILDING_DLL=1"
CXXFLAGS="$CXXFLAGS -Wall -DLT_BUILDING_DLL=1"
CFLAGS="$CFLAGS -Wall -Wmissing-prototypes -Wextra -DLT_BUILDING_DLL=1"
CXXFLAGS="$CXXFLAGS -Wall -DLT_BUILDING_DLL=1"
#CFLAGS="$CFLAGS -fsanitize=address -Wall -Wmissing-prototypes -Wextra -DLT_BUILDING_DLL=1"
#CXXFLAGS="$CXXFLAGS -fsanitize=address -Wall -DLT_BUILDING_DLL=1"

AC_ARG_ENABLE(address-san, AS_HELP_STRING(--enable-address-san, Enable address and memory sanitisation),
[
Expand Down
16 changes: 16 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
libtrace4 (4.0.23-1) unstable; urgency=medium

* Add new tool: traceucast, a TCP unicast variant of tracemcast.
* Add new input format: ndagtcp, for receiving packets sent by
traceucast.
* libpacketdump: fix premature free when decoding IPMM IRIs
received via an etsilive input.
* tracemcast: fix bug where the sequence number was not being
incremented for each sent datagram.
* object cache data structure: fix potential segfault after
resizing the cache.
* pcapfile: fix issue where packets owned by "dead" pcapfile trace
would have an invalid pcap version.

-- Shane Alcock <[email protected]> Fri, 10 Nov 2023 09:40:41 +1300

libtrace4 (4.0.22-1) unstable; urgency=medium

* Fix segmentation fault when closing an ndag input that had
Expand Down
2 changes: 1 addition & 1 deletion lib/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ endif

AM_CPPFLAGS= @ADD_INCLS@
libtrace_la_LIBADD = @LIBTRACE_LIBS@ @LTLIBOBJS@ $(DPDKLIBS)
libtrace_la_LDFLAGS=-version-info 7:6:0 @ADD_LDFLAGS@
libtrace_la_LDFLAGS=-version-info 7:7:0 @ADD_LDFLAGS@
dagapi.c:
cp @DAG_TOOLS_DIR@/dagapi.c .

Expand Down
2 changes: 1 addition & 1 deletion libpacketdump/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ AM_CPPFLAGS= @ADD_INCLS@ -I../lib
# a shared library.
libpacketdump_la_LIBADD = @LIBPKTDUMP_LIBS@
libpacketdump_la_LDFLAGS=\
-version-info 5:7:0 \
-version-info 5:8:0 \
@ADD_LDFLAGS@

AM_CXXFLAGS=-g -Wall -DDIRNAME=\"$(plugindir)\" $(AM_CPPFLAGS)
Expand Down
5 changes: 4 additions & 1 deletion rpm/libtrace4.spec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: libtrace4
Version: 4.0.22
Version: 4.0.23
Release: 1%{?dist}
Summary: C Library for capturing and analysing network packets

Expand Down Expand Up @@ -127,6 +127,9 @@ find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'


%changelog
* Fri Nov 10 2023 Shane Alcock <[email protected]> - 4.0.23-1
- Updated for 4.0.23 release

* Wed Jun 14 2023 Shane Alcock <[email protected]> - 4.0.22-1
- Updated for 4.0.22 release

Expand Down

0 comments on commit 0fea5ac

Please sign in to comment.