Skip to content

Commit 0905572

Browse files
authored
release 4.8.0 (#3728)
1 parent a9b3749 commit 0905572

4 files changed

Lines changed: 29 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,32 @@ 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+
## v4.8.0 - 2026-05-13
10+
11+
## What's Changed
12+
* contact: null pointer check by @cspiel1 in https://github.com/baresip/baresip/pull/3698
13+
* misc: auresamp lost after dynamic codec switch by @negbie in https://github.com/baresip/baresip/pull/3685
14+
* ci,windows: remove openssl version number by @alfredh in https://github.com/baresip/baresip/pull/3701
15+
* menu: delayed answer fixes by @cspiel1 in https://github.com/baresip/baresip/pull/3687
16+
* contact: avoid duplicate contacts by @cspiel1 in https://github.com/baresip/baresip/pull/3697
17+
* contact: intelligent matching for incoming calls by @cspiel1 in https://github.com/baresip/baresip/pull/3699
18+
* call: support rejecting re-INVITE by @cspiel1 in https://github.com/baresip/baresip/pull/3702
19+
* jbuf/gnack: improve RTCP_GNACK handling (fixes UB) by @sreimers in https://github.com/baresip/baresip/pull/3703
20+
* srtp: use rtp_is_rtcp_packet() from libre by @alfredh in https://github.com/baresip/baresip/pull/3708
21+
* g726: remove deprecated module by @alfredh in https://github.com/baresip/baresip/pull/3704
22+
* menu: multiple call auto answer by @cspiel1 in https://github.com/baresip/baresip/pull/3710
23+
* test: expand mediaenc to include dtls_srtp and mux by @alfredh in https://github.com/baresip/baresip/pull/3712
24+
* misc/modules: fix redefinition once_flag errors by @sreimers in https://github.com/baresip/baresip/pull/3721
25+
* ua: ua_regladdr LIST_FOREACH cleanup by @cspiel1 in https://github.com/baresip/baresip/pull/3722
26+
* test: update doxygen header for dial_number.c by @alfredh in https://github.com/baresip/baresip/pull/3724
27+
* call: Use CRLF in REFER NOTIFY sipfrag body by @SnowMaster12 in https://github.com/baresip/baresip/pull/3726
28+
29+
## New Contributors
30+
* @SnowMaster12 made their first contribution in https://github.com/baresip/baresip/pull/3726
31+
32+
**Full Changelog**: https://github.com/baresip/baresip/compare/v4.7.0...v4.8.0
33+
34+
935
## v4.7.0 - 2026-04-07
1036

1137
### What's Changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
cmake_minimum_required(VERSION 3.18...4.0)
1515

16-
project(baresip VERSION 4.7.0)
16+
project(baresip VERSION 4.8.0)
1717

1818
set(PROJECT_SOVERSION 27) # bump if ABI breaks
1919

include/baresip.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ extern "C" {
1313

1414

1515
/** Defines the Baresip version string */
16-
#define BARESIP_VERSION "4.7.0"
16+
#define BARESIP_VERSION "4.8.0"
1717

1818

1919
#ifndef NET_MAX_NS

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 = baresip
7-
PROJECT_NUMBER = 4.7.0
7+
PROJECT_NUMBER = 4.8.0
88
OUTPUT_DIRECTORY = ../baresip-dox
99
CREATE_SUBDIRS = NO
1010
OUTPUT_LANGUAGE = English

0 commit comments

Comments
 (0)