diff --git a/CHANGELOG.md b/CHANGELOG.md index bac6daae0..6e22bc7e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,11 @@ 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.23] - 2026-02-02 + +### Fixed +- Fixed Telecom Manager not used on devices running Android < 13 + ## [6.0.22] - 2026-01-20 ### Changed diff --git a/app/build.gradle.kts b/app/build.gradle.kts index c203f1bff..4076af283 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -32,7 +32,7 @@ if (firebaseCloudMessagingAvailable) { } var gitBranch = ByteArrayOutputStream() -var gitVersion = "6.0.22" +var gitVersion = "6.0.23" task("getGitVersion") { val gitVersionStream = ByteArrayOutputStream() @@ -100,8 +100,8 @@ android { applicationId = packageName minSdk = 28 targetSdk = 35 - versionCode = 600022 // 6.00.022 - versionName = "6.0.22" + versionCode = 600023 // 6.00.023 + versionName = "6.0.23" manifestPlaceholders["appAuthRedirectScheme"] = packageName