generating 1.4.27 changelog and updating version

This commit is contained in:
Adam Brown 2022-07-06 16:01:19 +01:00
parent 310c4b4a24
commit 2cbb5306f9
8 changed files with 15 additions and 6 deletions

View File

@ -1,3 +1,14 @@
Changes in Element v1.4.27 (2022-07-06)
=======================================
Bugfixes 🐛
----------
- Fixes crash when sharing plain text, such as a url ([#6451](https://github.com/vector-im/element-android/issues/6451))
- Fix crashes on Timeline [Thread] due to range validation ([#6461](https://github.com/vector-im/element-android/issues/6461))
- Fix crashes when opening Thread ([#6463](https://github.com/vector-im/element-android/issues/6463))
- Fix ConcurrentModificationException on BackgroundDetectionObserver ([#6469](https://github.com/vector-im/element-android/issues/6469))
Changes in Element v1.4.26 (2022-06-30)
=======================================

View File

@ -1 +0,0 @@
Fixes crash when sharing plain text, such as a url

View File

@ -1 +0,0 @@
Fix crashes on Timeline [Thread] due to range validation

View File

@ -1 +0,0 @@
Fix crashes when opening Thread

View File

@ -1 +0,0 @@
Fix ConcurrentModificationException on BackgroundDetectionObserver

View File

@ -0,0 +1,2 @@
Main changes in this version: Various bug fixes and stability improvements.
Full changelog: https://github.com/vector-im/element-android/releases

View File

@ -60,7 +60,7 @@ android {
// that the app's state is completely cleared between tests.
testInstrumentationRunnerArguments clearPackageData: 'true'
buildConfigField "String", "SDK_VERSION", "\"1.4.26\""
buildConfigField "String", "SDK_VERSION", "\"1.4.27\""
buildConfigField "String", "GIT_SDK_REVISION", "\"${gitRevision()}\""
buildConfigField "String", "GIT_SDK_REVISION_UNIX_DATE", "\"${gitRevisionUnixDate()}\""

View File

@ -35,7 +35,7 @@ ext.versionMinor = 4
// Note: even values are reserved for regular release, odd values for hotfix release.
// When creating a hotfix, you should decrease the value, since the current value
// is the value for the next regular release.
ext.versionPatch = 26
ext.versionPatch = 27
static def getGitTimestamp() {
def cmd = 'git show -s --format=%ct'