From 6d3245abcb733172310d808ae57ec8efb485bf3f Mon Sep 17 00:00:00 2001 From: Dessalines Date: Fri, 8 Mar 2024 11:29:22 -0500 Subject: [PATCH] Upping version. --- RELEASES.md | 18 ++++++++++++++++++ app/build.gradle | 4 ++-- app/src/main/assets/RELEASES.md | 18 +++++++++++++----- generate_changelog.sh | 1 - 4 files changed, 33 insertions(+), 8 deletions(-) diff --git a/RELEASES.md b/RELEASES.md index 1304327b8..c996c58f4 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,7 +1,25 @@ +# Thumb-Key 2.6.25 (2024-03-08) + +## What's Changed in 2.6.25 + +- Add Chinese Simplified Translation by @WeiguangTWK in [#794](https://github.com/dessalines/thumb-key/pull/794) +- Use dakuten key for more characters by @K0baU in [#797](https://github.com/dessalines/thumb-key/pull/797) +- Update EO/EN/DE layout to make shift/capslock behavior match other layouts by @slashdevslashurandom in [#795](https://github.com/dessalines/thumb-key/pull/795) +- Add Breton French keyboard by @zeecho in [#793](https://github.com/dessalines/thumb-key/pull/793) + +## New Contributors + +- @WeiguangTWK made their first contribution in [#794](https://github.com/dessalines/thumb-key/pull/794) +- @slashdevslashurandom made their first contribution in [#795](https://github.com/dessalines/thumb-key/pull/795) +- @zeecho made their first contribution in [#793](https://github.com/dessalines/thumb-key/pull/793) + +**Full Changelog**: https://github.com/dessalines/thumb-key/compare/2.6.24...2.6.25 + # Thumb-Key 2.6.24 (2024-03-04) ## What's Changed in 2.6.24 +- Upping version. by @dessalines - Fixing corner size. Fixes #789 by @dessalines in [#791](https://github.com/dessalines/thumb-key/pull/791) - Update quotes and numbers on BG ME Phonetic Symbols by @pavlov-p in [#787](https://github.com/dessalines/thumb-key/pull/787) diff --git a/app/build.gradle b/app/build.gradle index e2bd7e466..e16714994 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -12,8 +12,8 @@ android { applicationId "com.dessalines.thumbkey" minSdk 21 targetSdkVersion 34 - versionCode 67 - versionName "2.6.24" + versionCode 68 + versionName "2.6.25" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" vectorDrawables { diff --git a/app/src/main/assets/RELEASES.md b/app/src/main/assets/RELEASES.md index ba36f58f4..4851d40b1 100644 --- a/app/src/main/assets/RELEASES.md +++ b/app/src/main/assets/RELEASES.md @@ -1,10 +1,18 @@ -# Thumb-Key 2.6.24 (2024-03-04) +# Thumb-Key 2.6.25 (2024-03-08) -## What's Changed in 2.6.24 +## What's Changed in 2.6.25 -- Fixing corner size. Fixes #789 by @dessalines in [#791](https://github.com/dessalines/thumb-key/pull/791) -- Update quotes and numbers on BG ME Phonetic Symbols by @pavlov-p in [#787](https://github.com/dessalines/thumb-key/pull/787) +- Add Chinese Simplified Translation by @WeiguangTWK in [#794](https://github.com/dessalines/thumb-key/pull/794) +- Use dakuten key for more characters by @K0baU in [#797](https://github.com/dessalines/thumb-key/pull/797) +- Update EO/EN/DE layout to make shift/capslock behavior match other layouts by @slashdevslashurandom in [#795](https://github.com/dessalines/thumb-key/pull/795) +- Add Breton French keyboard by @zeecho in [#793](https://github.com/dessalines/thumb-key/pull/793) -**Full Changelog**: https://github.com/dessalines/thumb-key/compare/2.6.23...2.6.24 +## New Contributors + +- @WeiguangTWK made their first contribution in [#794](https://github.com/dessalines/thumb-key/pull/794) +- @slashdevslashurandom made their first contribution in [#795](https://github.com/dessalines/thumb-key/pull/795) +- @zeecho made their first contribution in [#793](https://github.com/dessalines/thumb-key/pull/793) + +**Full Changelog**: https://github.com/dessalines/thumb-key/compare/2.6.24...2.6.25 diff --git a/generate_changelog.sh b/generate_changelog.sh index 94f3b41c1..2d21830ca 100755 --- a/generate_changelog.sh +++ b/generate_changelog.sh @@ -3,7 +3,6 @@ set -e # Creating the new tag new_tag="$1" -last_tag=$(git describe --tags --abbrev=0) # Writing to the Releases.md asset that's loaded inside the app git cliff --unreleased --tag "$new_tag" --output app/src/main/assets/RELEASES.md