From f6bf52ea152d800d0e12cee273b2c9f62babfb4f Mon Sep 17 00:00:00 2001 From: Mohamed Chibani Date: Fri, 18 Feb 2022 09:09:53 -0500 Subject: [PATCH] re-invite: bump Daemon version to 11.0.2 Bump Daemon version to 11.0.2 to enable re-invite without ICE renegotiation. Gitlab: #671 Change-Id: I287a034b0fb6b6fde77c091ac3543978e533c56a --- configure.ac | 2 +- meson.build | 2 +- src/sip/sipcall.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index e86448dc8..8cfd930a7 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ dnl Jami - configure.ac dnl Process this file with autoconf to produce a configure script. AC_PREREQ([2.69]) -AC_INIT([Jami Daemon],[11.0.1],[jami@gnu.org],[jami]) +AC_INIT([Jami Daemon],[11.0.2],[jami@gnu.org],[jami]) dnl Clear the implicit flags that default to '-g -O2', otherwise they dnl take precedence over the values we set via the diff --git a/meson.build b/meson.build index 4be3ce4b9..4c63bacb9 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('jami-daemon', ['c', 'cpp'], - version: '11.0.1', + version: '11.0.2', license: 'GPL3+', default_options: ['cpp_std=gnu++17', 'buildtype=debugoptimized'], meson_version:'>= 0.56' diff --git a/src/sip/sipcall.cpp b/src/sip/sipcall.cpp index 043722ac4..eb8931ae9 100644 --- a/src/sip/sipcall.cpp +++ b/src/sip/sipcall.cpp @@ -87,7 +87,7 @@ static constexpr int ICE_COMP_COUNT_PER_STREAM {2}; static constexpr auto MULTISTREAM_REQUIRED_VERSION_STR = "10.0.2"sv; static const std::vector MULTISTREAM_REQUIRED_VERSION = split_string_to_unsigned(MULTISTREAM_REQUIRED_VERSION_STR, '.'); -static constexpr auto REUSE_ICE_IN_REINVITE_REQUIRED_VERSION_STR = "11.0.99"sv; +static constexpr auto REUSE_ICE_IN_REINVITE_REQUIRED_VERSION_STR = "11.0.2"sv; static const std::vector REUSE_ICE_IN_REINVITE_REQUIRED_VERSION = split_string_to_unsigned(REUSE_ICE_IN_REINVITE_REQUIRED_VERSION_STR, '.');