File tree 3 files changed +79
-3
lines changed
3 files changed +79
-3
lines changed Original file line number Diff line number Diff line change @@ -186,9 +186,15 @@ jobs:
186
186
mkdir artifacts
187
187
mv downloaded/**/*.* artifacts/
188
188
189
+ - name : Extract release notes
190
+ id : release_notes
191
+ uses : ffurrer2/extract-release-notes@v1
192
+ with :
193
+ changelog_file : CHANGELOG/CHANGELOG.md
194
+
189
195
- uses : softprops/action-gh-release@v1
190
196
with :
191
- body_path : CHANGELOG/CHANGELOG.md
197
+ body : ${{ steps.release_notes.outputs.release_notes }}
192
198
files : artifacts/*
193
199
194
200
Original file line number Diff line number Diff line change 1
1
# Feature
2
+
2
3
- F-droid release
3
4
- Attempt fix for reproducible build
5
+
6
+ # Changelog
7
+
8
+ All notable changes to this project will be documented in this file.
9
+
10
+ ## [ Unreleased]
11
+
12
+ ### Added
13
+
14
+ ### Changed
15
+
16
+ ### Deprecated
17
+
18
+ ### Removed
19
+
20
+ ### Fixed
21
+
22
+ ### Security
23
+
24
+ ## [ 2.1.6] - 2023-12-24
25
+
26
+ ### Changed
27
+
28
+ ➤ General dependencies upgrade
29
+
30
+ ### Fixed
31
+
32
+ ➤ Improper location for for app data
33
+
34
+ ### Security
35
+
36
+ ## [ 2.1.5] - 2023-12-17
37
+
38
+ ➤ F-droid release : attempt fix for reproducible build
39
+
40
+ ## [ 2.1.4] - 2023-12-12
41
+
42
+ ➤ Reproducible build for F-Droid
43
+
44
+ ## [ 2.1.1] - 2023-12-01
45
+
46
+ ➤ Preparing for F-droid release
47
+
48
+ ## [ 2.1.0] - 2023-10-27
49
+
50
+ ### Added
51
+
52
+ ➤ Support for push notification [ android]
53
+
54
+ ### Fixed
55
+
56
+ ➤ Database migration issue on desktop
57
+
58
+ ## [ 2.0.6] - 2023-10-24
59
+
60
+ ### Added
61
+
62
+ ➤ Offline cache using SQLDelight #40
63
+
64
+ ## [ 2.0.5] - 2023-10-22
65
+
66
+ ### Fixed
67
+
68
+ ➤ Crash because of proguard obfuscation #36 [ Android]
69
+
70
+ ## [ 2.0.4] - 2023-10-22
71
+
72
+ ➤ Play deal is open source now
73
+ ➤ Initial Release as a multiplatform project
Original file line number Diff line number Diff line change 1
1
object Artifact {
2
2
const val APP_ID = " me.sujanpoudel.playdeals"
3
- const val VERSION_CODE = 30
4
- const val VERSION_NAME = " 2.1.5 "
3
+ const val VERSION_CODE = 31
4
+ const val VERSION_NAME = " 2.1.6 "
5
5
const val MAJOR_RELEASE = false
6
6
7
7
const val ANDROID_COMPILE_SDK = 34
You can’t perform that action at this time.
0 commit comments