diff --git a/CHANGELOG.md b/CHANGELOG.md index 0d15fd9fa..7c7021139 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,32 @@ 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.11.0] - 2024-04-09 + +### What's Changed +* ci/clang-analyze: bump clang version and fix status-bugs by @sreimers in https://github.com/baresip/re/pull/1079 +* main: Flush list of deleted fhs on `fd_poll` errors by @Lastique in https://github.com/baresip/re/pull/1081 +* main: Use slist for fhs delete list. by @Lastique in https://github.com/baresip/re/pull/1082 +* http/server: fix wrong sizeof in verify_msg by @akscf in https://github.com/baresip/re/pull/1083 +* ci/sanitizers: add mmap rnd_bits workaround by @sreimers in https://github.com/baresip/re/pull/1086 +* rtcp: add printing of TWCC packet by @alfredh in https://github.com/baresip/re/pull/1084 +* include: add re_h264.h to re.h by @alfredh in https://github.com/baresip/re/pull/1087 +* sdp: add sdp media lattr apply function the same way as for rattr by @cHuberCoffee in https://github.com/baresip/re/pull/1089 +* av1: improve packetizer by @alfredh in https://github.com/baresip/re/pull/1088 +* test: minor H.264 improvements by @alfredh in https://github.com/baresip/re/pull/1090 +* tls: add session resumption setter by @maximilianfridrich in https://github.com/baresip/re/pull/1091 +* thread/posix: optimize handler and fix gcc arm32 warning by @sreimers in https://github.com/baresip/re/pull/1093 +* h264: fix for Annex-B bitstreams with 4-byte startcode by @alfredh in https://github.com/baresip/re/pull/1092 +* ci/arch: add armv7 check by @sreimers in https://github.com/baresip/re/pull/1085 +* main,httpauth: fix different from the declaration by @jobo-zt in https://github.com/baresip/re/pull/1095 +* httpauth: fix doxygen comment by @alfredh in https://github.com/baresip/re/pull/1097 + +### New Contributors +* @akscf made their first contribution in https://github.com/baresip/re/pull/1083 + +**Full Changelog**: https://github.com/baresip/re/compare/v3.10.0...v3.11.0 + + ## [v3.10.0] - 2024-03-06 ## What's Changed diff --git a/CMakeLists.txt b/CMakeLists.txt index a2a3d0e72..f5093d429 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -14,13 +14,13 @@ cmake_minimum_required(VERSION 3.14) project(re - VERSION 3.10.0 + VERSION 3.11.0 LANGUAGES C HOMEPAGE_URL https://github.com/baresip/re DESCRIPTION "Generic library for real-time communications" ) -set(PROJECT_SOVERSION 22) # bump if ABI breaks +set(PROJECT_SOVERSION 23) # 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 bcc86a4ba..ced7077e5 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +libre (3.11.0) unstable; urgency=medium + + * version 3.11.0 + + -- Sebastian Reimers Tue, 9 Apr 2024 09:00:00 +0200 + libre (3.10.0) unstable; urgency=medium * version 3.10.0 diff --git a/mk/Doxyfile b/mk/Doxyfile index c946e921c..df583912b 100644 --- a/mk/Doxyfile +++ b/mk/Doxyfile @@ -4,7 +4,7 @@ # Project related configuration options #--------------------------------------------------------------------------- PROJECT_NAME = libre -PROJECT_NUMBER = 3.10.0 +PROJECT_NUMBER = 3.11.0 OUTPUT_DIRECTORY = ../re-dox CREATE_SUBDIRS = NO OUTPUT_LANGUAGE = English