Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release v3.14.0 #1163

Merged
merged 1 commit into from
Jul 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,30 @@ 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.14.0] - 2024-07-23

## What's Changed
* aumix: use mutex_alloc() by @alfredh in https://github.com/baresip/re/pull/1142
* sipreg/reg.c: stop retrying registers early after 401/407 by @maximilianfridrich in https://github.com/baresip/re/pull/1143
* aumix: add locking in aumix_source_count() by @alfredh in https://github.com/baresip/re/pull/1145
* test: init err in test_sip_auth_encode() by @alfredh in https://github.com/baresip/re/pull/1146
* sipreg: refactor response_handler else optimization by @sreimers in https://github.com/baresip/re/pull/1147
* vidmix: improve mutex usage by @alfredh in https://github.com/baresip/re/pull/1148
* udp/mcast: use group scopeid as interface for IPv6 by @maximilianfridrich in https://github.com/baresip/re/pull/1149
* .clangd: suppress -Wgnu-zero-variadic-macro-arguments by @maximilianfridrich in https://github.com/baresip/re/pull/1150
* ci/build: use only macos-latest by @sreimers in https://github.com/baresip/re/pull/1153
* cmake: fix resolv on FreeBSD by @sreimers in https://github.com/baresip/re/pull/1152
* test: use h264_stap_decode_annexb() by @alfredh in https://github.com/baresip/re/pull/1151
* sipsess/reply: terminate session if no (PR)ACK received after 64*T1 by @maximilianfridrich in https://github.com/baresip/re/pull/1155
* rtcp: send BYE manually by @alfredh in https://github.com/baresip/re/pull/1154
* cmake: check accept4 only on linux by @sreimers in https://github.com/baresip/re/pull/1157
* cmake: fix iOS HAVE_ROUTE_LIST and darwin dns by @sreimers in https://github.com/baresip/re/pull/1158
* test: check if header and payload is set by @alfredh in https://github.com/baresip/re/pull/1161


**Full Changelog**: https://github.com/baresip/re/compare/v3.13.0...v3.14.0


## [v3.13.0] - 2024-06-19

## 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.14)

project(re
VERSION 3.13.0
VERSION 3.14.0
LANGUAGES C
HOMEPAGE_URL https://github.com/baresip/re
DESCRIPTION "Generic library for real-time communications"
)

set(PROJECT_SOVERSION 25) # bump if ABI breaks
set(PROJECT_SOVERSION 26) # bump if ABI breaks

# Pre-release identifier, comment out on a release
# Increment for breaking changes (dev2, dev3...)
Expand Down
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
libre (3.14.0) unstable; urgency=medium

* version 3.14.0

-- Sebastian Reimers <[email protected]> Tue, 23 Jul 2024 09:00:00 +0200

libre (3.13.0) unstable; urgency=medium

* version 3.13.0
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.13.0
PROJECT_NUMBER = 3.14.0
OUTPUT_DIRECTORY = ../re-dox
CREATE_SUBDIRS = NO
OUTPUT_LANGUAGE = English
Expand Down
Loading