Skip to content

Commit 2c097fb

Browse files
authored
Release v3.21.1 (#1292)
1 parent e4a4777 commit 2c097fb

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
lines changed

CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,19 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88

9+
## v3.21.1 - 2025-04-04
10+
11+
### What's Changed
12+
* vidconv: fix vidconv_center underflows by @sreimers in https://github.com/baresip/re/pull/1287
13+
* mem: fix buffer overflow in mem_realloc by @maximilianfridrich in https://github.com/baresip/re/pull/1289
14+
* mem/mem_pool: use pointer-pointer to prevent heap-use-after-free by @sreimers in https://github.com/baresip/re/pull/1290
15+
16+
**Full Changelog**: https://github.com/baresip/re/compare/v3.21.0...v3.21.1
17+
18+
919
## v3.21.0 - 2025-03-26
1020

11-
## What's Changed
21+
### What's Changed
1222
* fmt/pl: add pl_strncasecmp and tests by @sreimers in https://github.com/baresip/re/pull/1277
1323
* ci: upgrade run-on-arch-action to fix random segfaults by @alfredh in https://github.com/baresip/re/pull/1280
1424
* test: add testing of RTCP FIR-RFC5104 by @alfredh in https://github.com/baresip/re/pull/1281

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@
1414
cmake_minimum_required(VERSION 3.15...3.31)
1515

1616
project(re
17-
VERSION 3.21.0
17+
VERSION 3.21.1
1818
LANGUAGES C
1919
HOMEPAGE_URL https://github.com/baresip/re
2020
DESCRIPTION "Generic library for real-time communications"
2121
)
2222

23-
set(PROJECT_SOVERSION 31) # bump if ABI breaks
23+
set(PROJECT_SOVERSION 32) # bump if ABI breaks
2424

2525
# Pre-release identifier, comment out on a release
2626
# Increment for breaking changes (dev2, dev3...)

mk/Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Project related configuration options
55
#---------------------------------------------------------------------------
66
PROJECT_NAME = libre
7-
PROJECT_NUMBER = 3.21.0
7+
PROJECT_NUMBER = 3.21.1
88
OUTPUT_DIRECTORY = ../re-dox
99
CREATE_SUBDIRS = NO
1010
OUTPUT_LANGUAGE = English

0 commit comments

Comments
 (0)