Skip to content

Commit adaa3a6

Browse files
committed
Version 1.6.0-rc
1 parent 68a0f10 commit adaa3a6

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ It's main purpose is to make permissions handling more concise.
77
### Versioning
88
There are multiple version currently being released, depending on [Compose UI version](https://developer.android.com/jetpack/androidx/releases/compose-ui) used in your project:
99

10-
| <b>Compose UI version</b> | <b>ComposePermissionHandler version</b> |
11-
|:---------------------------:|:---------------------------------------:|
12-
| Compose UI 1.0 (1.0.x) | 1.1.0 |
13-
| Compose UI 1.1 (1.1.x) | 1.2.0 |
14-
| Compose UI 1.2 (1.2.x) | 1.3.0 |
15-
| Compose UI 1.3 (1.3.x) | 1.4.0 |
16-
| Compose UI 1.4 (1.4.x) | 1.5.0 |
17-
| Compose UI 1.5 (1.5.x-beta) | 1.6.0-beta |
10+
| <b>Compose UI version</b> | <b>ComposePermissionHandler version</b> |
11+
|:-------------------------:|:---------------------------------------:|
12+
| Compose UI 1.0 (1.0.x) | 1.1.0 |
13+
| Compose UI 1.1 (1.1.x) | 1.2.0 |
14+
| Compose UI 1.2 (1.2.x) | 1.3.0 |
15+
| Compose UI 1.3 (1.3.x) | 1.4.0 |
16+
| Compose UI 1.4 (1.4.x) | 1.5.0 |
17+
| Compose UI 1.5 (1.5.x-rc) | 1.6.0-rc |
1818

1919
<b>Version 1.0.0 is legacy and should not be used as it may cause compatibility problems!</b>
2020

buildSrc/build.gradle.kts

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ repositories {
2323

2424
dependencies {
2525
compileOnly(gradleApi())
26-
implementation("com.android.tools.build:gradle:8.0.2")
27-
implementation(kotlin("gradle-plugin", "1.8.21"))
26+
implementation("com.android.tools.build:gradle:8.1.0")
27+
implementation(kotlin("gradle-plugin", "1.9.0"))
2828
}

buildSrc/src/main/java/AndroidConfig.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ object AndroidConfig {
1212
const val detekt = "io.gitlab.arturbosch.detekt"
1313
}
1414

15-
const val sdkVersion = 33
15+
const val sdkVersion = 34
1616
const val minSdkVersion = 21
1717
val javaVersion = JavaVersion.VERSION_17
1818
}

buildSrc/src/main/java/Versions.kt

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
object Versions {
2-
const val kotlin = "1.8.20"
2+
const val kotlin = "1.9.0"
33
const val detekt = "1.22.0"
44
const val ktx = "1.8.0"
55
const val appCompat = "1.5.0"
66
const val ktlint = "10.3.0"
7-
const val composeCompiler = "1.4.7"
8-
const val compose = "1.5.0-beta01"
7+
const val composeCompiler = "1.5.1"
8+
const val compose = "1.5.0-rc01"
99
const val material3 = "1.1.0"
1010
const val composeActivity = "1.7.2"
1111
}

0 commit comments

Comments
 (0)