Skip to content

Commit

Permalink
release v3.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sreimers committed Apr 9, 2024
1 parent 3af587b commit 73f45c1
Show file tree
Hide file tree
Showing 5 changed files with 40 additions and 5 deletions.
31 changes: 30 additions & 1 deletion CHANGELOG.md
Expand Up @@ -5,9 +5,38 @@ All notable changes to baresip will be documented in this file.
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).

## 3.10.1 - 2024-03-12
## 3.11.0 - 2024-04-09

### What's Changed
* account: read catchall flag from accounts file by @cspiel1 in https://github.com/baresip/baresip/pull/2925
* vp8/encode: optimizations and target_bitrate fix by @sreimers in https://github.com/baresip/baresip/pull/2936
* vp8,vp9: fix deprecated decode codec init by @sreimers in https://github.com/baresip/baresip/pull/2952
* aureceiver: fix mtx_unlock on discard by @sreimers in https://github.com/baresip/baresip/pull/2955
* release v3.10.1 by @sreimers in https://github.com/baresip/baresip/pull/2958
* message: return 403 instead of 488 by @maximilianfridrich in https://github.com/baresip/baresip/pull/2953
* netroam/cmake: add optional netlink detection by @sreimers in https://github.com/baresip/baresip/pull/2960
* ci/sanitizers: add mmap rnd_bits workaround by @sreimers in https://github.com/baresip/baresip/pull/2967
* account: set inreq_allowed=yes as default by @maximilianfridrich in https://github.com/baresip/baresip/pull/2961
* account: use correct format %zu for printing outbound by @maximilianfridrich in https://github.com/baresip/baresip/pull/2963
* stream: fix empty rtcp_stats for rtx.ssrc reception reports by @sreimers in https://github.com/baresip/baresip/pull/2969
* stream: avoid sanitizer warnings for strm->tx by @cspiel1 in https://github.com/baresip/baresip/pull/2949
* avcodec: remove re_h264 extra header by @sreimers in https://github.com/baresip/baresip/pull/2971
* play: err handling and ensure eof by @cspiel1 in https://github.com/baresip/baresip/pull/2972
* stream: add stream_jbuf_stats() by @sreimers in https://github.com/baresip/baresip/pull/2973
* sndfile: write correct sample rate to WAV header by @cspiel1 in https://github.com/baresip/baresip/pull/2976
* tls: add session resumption setter by @maximilianfridrich in https://github.com/baresip/baresip/pull/2977
* avcodec: use util function to decode H.264 STAP-A by @alfredh in https://github.com/baresip/baresip/pull/2978
* mixausrc: fix ausrc resampling by @cspiel1 in https://github.com/baresip/baresip/pull/2981
* ci/build: remove obsolete for loop by @cspiel1 in https://github.com/baresip/baresip/pull/2985


**Full Changelog**: https://github.com/baresip/baresip/compare/v3.10.1...v3.11.0


## 3.10.1 - 2024-03-12

* aureceiver: security fix mtx_unlock on discard by @sreimers in https://github.com/baresip/baresip/pull/2955


## 3.10.0 - 2024-03-06

Expand Down
4 changes: 2 additions & 2 deletions CMakeLists.txt
Expand Up @@ -13,9 +13,9 @@

cmake_minimum_required(VERSION 3.14)

project(baresip VERSION 3.10.1)
project(baresip VERSION 3.11.0)

set(PROJECT_SOVERSION 14) # bump if ABI breaks
set(PROJECT_SOVERSION 15) # 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
@@ -1,3 +1,9 @@
baresip (3.11.0) unstable; urgency=medium

* version 3.11.0

-- Sebastian Reimers <sebastian.reimers@gmail.com> Tue, 09 Apr 2024 09:08:00 +0200

baresip (3.10.1) unstable; urgency=medium

* version 3.10.1
Expand Down
2 changes: 1 addition & 1 deletion include/baresip.h
Expand Up @@ -13,7 +13,7 @@ extern "C" {


/** Defines the Baresip version string */
#define BARESIP_VERSION "3.10.1"
#define BARESIP_VERSION "3.11.0"


#ifndef NET_MAX_NS
Expand Down
2 changes: 1 addition & 1 deletion mk/Doxyfile
Expand Up @@ -4,7 +4,7 @@
# Project related configuration options
#---------------------------------------------------------------------------
PROJECT_NAME = baresip
PROJECT_NUMBER = 3.10.1
PROJECT_NUMBER = 3.11.0
OUTPUT_DIRECTORY = ../baresip-dox
CREATE_SUBDIRS = NO
OUTPUT_LANGUAGE = English
Expand Down

0 comments on commit 73f45c1

Please sign in to comment.