diff --git a/CHANGELOG.md b/CHANGELOG.md index 3769c41b4..52f8d5eb4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,7 +10,7 @@ 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.1.0] - Unreleased +## [6.2.0] - Unreleased ### Added - Added the ability to edit/delete chat messages sent less than 24 hours ago. @@ -56,6 +56,7 @@ Group changes to describe their impact on the project, as follows: ### Fixed - Copy raw message content instead of modified one when it contains a participant mention ("@username") +- Do not apply Crashlytics plugin if it's not enabled ## [6.0.22] - 2026-01-20 diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 8f968db00..d81765b1a 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -37,7 +37,7 @@ if (crashlyticsAvailable) { println("Crashlytics has been disabled because either google-services.json file wasn't found or local Linphone SDK build folder isn't configured") } -var gitVersion = "6.1.0-alpha" +var gitVersion = "6.2.0-beta" var gitBranch = "" try { val gitDescribe = ProcessBuilder() @@ -106,8 +106,8 @@ android { applicationId = packageName minSdk = 28 targetSdk = 36 - versionCode = 601002 // 6.01.002 - versionName = "6.1.0-alpha" + versionCode = 601003 // 6.01.003 + versionName = "6.2.0-beta" manifestPlaceholders["appAuthRedirectScheme"] = packageName