diff --git a/.github/workflows/deployment.yml b/.github/workflows/deployment.yml index a9f305e..8a1fcde 100644 --- a/.github/workflows/deployment.yml +++ b/.github/workflows/deployment.yml @@ -186,9 +186,15 @@ jobs: mkdir artifacts mv downloaded/**/*.* artifacts/ + - name: Extract release notes + id: release_notes + uses: ffurrer2/extract-release-notes@v1 + with: + changelog_file: CHANGELOG/CHANGELOG.md + - uses: softprops/action-gh-release@v1 with: - body_path: CHANGELOG/CHANGELOG.md + body: ${{ steps.release_notes.outputs.release_notes }} files: artifacts/* diff --git a/CHANGELOG/CHANGELOG.md b/CHANGELOG/CHANGELOG.md index 852614f..ce264fc 100644 --- a/CHANGELOG/CHANGELOG.md +++ b/CHANGELOG/CHANGELOG.md @@ -1,3 +1,73 @@ # Feature + - F-droid release - Attempt fix for reproducible build + +# Changelog + +All notable changes to this project will be documented in this file. + +## [Unreleased] + +### Added + +### Changed + +### Deprecated + +### Removed + +### Fixed + +### Security + +## [2.1.6] - 2023-12-24 + +### Changed + +➤ General dependencies upgrade + +### Fixed + +➤ Improper location for for app data + +### Security + +## [2.1.5] - 2023-12-17 + +➤ F-droid release : attempt fix for reproducible build + +## [2.1.4] - 2023-12-12 + +➤ Reproducible build for F-Droid + +## [2.1.1] - 2023-12-01 + +➤ Preparing for F-droid release + +## [2.1.0] - 2023-10-27 + +### Added + +➤ Support for push notification [android] + +### Fixed + +➤ Database migration issue on desktop + +## [2.0.6] - 2023-10-24 + +### Added + +➤ Offline cache using SQLDelight #40 + +## [2.0.5] - 2023-10-22 + +### Fixed + +➤ Crash because of proguard obfuscation #36 [Android] + +## [2.0.4] - 2023-10-22 + +➤ Play deal is open source now +➤ Initial Release as a multiplatform project diff --git a/buildSrc/src/main/kotlin/Artifacts.kt b/buildSrc/src/main/kotlin/Artifacts.kt index b595350..c1d78d6 100644 --- a/buildSrc/src/main/kotlin/Artifacts.kt +++ b/buildSrc/src/main/kotlin/Artifacts.kt @@ -1,7 +1,7 @@ object Artifact { const val APP_ID = "me.sujanpoudel.playdeals" - const val VERSION_CODE = 30 - const val VERSION_NAME = "2.1.5" + const val VERSION_CODE = 31 + const val VERSION_NAME = "2.1.6" const val MAJOR_RELEASE = false const val ANDROID_COMPILE_SDK = 34