From 7d46d111b6d2d84395b629def6dd034751c7689b Mon Sep 17 00:00:00 2001 From: Sebastian Reimers Date: Tue, 23 Jul 2024 10:10:09 +0200 Subject: [PATCH] release v3.14.0 --- CHANGELOG.md | 24 ++++++++++++++++++++++++ CMakeLists.txt | 4 ++-- debian/changelog | 6 ++++++ mk/Doxyfile | 2 +- 4 files changed, 33 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c3e456c1..1352009df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,30 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [v3.14.0] - 2024-07-23 + +## What's Changed +* aumix: use mutex_alloc() by @alfredh in https://github.com/baresip/re/pull/1142 +* sipreg/reg.c: stop retrying registers early after 401/407 by @maximilianfridrich in https://github.com/baresip/re/pull/1143 +* aumix: add locking in aumix_source_count() by @alfredh in https://github.com/baresip/re/pull/1145 +* test: init err in test_sip_auth_encode() by @alfredh in https://github.com/baresip/re/pull/1146 +* sipreg: refactor response_handler else optimization by @sreimers in https://github.com/baresip/re/pull/1147 +* vidmix: improve mutex usage by @alfredh in https://github.com/baresip/re/pull/1148 +* udp/mcast: use group scopeid as interface for IPv6 by @maximilianfridrich in https://github.com/baresip/re/pull/1149 +* .clangd: suppress -Wgnu-zero-variadic-macro-arguments by @maximilianfridrich in https://github.com/baresip/re/pull/1150 +* ci/build: use only macos-latest by @sreimers in https://github.com/baresip/re/pull/1153 +* cmake: fix resolv on FreeBSD by @sreimers in https://github.com/baresip/re/pull/1152 +* test: use h264_stap_decode_annexb() by @alfredh in https://github.com/baresip/re/pull/1151 +* sipsess/reply: terminate session if no (PR)ACK received after 64*T1 by @maximilianfridrich in https://github.com/baresip/re/pull/1155 +* rtcp: send BYE manually by @alfredh in https://github.com/baresip/re/pull/1154 +* cmake: check accept4 only on linux by @sreimers in https://github.com/baresip/re/pull/1157 +* cmake: fix iOS HAVE_ROUTE_LIST and darwin dns by @sreimers in https://github.com/baresip/re/pull/1158 +* test: check if header and payload is set by @alfredh in https://github.com/baresip/re/pull/1161 + + +**Full Changelog**: https://github.com/baresip/re/compare/v3.13.0...v3.14.0 + + ## [v3.13.0] - 2024-06-19 ## What's Changed diff --git a/CMakeLists.txt b/CMakeLists.txt index 981052de0..b61a16ef6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -14,13 +14,13 @@ cmake_minimum_required(VERSION 3.14) project(re - VERSION 3.13.0 + VERSION 3.14.0 LANGUAGES C HOMEPAGE_URL https://github.com/baresip/re DESCRIPTION "Generic library for real-time communications" ) -set(PROJECT_SOVERSION 25) # bump if ABI breaks +set(PROJECT_SOVERSION 26) # bump if ABI breaks # Pre-release identifier, comment out on a release # Increment for breaking changes (dev2, dev3...) diff --git a/debian/changelog b/debian/changelog index a42e88786..22cba17d5 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +libre (3.14.0) unstable; urgency=medium + + * version 3.14.0 + + -- Sebastian Reimers Tue, 23 Jul 2024 09:00:00 +0200 + libre (3.13.0) unstable; urgency=medium * version 3.13.0 diff --git a/mk/Doxyfile b/mk/Doxyfile index 6b15fbd76..6cb70eea3 100644 --- a/mk/Doxyfile +++ b/mk/Doxyfile @@ -4,7 +4,7 @@ # Project related configuration options #--------------------------------------------------------------------------- PROJECT_NAME = libre -PROJECT_NUMBER = 3.13.0 +PROJECT_NUMBER = 3.14.0 OUTPUT_DIRECTORY = ../re-dox CREATE_SUBDIRS = NO OUTPUT_LANGUAGE = English