diff --git a/configure.ac b/configure.ac index f4a1fc4..c1ebf4b 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ([2.67]) -AC_INIT([amplet2], [0.10.5], [amp@wand.net.nz]) +AC_INIT([amplet2], [0.10.6], [amp@wand.net.nz]) #AC_CONFIG_SRCDIR([src/measured/measured.c]) AM_INIT_AUTOMAKE([subdir-objects]) AC_CONFIG_HEADERS([config.h]) @@ -42,7 +42,8 @@ m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) # amplet2-0.10.3: 4:1:0 (ABI version 4) # amplet2-0.10.4: 4:1:0 (ABI version 4) # amplet2-0.10.5: 4:2:0 (ABI version 4) -LIBAMP_LIBTOOL_VERSION=4:2:0 +# amplet2-0.10.6: 5:0:0 (ABI version 5) +LIBAMP_LIBTOOL_VERSION=5:0:0 AC_SUBST(LIBAMP_LIBTOOL_VERSION) # Checks for programs. diff --git a/debian/changelog b/debian/changelog index 5da4e7a..3e006ab 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,14 @@ +amplet2 (0.10.6-1) unstable; urgency=low + + * amplet2: Replace function that waits for DNS responses with ub_wait(). + * amplet2: Replace 32bit IPv6 accessors with 16bit when comparing addresses. + * amplet2: Remove unbound DNS context from global variable structure. + * http: Don't call libcurl functions from within libcurl callbacks. + * http: Pass a string to the lexer rather than piping data to yyin. + * standalone tests: Call register function directly rather than using dlsym. + + -- Brendon Jones Fri, 11 Sep 2020 15:50:26 +1200 + amplet2 (0.10.5-1) unstable; urgency=low * amplet2: Zero control struct before use, preventing a crash on exit. diff --git a/rpm/amplet2.spec b/rpm/amplet2.spec index 6853a18..fba5807 100644 --- a/rpm/amplet2.spec +++ b/rpm/amplet2.spec @@ -1,5 +1,5 @@ Name: amplet2 -Version: 0.10.5 +Version: 0.10.6 Release: 1%{?dist} Summary: AMP Network Performance Measurement Suite @@ -176,6 +176,14 @@ fi %changelog +* Fri Sep 11 2020 Brendon Jones 0.10.6-1 +- amplet2: Replace function that waits for DNS responses with ub_wait(). +- amplet2: Replace 32bit IPv6 accessors with 16bit when comparing addresses. +- amplet2: Remove unbound DNS context from global variable structure. +- http: Don't call libcurl functions from within libcurl callbacks. +- http: Pass a string to the lexer rather than piping data to yyin. +- standalone tests: Call register function directly rather than using dlsym. + * Wed Aug 26 2020 Brendon Jones 0.10.5-1 - amplet2: Zero control struct before use, preventing a crash on exit. - amplet2: Check socket options exist before trying to compile them. diff --git a/src/tests/python/setup.py b/src/tests/python/setup.py index a06c387..3679e17 100644 --- a/src/tests/python/setup.py +++ b/src/tests/python/setup.py @@ -4,7 +4,7 @@ from distutils.core import setup setup(name="ampsave", - version="0.10.5", + version="0.10.6", description="AMP server data storage package", author="Brendon Jones", author_email='contact@wand.net.nz',