Skip to content

Commit

Permalink
release v3.20.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sreimers committed Feb 18, 2025
1 parent 6370f55 commit 472a3ed
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 5 deletions.
22 changes: 20 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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...)
Expand Down
2 changes: 1 addition & 1 deletion mk/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 472a3ed

Please sign in to comment.