Skip to content

Commit 7d57fa2

Browse files
authored
release v3.7.0 (#1012)
1 parent 8c626be commit 7d57fa2

File tree

4 files changed

+36
-3
lines changed

4 files changed

+36
-3
lines changed

CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,33 @@ All notable changes to libre will be documented in this file.
55
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

8+
## [v3.7.0] - 2023-11-06
9+
10+
## What's Changed
11+
* trace: add id handling by @sreimers in https://github.com/baresip/re/pull/981
12+
* fmt/pl: add pl_alloc_str by @sreimers in https://github.com/baresip/re/pull/983
13+
* ci/freebsd: limit runtime to 20 mins by @sreimers in https://github.com/baresip/re/pull/985
14+
* Httpauth digest response by @cHuberCoffee in https://github.com/baresip/re/pull/944
15+
* dialog: REVERT fix rtags of forking INVITE with 100rel (#947) by @juha-h in https://github.com/baresip/re/pull/986
16+
* ice: AI_V4MAPPED doesn't exist on OpenBSD by @landryb in https://github.com/baresip/re/pull/989
17+
* test: call - add call on-hold/resume test by @cspiel1 in https://github.com/baresip/re/pull/990
18+
* async: fix re_async_cancel mqueue handling by @sreimers in https://github.com/baresip/re/pull/995
19+
* async: clear callback function pointer after use (#992) by @cspiel1 in https://github.com/baresip/re/pull/993
20+
* Update README.md: Fix link in section Examples. by @Wolf-SO in https://github.com/baresip/re/pull/991
21+
* ci/abi: bump version by @sreimers in https://github.com/baresip/re/pull/1000
22+
* rtp: make flag rtcp_mux atomic by @cspiel1 in https://github.com/baresip/re/pull/997
23+
* cmake,udp: improve QOS_FLOWID and PQOS_FLOWID detection by @sreimers in https://github.com/baresip/re/pull/1002
24+
* types: extend RE_ARG to 32 by @sreimers in https://github.com/baresip/re/pull/1003
25+
* sip/transp: add win32 local transport addr fallback by @sreimers in https://github.com/baresip/re/pull/1001
26+
* cmake/config: set HAVE_THREADS only if threads.h by @sreimers in https://github.com/baresip/re/pull/1005
27+
* ci/freebsd: update vmactions/freebsd-vm@v1 by @sreimers in https://github.com/baresip/re/pull/1006
28+
* Coverity httpauth fixes by @sreimers in https://github.com/baresip/re/pull/1007
29+
* rem/aufile: fix aufile_get_length calculations by @larsimmisch in https://github.com/baresip/re/pull/1008
30+
31+
## New Contributors
32+
* @Wolf-SO made their first contribution in https://github.com/baresip/re/pull/991
33+
34+
**Full Changelog**: https://github.com/baresip/re/compare/v3.6.0...v3.7.0
835

936
## [v3.6.2] - 2023-11-06
1037

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.13)
1515

1616
project(re
17-
VERSION 3.6.2
17+
VERSION 3.7.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 18) # bump if ABI breaks
23+
set(PROJECT_SOVERSION 19) # bump if ABI breaks
2424

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

debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
libre (3.7.0) unstable; urgency=medium
2+
3+
* version 3.7.0
4+
5+
-- Christian Spielberger <[email protected]> Wed, 22 Nov 2023 08:00:00 +0200
6+
17
libre (3.6.2) unstable; urgency=medium
28

39
* version 3.6.2

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

0 commit comments

Comments
 (0)