Skip to content

Commit 5632c41

Browse files
committed
Release v2.6.0
1 parent 821cbeb commit 5632c41

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
66

77
## [Unreleased]
88

9+
## [2.6.0] - 2020-02-01
10+
### Changed
11+
- Set target version of SDK to 28 for binary execution in Android Q
12+
- UI refactoring (@Iscle)
13+
- Minimum Android API set to 21
14+
915
## [2.5.1] - 2019-11-04
1016
### Fixed
1117
- Fixed Arch Linux package management

app/build.gradle

+5-4
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,11 @@ android {
66

77
defaultConfig {
88
applicationId 'ru.meefik.linuxdeploy'
9-
minSdkVersion 16
10-
targetSdkVersion 29
11-
versionCode 257
12-
versionName "2.5.1"
9+
minSdkVersion 21
10+
// API 28 must be frozen for binary execution
11+
targetSdkVersion 28
12+
versionCode 258
13+
versionName "2.6.0"
1314
vectorDrawables.useSupportLibrary true
1415
}
1516
buildTypes {

0 commit comments

Comments
 (0)