diff --git a/CHANGELOG.md b/CHANGELOG.md index 7a902359d..c37209e9b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Pachli changelog +## v1.2 + +### New features and other improvements + +- Show vertical scrollbars on scrollable lists (#[96](https://github.com/pachli/pachli-android/pull/96)) + +### Significant bug fixes + +- Restore the user's reading position under all circumstances (#[133](https://github.com/pachli/pachli-android/pull/133)) +- Enable/disable vote button when the user can/can't vote (#[91](https://github.com/pachli/pachli-android/pull/91)) +- Use the correct colour for the status bar +- Ensure poll option text is visible against the background (#[86](https://github.com/pachli/pachli-android/pull/86)) + ## v1.1 ### Significant bug fixes diff --git a/app/build.gradle b/app/build.gradle index 597351b5f..981c4eef8 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -31,8 +31,8 @@ android { namespace "app.pachli" minSdk 23 targetSdk 33 - versionCode 2 - versionName "1.1" + versionCode 3 + versionName "1.2" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" vectorDrawables.useSupportLibrary = true diff --git a/fastlane/metadata/android/en-US/changelogs/3.txt b/fastlane/metadata/android/en-US/changelogs/3.txt new file mode 100644 index 000000000..be8330771 --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/3.txt @@ -0,0 +1,12 @@ +Pachli 1.2 + +New features: + +- Show vertical scrollbars on scrollable lists + +Fixes: + +- Restore the user's reading position under all circumstances +- Enable/disable vote button when the user can/can't vote +- Use the correct colour for the status bar +- Ensure poll option text is visible against the background