diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a894d865..36764d7df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,18 @@ 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.11] - 2025-07-11 + +### Added +- Added toggle in LDAP configuration to allow to quickly enable/disable it + +### Changed +- Reduced maximum number of contacts displayed in contacts list, new call/conversation, meeting participant selection etc... +- Updated translations + +### Fixed +- Calls top bar wrong notification label when going from two calls to one. + ## [6.0.10] - 2025-06-27 ### Added diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 569f0792b..40e8d5f47 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -32,7 +32,7 @@ if (firebaseCloudMessagingAvailable) { } var gitBranch = ByteArrayOutputStream() -var gitVersion = "6.0.10" +var gitVersion = "6.0.11" task("getGitVersion") { val gitVersionStream = ByteArrayOutputStream() @@ -100,8 +100,8 @@ android { applicationId = packageName minSdk = 28 targetSdk = 35 - versionCode = 600010 // 6.00.010 - versionName = "6.0.10" + versionCode = 600011 // 6.00.011 + versionName = "6.0.11" manifestPlaceholders["appAuthRedirectScheme"] = packageName