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.16.0 #1193

Merged
merged 1 commit into from
Oct 2, 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
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,23 @@ All notable changes to libre 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).

## [v3.16.0] - 2024-10-02

## What's Changed
* thread: fix pthread_setname_np NetBSD by @leleliu008 in https://github.com/baresip/re/pull/1182
* ice: AI_V4MAPPED macro is missing on some BSD systems by @leleliu008 in https://github.com/baresip/re/pull/1181
* rtp/rtcp: add RTCP Generic NACK packet send (RFC 4585 6.2.1) by @sreimers in https://github.com/baresip/re/pull/1186
* main/fd_listen: return EMFILE if maxfds is reached by @sreimers in https://github.com/baresip/re/pull/1185
* ci: build retest for android by @alfredh in https://github.com/baresip/re/pull/1187
* test: minor cmake cleanup by @alfredh in https://github.com/baresip/re/pull/1188
* test: fix re_printf format string for multithread test by @alfredh in https://github.com/baresip/re/pull/1190
* ci: run retest on Fedora by @alfredh in https://github.com/baresip/re/pull/1191

## New Contributors
* @leleliu008 made their first contribution in https://github.com/baresip/re/pull/1182

**Full Changelog**: https://github.com/baresip/re/compare/v3.15.0...v3.16.0


## [v3.15.0] - 2024-08-28

Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
cmake_minimum_required(VERSION 3.14)

project(re
VERSION 3.15.0
VERSION 3.16.0
LANGUAGES C
HOMEPAGE_URL https://github.com/baresip/re
DESCRIPTION "Generic library for real-time communications"
Expand Down
12 changes: 12 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
libre (3.16.0) unstable; urgency=medium

* version 3.16.0

-- Christian Spielberger <[email protected]> Wed, 2 Oct 2024 08:17:00 +0100

libre (3.15.0) unstable; urgency=medium

* version 3.15.0

-- Alfred E. Heggestad <[email protected]> Wed, 28 Aug 2024 08:21:33 +0200

libre (3.14.0) unstable; urgency=medium

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