File tree 3 files changed +15
-3
lines changed
3 files changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/ ) , and this
6
6
project adheres to [ Semantic Versioning] ( https://semver.org/ ) .
7
7
8
+ ## [ 0.5.0] - 2022-07-13
9
+ ### Changed
10
+ - Upgrade to Kotlin 1.7.10 (#126 )
11
+
8
12
## [ 0.4.1] - 2022-06-04
9
13
### Changed
10
14
- Add ` watchosX64 ` target (#123 )
Original file line number Diff line number Diff line change
1
+ import org.jetbrains.kotlin.gradle.tasks.AbstractKotlinCompileTool
1
2
import org.jetbrains.kotlin.konan.target.HostManager
2
3
3
4
plugins {
4
- kotlin(" multiplatform" ) version " 1.6.21 "
5
+ kotlin(" multiplatform" ) version " 1.7.10 "
5
6
id(" org.jetbrains.dokka" ) version " 0.9.18"
6
7
id(" maven-publish" )
7
8
id(" signing" )
@@ -209,9 +210,17 @@ val generateProjDirValTask = tasks.register("generateProjectDirectoryVal") {
209
210
kotlin.sourceSets.named(" commonTest" ) {
210
211
this .kotlin.srcDir(projectDirGenRoot)
211
212
}
213
+
212
214
// Ensure this runs before any test compile task
213
215
tasks.withType<AbstractCompile >().configureEach {
214
216
if (name.toLowerCase().contains(" test" )) {
215
217
dependsOn(generateProjDirValTask)
216
218
}
217
219
}
220
+
221
+ tasks.withType<AbstractKotlinCompileTool <* >>().configureEach {
222
+ if (name.toLowerCase().contains(" test" )) {
223
+ dependsOn(generateProjDirValTask)
224
+ }
225
+ }
226
+
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ kotlin.code.style=official
5
5
kotlin.incremental =true
6
6
7
7
GROUP =com.benasher44
8
- VERSION =0.4.1
8
+ VERSION =0.5.0
9
9
10
10
POM_URL =https://github.com/benasher44/uuid/
11
11
POM_SCM_URL =https://github.com/benasher44/uuid/
@@ -20,5 +20,4 @@ POM_NAME=UUID
20
20
POM_DESCRIPTION =A Kotlin multiplatform implementation of a v4 RFC4122 UUID
21
21
22
22
23
- kotlin.mpp.enableGranularSourceSetsMetadata =true
24
23
kotlin.mpp.enableCompatibilityMetadataVariant =true
You can’t perform that action at this time.
0 commit comments