Skip to content

Commit

Permalink
[release] v2.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
psuzn committed Dec 24, 2023
1 parent 75e3331 commit 0681619
Show file tree
Hide file tree
Showing 3 changed files with 79 additions and 3 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/*


70 changes: 70 additions & 0 deletions CHANGELOG/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
4 changes: 2 additions & 2 deletions buildSrc/src/main/kotlin/Artifacts.kt
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 0681619

Please sign in to comment.