From f282bf689c9773e0af4f4114ba89d6a42958c4eb Mon Sep 17 00:00:00 2001 From: Sylvain Berfini Date: Mon, 11 Aug 2025 10:34:11 +0200 Subject: [PATCH] Updated CHANGELOG & bumped version to 6.0.15 --- CHANGELOG.md | 8 ++++++++ app/build.gradle.kts | 6 +++--- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c7e59c741..feb7bf71c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,14 @@ Group changes to describe their impact on the project, as follows: Fixed for any bug fixes. Security to invite users to upgrade in case of vulnerabilities. +## [6.0.15] - 2025-08-11 + +### Fixed +- Crash due to changes in SDK triggering fatal error if linphone_core_stop() is called from linphone_core_iterate() loop (which was done when scanning QR code) + +### Changed +- Prevent leaving assistant after doing a remote provisioning if there is still no account after it (if there was no account before and no account was provided in downloaded config) + ## [6.0.14] - 2025-08-06 ### Fixed diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 607739708..132ba07c3 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -32,7 +32,7 @@ if (firebaseCloudMessagingAvailable) { } var gitBranch = ByteArrayOutputStream() -var gitVersion = "6.0.14" +var gitVersion = "6.0.15" task("getGitVersion") { val gitVersionStream = ByteArrayOutputStream() @@ -100,8 +100,8 @@ android { applicationId = packageName minSdk = 28 targetSdk = 35 - versionCode = 600014 // 6.00.014 - versionName = "6.0.14" + versionCode = 600015 // 6.00.015 + versionName = "6.0.15" manifestPlaceholders["appAuthRedirectScheme"] = packageName