diff --git a/TCHAP_CHANGES.md b/TCHAP_CHANGES.md index c5137340c1..ea9e607660 100644 --- a/TCHAP_CHANGES.md +++ b/TCHAP_CHANGES.md @@ -1,3 +1,16 @@ +Changes in Tchap 2.7.1 (2023-02-23) +=================================== + +Bugfixes 🐛 +---------- + - Prevent selecting multiple languages ([#853](https://github.com/tchapgouv/tchap-android-v2/issues/853)) + - Crash on logout ([#857](https://github.com/tchapgouv/tchap-android-v2/issues/857)) + +SDK API changes ⚠️ +------------------ + - [Mainlining] Remove deprecated endpoint /_matrix/client/unstable/users/info ([#811](https://github.com/tchapgouv/tchap-android-v2/issues/811)) + + Changes in Tchap 2.7.0 (2023-02-13) =================================== diff --git a/changelog.d/811.sdk b/changelog.d/811.sdk deleted file mode 100644 index d26c566dfc..0000000000 --- a/changelog.d/811.sdk +++ /dev/null @@ -1 +0,0 @@ -[Mainlining] Remove deprecated endpoint /_matrix/client/unstable/users/info diff --git a/changelog.d/853.bugfix b/changelog.d/853.bugfix deleted file mode 100644 index 0f5d1ce979..0000000000 --- a/changelog.d/853.bugfix +++ /dev/null @@ -1 +0,0 @@ -Prevent selecting multiple languages diff --git a/changelog.d/857.bugfix b/changelog.d/857.bugfix deleted file mode 100644 index b9f18b81c5..0000000000 --- a/changelog.d/857.bugfix +++ /dev/null @@ -1 +0,0 @@ -Crash on logout diff --git a/towncrier.toml b/towncrier.toml index 178c5c7e6b..721b430783 100644 --- a/towncrier.toml +++ b/towncrier.toml @@ -1,5 +1,5 @@ [tool.towncrier] - version = "2.7.0" + version = "2.7.1" directory = "changelog.d" filename = "TCHAP_CHANGES.md" name = "Changes in Tchap" diff --git a/vector-app/build.gradle b/vector-app/build.gradle index a47148a2d8..9253cb9b8a 100644 --- a/vector-app/build.gradle +++ b/vector-app/build.gradle @@ -37,7 +37,7 @@ ext.versionMinor = 7 // 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 = 0 +ext.versionPatch = 1 static def getGitTimestamp() { def cmd = 'git show -s --format=%ct'