Skip to content

Commit 51a40ff

Browse files
authored
release v3.13.0 (#1144)
1 parent 47a5d9a commit 51a40ff

File tree

4 files changed

+42
-3
lines changed

4 files changed

+42
-3
lines changed

CHANGELOG.md

+27
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,33 @@ 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+
## [v3.13.0] - 2024-06-19
10+
11+
## What's Changed
12+
* http/client: use dynamically sized buffers for PEM setters by @maximilianfridrich in https://github.com/baresip/re/pull/1117
13+
* tls: allow secure TLS renegotiation by @maximilianfridrich in https://github.com/baresip/re/pull/1121
14+
* tls: always enable USE_OPENSSL_SRTP by @alfredh in https://github.com/baresip/re/pull/1122
15+
* main: remove call to openssl init by @alfredh in https://github.com/baresip/re/pull/1120
16+
* sip/transp: Allow ACK w/o Max-Forwards header by @juha-h in https://github.com/baresip/re/pull/1124
17+
* net: remove NET_ADDRSTRLEN by @alfredh in https://github.com/baresip/re/pull/1123
18+
* ci/ios: increase min deployment target by @sreimers in https://github.com/baresip/re/pull/1126
19+
* tls/http: add certificate chain setters by @maximilianfridrich in https://github.com/baresip/re/pull/1125
20+
* sipsess/connect: set sess->established immediately on 200 receival by @maximilianfridrich in https://github.com/baresip/re/pull/1128
21+
* test/cmake: add crypt32 linking for WIN32 by @sreimers in https://github.com/baresip/re/pull/1130
22+
* ci/sanitizers: use clang-17 by @sreimers in https://github.com/baresip/re/pull/1131
23+
* ci/sanitizer: add undefined behavior sanitizer by @sreimers in https://github.com/baresip/re/pull/1132
24+
* sip: verify call-id, to-tag, cseq of INVITE response by @maximilianfridrich in https://github.com/baresip/re/pull/1129
25+
* ci: remove one unneeded directory change by @alfredh in https://github.com/baresip/re/pull/1134
26+
* test: change GENERATOR_SSRC from define to type by @alfredh in https://github.com/baresip/re/pull/1133
27+
* tls: refactoring SNI ctx usage for libressl support by @sreimers in https://github.com/baresip/re/pull/1136
28+
* test: add test_rtcp_loop() by @alfredh in https://github.com/baresip/re/pull/1137
29+
* ci/coverage: increase min coverage by @sreimers in https://github.com/baresip/re/pull/1138
30+
* ci/coverage: use json summary and upload html details by @sreimers in https://github.com/baresip/re/pull/1139
31+
* sip: add host param to sip_send_conn by @sreimers in https://github.com/baresip/re/pull/1141
32+
33+
34+
**Full Changelog**: https://github.com/baresip/re/compare/v3.12.0...v3.13.0
35+
936
## [v3.12.0] - 2024-05-15
1037

1138
## What's Changed

CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@
1414
cmake_minimum_required(VERSION 3.14)
1515

1616
project(re
17-
VERSION 3.12.0
17+
VERSION 3.13.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 24) # bump if ABI breaks
23+
set(PROJECT_SOVERSION 25) # bump if ABI breaks
2424

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

debian/changelog

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
libre (3.13.0) unstable; urgency=medium
2+
3+
* version 3.13.0
4+
5+
-- Christian Spielberger <[email protected]> Wed, 19 Jun 2024 07:12:37 +0100
6+
7+
libre (3.12.0) unstable; urgency=medium
8+
9+
* version 3.12.0
10+
11+
-- Alfred E. Heggestad <[email protected]> Wed, 15 May 2024 08:37:35 +0200
12+
113
libre (3.11.0) unstable; urgency=medium
214

315
* version 3.11.0

mk/Doxyfile

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

0 commit comments

Comments
 (0)