Skip to content

Commit

Permalink
release v3.19.0 (#1264)
Browse files Browse the repository at this point in the history
  • Loading branch information
cspiel1 authored Jan 15, 2025
1 parent 5f866a9 commit ed0abc4
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 3 deletions.
37 changes: 37 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,43 @@ 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.19.0 - 2025-01-15

## 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
* rtcp: use rtcp_rtpfb_gnack_encode() function by @alfredh in https://github.com/baresip/re/pull/1233
* net/linux: add net_netlink_addrs by @sreimers in https://github.com/baresip/re/pull/1232
* tcp,udp: set TOS (TCLASS) for IPv6 sockets by @maximilianfridrich in https://github.com/baresip/re/pull/1218
* sys/fs: fix fs_fopen return null check by @sreimers in https://github.com/baresip/re/pull/1237
* test: remove mock tcp-server (unused) by @alfredh in https://github.com/baresip/re/pull/1235
* rtp: remove rtcp_psfb_sli_encode() (unused) by @alfredh in https://github.com/baresip/re/pull/1234
* ci/clang: bump clang-18 and use ubuntu 24.04 by @sreimers in https://github.com/baresip/re/pull/1236
* net/linux/addrs: fix point-to-point peer address bug by @sreimers in https://github.com/baresip/re/pull/1239
* ci/coverage: bump min_cov by @sreimers in https://github.com/baresip/re/pull/1241
* ci/sanitizers: bump clang and ubuntu by @sreimers in https://github.com/baresip/re/pull/1242
* net/linux/addrs: fix netlink kernel warnings by @sreimers in https://github.com/baresip/re/pull/1243
* rem: add au_ prefix to calc_nsamp() by @alfredh in https://github.com/baresip/re/pull/1244
* rem/vidconv: add vidconv_center and x and y source offsets by @sreimers in https://github.com/baresip/re/pull/1240
* test: add testcode for rem au-module by @alfredh in https://github.com/baresip/re/pull/1245
* mem: remove peak from memstat by @alfredh in https://github.com/baresip/re/pull/1238
* debian: replace with CPack DEB Generator by @sreimers in https://github.com/baresip/re/pull/1247
* copyright: happy new year 2025 by @sreimers in https://github.com/baresip/re/pull/1246
* test/vidconv: remove static struct test by @sreimers in https://github.com/baresip/re/pull/1248
* net/linux/addrs: use list instead of fixed array for interface up by @sreimers in https://github.com/baresip/re/pull/1251
* test: optional IPv6 for tcp/udp tos test by @alfredh in https://github.com/baresip/re/pull/1252
* cmake: update min requirement and use range by @sreimers in https://github.com/baresip/re/pull/1253
* rem/vid/frame: fix vidframe init by @sreimers in https://github.com/baresip/re/pull/1257
* atomic: fix compilation for C++ and Windows-ARM64 by @alfredh in https://github.com/baresip/re/pull/1259
* test: add test for C++ applications by @alfredh in https://github.com/baresip/re/pull/1254
* ci: use ubuntu-22.04 were needed by @sreimers in https://github.com/baresip/re/pull/1261
* cmake: enable compiler warnings for C only by @alfredh in https://github.com/baresip/re/pull/1263


**Full Changelog**: https://github.com/baresip/re/compare/v3.18.0...v3.19.0


## v3.18.0 - 2024-12-11

## What's Changed
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.18.0
VERSION 3.19.0
LANGUAGES C
HOMEPAGE_URL https://github.com/baresip/re
DESCRIPTION "Generic library for real-time communications"
)

set(PROJECT_SOVERSION 28) # bump if ABI breaks
set(PROJECT_SOVERSION 29) # 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.18.0
PROJECT_NUMBER = 3.19.0
OUTPUT_DIRECTORY = ../re-dox
CREATE_SUBDIRS = NO
OUTPUT_LANGUAGE = English
Expand Down

0 comments on commit ed0abc4

Please sign in to comment.