diff --git a/CHANGELOG.md b/CHANGELOG.md index 36764d7df..cfec236c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,12 @@ 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.12] - 2025-07-18 + +### Fixed +- Reactions list in bottom sheet update while opened +- Crashes due to late init properties being used before initialized + ## [6.0.11] - 2025-07-11 ### Added diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 40e8d5f47..8169fdf87 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -32,7 +32,7 @@ if (firebaseCloudMessagingAvailable) { } var gitBranch = ByteArrayOutputStream() -var gitVersion = "6.0.11" +var gitVersion = "6.0.12" task("getGitVersion") { val gitVersionStream = ByteArrayOutputStream() @@ -100,8 +100,8 @@ android { applicationId = packageName minSdk = 28 targetSdk = 35 - versionCode = 600011 // 6.00.011 - versionName = "6.0.11" + versionCode = 600012 // 6.00.012 + versionName = "6.0.12" manifestPlaceholders["appAuthRedirectScheme"] = packageName