File tree 4 files changed +7
-3
lines changed
4 files changed +7
-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.4.0] - 2022-01-13
9
+ ### Changed
10
+ - Upgrade to Kotlin 1.6.10 (#122 )
11
+
8
12
## [ 0.3.1] - 2021-09-07
9
13
### Changed
10
14
- Upgrade to Kotlin 1.5.30 (#118 )
Original file line number Diff line number Diff line change 1
1
import org.jetbrains.kotlin.konan.target.HostManager
2
2
3
3
plugins {
4
- kotlin(" multiplatform" ) version " 1.5.30 "
4
+ kotlin(" multiplatform" ) version " 1.6.10 "
5
5
id(" org.jetbrains.dokka" ) version " 0.9.18"
6
6
id(" maven-publish" )
7
7
id(" signing" )
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.3.1
8
+ VERSION =0.4.0
9
9
10
10
POM_URL =https://github.com/benasher44/uuid/
11
11
POM_SCM_URL =https://github.com/benasher44/uuid/
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ import kotlin.test.assertTrue
16
16
17
17
class CocoaUuidTest {
18
18
@Test
19
- fun `UUID. toString() matches NSUUID` () {
19
+ fun `UUID toString matches NSUUID` () {
20
20
val uuidL = uuid4()
21
21
val nativeUuidString = uuidL.bytes.usePinned {
22
22
NSUUID (it.addressOf(0 ).reinterpret()).UUIDString
You can’t perform that action at this time.
0 commit comments