Skip to content

Commit ed0abc4

Browse files
authored
release v3.19.0 (#1264)
1 parent 5f866a9 commit ed0abc4

File tree

3 files changed

+40
-3
lines changed

3 files changed

+40
-3
lines changed

CHANGELOG.md

+37
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,43 @@ 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.19.0 - 2025-01-15
10+
11+
## What's Changed
12+
* fmt: fix pl trim methods and add tests by @maximilianfridrich in https://github.com/baresip/re/pull/1226
13+
* sipsess: add sipsess_msg getter function by @cspiel1 in https://github.com/baresip/re/pull/1225
14+
* rtp/sess: fix missing srate_tx locking by @sreimers in https://github.com/baresip/re/pull/1231
15+
* rtcp: use rtcp_rtpfb_gnack_encode() function by @alfredh in https://github.com/baresip/re/pull/1233
16+
* net/linux: add net_netlink_addrs by @sreimers in https://github.com/baresip/re/pull/1232
17+
* tcp,udp: set TOS (TCLASS) for IPv6 sockets by @maximilianfridrich in https://github.com/baresip/re/pull/1218
18+
* sys/fs: fix fs_fopen return null check by @sreimers in https://github.com/baresip/re/pull/1237
19+
* test: remove mock tcp-server (unused) by @alfredh in https://github.com/baresip/re/pull/1235
20+
* rtp: remove rtcp_psfb_sli_encode() (unused) by @alfredh in https://github.com/baresip/re/pull/1234
21+
* ci/clang: bump clang-18 and use ubuntu 24.04 by @sreimers in https://github.com/baresip/re/pull/1236
22+
* net/linux/addrs: fix point-to-point peer address bug by @sreimers in https://github.com/baresip/re/pull/1239
23+
* ci/coverage: bump min_cov by @sreimers in https://github.com/baresip/re/pull/1241
24+
* ci/sanitizers: bump clang and ubuntu by @sreimers in https://github.com/baresip/re/pull/1242
25+
* net/linux/addrs: fix netlink kernel warnings by @sreimers in https://github.com/baresip/re/pull/1243
26+
* rem: add au_ prefix to calc_nsamp() by @alfredh in https://github.com/baresip/re/pull/1244
27+
* rem/vidconv: add vidconv_center and x and y source offsets by @sreimers in https://github.com/baresip/re/pull/1240
28+
* test: add testcode for rem au-module by @alfredh in https://github.com/baresip/re/pull/1245
29+
* mem: remove peak from memstat by @alfredh in https://github.com/baresip/re/pull/1238
30+
* debian: replace with CPack DEB Generator by @sreimers in https://github.com/baresip/re/pull/1247
31+
* copyright: happy new year 2025 by @sreimers in https://github.com/baresip/re/pull/1246
32+
* test/vidconv: remove static struct test by @sreimers in https://github.com/baresip/re/pull/1248
33+
* net/linux/addrs: use list instead of fixed array for interface up by @sreimers in https://github.com/baresip/re/pull/1251
34+
* test: optional IPv6 for tcp/udp tos test by @alfredh in https://github.com/baresip/re/pull/1252
35+
* cmake: update min requirement and use range by @sreimers in https://github.com/baresip/re/pull/1253
36+
* rem/vid/frame: fix vidframe init by @sreimers in https://github.com/baresip/re/pull/1257
37+
* atomic: fix compilation for C++ and Windows-ARM64 by @alfredh in https://github.com/baresip/re/pull/1259
38+
* test: add test for C++ applications by @alfredh in https://github.com/baresip/re/pull/1254
39+
* ci: use ubuntu-22.04 were needed by @sreimers in https://github.com/baresip/re/pull/1261
40+
* cmake: enable compiler warnings for C only by @alfredh in https://github.com/baresip/re/pull/1263
41+
42+
43+
**Full Changelog**: https://github.com/baresip/re/compare/v3.18.0...v3.19.0
44+
45+
946
## v3.18.0 - 2024-12-11
1047

1148
## What's Changed

CMakeLists.txt

+2-2
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.18.0
17+
VERSION 3.19.0
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 28) # bump if ABI breaks
23+
set(PROJECT_SOVERSION 29) # bump if ABI breaks
2424

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

mk/Doxyfile

+1-1
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.18.0
7+
PROJECT_NUMBER = 3.19.0
88
OUTPUT_DIRECTORY = ../re-dox
99
CREATE_SUBDIRS = NO
1010
OUTPUT_LANGUAGE = English

0 commit comments

Comments
 (0)