-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump version number to 0.10.6 and update changelog.
- Loading branch information
Showing
4 changed files
with
24 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# Process this file with autoconf to produce a configure script. | ||
|
||
AC_PREREQ([2.67]) | ||
AC_INIT([amplet2], [0.10.5], [[email protected]]) | ||
AC_INIT([amplet2], [0.10.6], [[email protected]]) | ||
#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. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 <[email protected]> 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. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 <[email protected]> 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 <[email protected]> 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. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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='[email protected]', | ||
|