From 472a3edf49905025e060f4bf4fdfb0d60167f0c3 Mon Sep 17 00:00:00 2001 From: Sebastian Reimers Date: Tue, 18 Feb 2025 09:47:24 +0100 Subject: [PATCH] release v3.20.0 --- CHANGELOG.md | 22 ++++++++++++++++++++-- CMakeLists.txt | 4 ++-- mk/Doxyfile | 2 +- 3 files changed, 23 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 56d486d11..2ab066d5b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,9 +6,27 @@ 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.20.0 - 2025-02-18 + +### What's Changed +* http/server: increase BUFSIZE_MAX to 1 MB and add http_set_max_body_size by @sreimers in https://github.com/baresip/re/pull/1262 +* test: init err to zero (fixes cppcheck warning) by @alfredh in https://github.com/baresip/re/pull/1265 +* test: add RTCP_APP to RTCP test by @alfredh in https://github.com/baresip/re/pull/1266 +* mem,aubuf: add pre-allocated memory pool management by @sreimers in https://github.com/baresip/re/pull/1255 +* test: increase test_oom levels and oom fixes by @sreimers in https://github.com/baresip/re/pull/1260 +* mem/mem_pool: fix mem_pool_extend new member destructor by @sreimers in https://github.com/baresip/re/pull/1267 +* ci: bump version and min_cov by @sreimers in https://github.com/baresip/re/pull/1268 +* av1: remove duplicate/unused getbit.c by @alfredh in https://github.com/baresip/re/pull/1272 +* test/cmake: link C++ lib by @sreimers in https://github.com/baresip/re/pull/1269 +* http: restart timer for each chunk by @fAuernigg in https://github.com/baresip/re/pull/1273 +* ci/valgrind: use ubuntu-latest by @sreimers in https://github.com/baresip/re/pull/1274 + +**Full Changelog**: https://github.com/baresip/re/compare/v3.19.0...v3.20.0 + + ## v3.19.0 - 2025-01-15 -## What's Changed +### What's Changed * fmt: fix pl trim methods and add tests by @maximilianfridrich in https://github.com/baresip/re/pull/1226 * sipsess: add sipsess_msg getter function by @cspiel1 in https://github.com/baresip/re/pull/1225 * rtp/sess: fix missing srate_tx locking by @sreimers in https://github.com/baresip/re/pull/1231 @@ -45,7 +63,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## v3.18.0 - 2024-12-11 -## What's Changed +### What's Changed * odict: add odict_pl_add() by @cspiel1 in https://github.com/baresip/re/pull/1208 * ci/build: remove Ubuntu 20.04, add 24.04, use GCC 14 on 24.04 by @robert-scheck in https://github.com/baresip/re/pull/1210 * test: vertical alignment of integration test names by @alfredh in https://github.com/baresip/re/pull/1212 diff --git a/CMakeLists.txt b/CMakeLists.txt index eababb754..ad14d270b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -14,13 +14,13 @@ cmake_minimum_required(VERSION 3.15...3.31) project(re - VERSION 3.19.0 + VERSION 3.20.0 LANGUAGES C HOMEPAGE_URL https://github.com/baresip/re DESCRIPTION "Generic library for real-time communications" ) -set(PROJECT_SOVERSION 29) # bump if ABI breaks +set(PROJECT_SOVERSION 30) # bump if ABI breaks # Pre-release identifier, comment out on a release # Increment for breaking changes (dev2, dev3...) diff --git a/mk/Doxyfile b/mk/Doxyfile index e566bfd09..0a24f9c79 100644 --- a/mk/Doxyfile +++ b/mk/Doxyfile @@ -4,7 +4,7 @@ # Project related configuration options #--------------------------------------------------------------------------- PROJECT_NAME = libre -PROJECT_NUMBER = 3.19.0 +PROJECT_NUMBER = 3.20.0 OUTPUT_DIRECTORY = ../re-dox CREATE_SUBDIRS = NO OUTPUT_LANGUAGE = English