Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

main -> develop #64

Merged
merged 2 commits into from
Jan 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading