From 69c1059f2eaf70908f3868f1c64c73d10b14d262 Mon Sep 17 00:00:00 2001 From: Christian Spielberger Date: Wed, 9 Aug 2023 07:51:08 +0200 Subject: [PATCH] release v3.4.0 --- CHANGELOG.md | 32 ++++++++++++++++++++++++++++++++ CMakeLists.txt | 2 +- debian/changelog | 6 ++++++ mk/Doxyfile | 2 +- 4 files changed, 40 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 15d17e64d..2ea2d88dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,38 @@ All notable changes to libre will be documented in this file. 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.4.0] - 2023-08-09 + +## What's Changed +* rtpext: uniform parameter name fixes doxygen warning by @cspiel1 in https://github.com/baresip/re/pull/868 +* mk: add rem to doxygen inputs by @cspiel1 in https://github.com/baresip/re/pull/869 +* vidmix: allow different pixel format by @sreimers in https://github.com/baresip/re/pull/864 +* ajb doxygen by @cspiel1 in https://github.com/baresip/re/pull/870 +* aes: correct parameters for stub by @cspiel1 in https://github.com/baresip/re/pull/872 +* ci/build: fail on cmake and compile warnings by @sreimers in https://github.com/baresip/re/pull/873 +* fmt: fix format string in fmt_timestamp() by @alfredh in https://github.com/baresip/re/pull/874 +* hmac,md5,sha: add mbedtls backend by @cspiel1 in https://github.com/baresip/re/pull/871 +* test: no need to rewind freshly allocated mbuf by @alfredh in https://github.com/baresip/re/pull/876 +* httpauth: basic challenge creation and verification functions by @cHuberCoffee in https://github.com/baresip/re/pull/875 +* Fix include of re_thread.h in re_tmr.h by @nielsavonds in https://github.com/baresip/re/pull/879 +* btrace: fix WIN32_LEAN_AND_MEAN macro redefine by @jobo-zt in https://github.com/baresip/re/pull/880 +* aumix: add record sum handler by @sreimers in https://github.com/baresip/re/pull/877 +* ci/win: disable x86 testing by @sreimers in https://github.com/baresip/re/pull/883 +* sipsess: allow UPDATE and INFO in early dialog by @maximilianfridrich in https://github.com/baresip/re/pull/878 +* prefix macro VERSION by @cspiel1 in https://github.com/baresip/re/pull/882 +* main: use HAVE_SIGNAL in init.c by @cspiel1 in https://github.com/baresip/re/pull/881 +* test: change to ASSERT_XXX macros, remove EXPECT_XXX macros by @alfredh in https://github.com/baresip/re/pull/885 +* fmt: handy functions for pointer-length objects by @cHuberCoffee in https://github.com/baresip/re/pull/884 +* test: add TWCC test from Chrome 114 packet by @alfredh in https://github.com/baresip/re/pull/886 +* sipsess/listen: Fix target_refresh_handler by @maximilianfridrich in https://github.com/baresip/re/pull/888 +* ci/mingw: downgrade cmake by @sreimers in https://github.com/baresip/re/pull/890 +* cmake: fix target include path for subdir projects by @sreimers in https://github.com/baresip/re/pull/891 + +## New Contributors +* @nielsavonds made their first contribution in https://github.com/baresip/re/pull/879 +* @jobo-zt made their first contribution in https://github.com/baresip/re/pull/880 + +**Full Changelog**: https://github.com/baresip/re/compare/v3.3.0...v3.4.0 ## [v3.3.0] - 2023-07-05 diff --git a/CMakeLists.txt b/CMakeLists.txt index c5f764cc8..17988ac1f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -14,7 +14,7 @@ cmake_minimum_required(VERSION 3.13) project(re - VERSION 3.3.0 + VERSION 3.4.0 LANGUAGES C HOMEPAGE_URL https://github.com/baresip/re DESCRIPTION "Generic library for real-time communications" diff --git a/debian/changelog b/debian/changelog index 377952cd6..f15fb95a1 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +libre (3.4.0) unstable; urgency=medium + + * version 3.4.0 + + -- Christian Spielberger Wed, 9 Aug 2023 08:00:00 +0200 + libre (3.3.0) unstable; urgency=medium * version 3.3.0 diff --git a/mk/Doxyfile b/mk/Doxyfile index 3ea3b4aa7..d6d0fb60d 100644 --- a/mk/Doxyfile +++ b/mk/Doxyfile @@ -4,7 +4,7 @@ # Project related configuration options #--------------------------------------------------------------------------- PROJECT_NAME = libre -PROJECT_NUMBER = 3.3.0 +PROJECT_NUMBER = 3.4.0 OUTPUT_DIRECTORY = ../re-dox CREATE_SUBDIRS = NO OUTPUT_LANGUAGE = English