Browse Source

Merge tag 'v0.1.5' into develop

tag
pull/1163/head
Benoit Marty 1 year ago
parent
commit
a3c37cf2ad
  1. 8
      CHANGES.md
  2. 1
      changelog.d/1160.bugfix
  3. 2
      fastlane/metadata/android/en-US/changelogs/40001050.txt
  4. 2
      plugins/src/main/kotlin/Versions.kt

8
CHANGES.md

@ -1,3 +1,11 @@ @@ -1,3 +1,11 @@
Changes in Element X v0.1.5 (2023-08-28)
========================================
Bugfixes 🐛
----------
- Fix crash when opening any room. ([#1160](https://github.com/vector-im/element-x-android/issues/1160))
Changes in Element X v0.1.4 (2023-08-28)
========================================

1
changelog.d/1160.bugfix

@ -1 +0,0 @@ @@ -1 +0,0 @@
Fix crash when opening any room.

2
fastlane/metadata/android/en-US/changelogs/40001050.txt

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

2
plugins/src/main/kotlin/Versions.kt

@ -56,7 +56,7 @@ private const val versionMinor = 1 @@ -56,7 +56,7 @@ private const val versionMinor = 1
// 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.
private const val versionPatch = 6
private const val versionPatch = 5
object Versions {
val versionCode = 4_000_000 + versionMajor * 1_00_00 + versionMinor * 1_00 + versionPatch

Loading…
Cancel
Save