File tree Expand file tree Collapse file tree 8 files changed +12
-24
lines changed Expand file tree Collapse file tree 8 files changed +12
-24
lines changed Original file line number Diff line number Diff line change 29
29
cache : ' gradle'
30
30
31
31
- name : Validate gradle wrapper
32
- uses : gradle/actions/wrapper-validation@v3
32
+ uses : gradle/actions/wrapper-validation@v4
33
33
34
34
- uses : maxim-lobanov/setup-xcode@v1
35
35
with :
Original file line number Diff line number Diff line change 33
33
cache : ' gradle'
34
34
35
35
- name : Validate gradle wrapper
36
- uses : gradle/actions/wrapper-validation@v3
36
+ uses : gradle/actions/wrapper-validation@v4
37
37
38
38
- name : Update docs/README.md
39
39
run : cp ./README.md ./docs/README.md
Original file line number Diff line number Diff line change 35
35
cache : ' gradle'
36
36
37
37
- name : Validate gradle wrapper
38
- uses : gradle/actions/wrapper-validation@v3
38
+ uses : gradle/actions/wrapper-validation@v4
39
39
40
40
- uses : maxim-lobanov/setup-xcode@v1
41
41
with :
51
51
run : ./gradlew publishToMavenCentral --no-configuration-cache
52
52
53
53
- name : Generate Changelog
54
- uses : mikepenz/release-changelog-builder-action@v4
54
+ uses : mikepenz/release-changelog-builder-action@v5
55
55
id : build_changelog
56
56
with :
57
57
commitMode : true
Original file line number Diff line number Diff line change @@ -122,7 +122,7 @@ versionCatalogUpdate {
122
122
}
123
123
124
124
atomicfu {
125
- dependenciesVersion = libs.versions.kotlinx. atomicfu.get()
125
+ dependenciesVersion = libs.versions.atomicfu.get()
126
126
transformJvm = false
127
127
jvmVariant = " VH"
128
128
transformJs = false
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ object Config {
18
18
const val majorRelease = 2
19
19
const val minorRelease = 0
20
20
const val patch = 0
21
- const val postfix = " -beta02 "
21
+ const val postfix = " " // include dash
22
22
const val versionName = " $majorRelease .$minorRelease .$patch$postfix "
23
23
const val url = " https://github.com/respawn-app/ApiResult"
24
24
const val licenseName = " The Apache Software License, Version 2.0"
Original file line number Diff line number Diff line change 1
1
plugins {
2
2
id(" pro.respawn.shared-library" )
3
3
alias(libs.plugins.maven.publish)
4
+ // alias(libs.plugins.atomicfu)
4
5
}
5
6
6
7
android {
Original file line number Diff line number Diff line change 1
1
[versions ]
2
- compose = " 1.6.10 "
2
+ compose = " 1.7.0-beta07 "
3
3
compose-activity = " 1.9.1"
4
4
compose-material3 = " 1.3.0-beta05"
5
5
composeDetektPlugin = " 1.3.0"
@@ -9,12 +9,12 @@ dependencyAnalysisPlugin = "1.32.0"
9
9
detekt = " 1.23.6"
10
10
detektFormattingPlugin = " 1.23.6"
11
11
dokka = " 1.9.20"
12
- gradleAndroid = " 8.6.0-beta02 "
12
+ gradleAndroid = " 8.6.0-rc01 "
13
13
gradleDoctorPlugin = " 0.10.0"
14
14
kotest = " 5.9.1"
15
15
# @pin
16
- kotlin = " 2.0.0 "
17
- kotlinx- atomicfu = " 0.23.1 "
16
+ kotlin = " 2.0.10 "
17
+ atomicfu = " 0.25.0 "
18
18
lifecycle = " 2.8.4"
19
19
maven-publish-plugin = " 0.29.0"
20
20
turbine = " 1.0.0"
@@ -59,7 +59,7 @@ unittest = [
59
59
]
60
60
61
61
[plugins ]
62
- atomicfu = { id = " kotlinx- atomicfu" , version.ref = " kotlinx- atomicfu" }
62
+ atomicfu = { id = " org.jetbrains. kotlinx. atomicfu" , version.ref = " atomicfu" }
63
63
compose-compiler = { id = " org.jetbrains.kotlin.plugin.compose" , version.ref = " kotlin" }
64
64
dependencyAnalysis = { id = " com.autonomousapps.dependency-analysis" , version.ref = " dependencyAnalysisPlugin" }
65
65
detekt = { id = " io.gitlab.arturbosch.detekt" , version.ref = " detekt" }
Original file line number Diff line number Diff line change @@ -7,19 +7,6 @@ pluginManagement {
7
7
mavenCentral()
8
8
maven(" https://maven.pkg.jetbrains.space/public/p/compose/dev" )
9
9
}
10
-
11
- // TODO: https://github.com/Kotlin/kotlinx-atomicfu/issues/56
12
- resolutionStrategy {
13
- eachPlugin {
14
- val module = when (requested.id.id) {
15
- " kotlinx-atomicfu" -> " org.jetbrains.kotlinx:atomicfu-gradle-plugin:${requested.version} "
16
- else -> null
17
- }
18
- if (module != null ) {
19
- useModule(module)
20
- }
21
- }
22
- }
23
10
}
24
11
25
12
dependencyResolutionManagement {
You can’t perform that action at this time.
0 commit comments