Skip to content

Commit 2b3406f

Browse files
authored
Upgrade to Kotlin 1.6.10 (#122)
1 parent 0efc562 commit 2b3406f

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/), and this
66
project adheres to [Semantic Versioning](https://semver.org/).
77

8+
## [0.4.0] - 2022-01-13
9+
### Changed
10+
- Upgrade to Kotlin 1.6.10 (#122)
11+
812
## [0.3.1] - 2021-09-07
913
### Changed
1014
- Upgrade to Kotlin 1.5.30 (#118)

build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import org.jetbrains.kotlin.konan.target.HostManager
22

33
plugins {
4-
kotlin("multiplatform") version "1.5.30"
4+
kotlin("multiplatform") version "1.6.10"
55
id("org.jetbrains.dokka") version "0.9.18"
66
id("maven-publish")
77
id("signing")

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ kotlin.code.style=official
55
kotlin.incremental=true
66

77
GROUP=com.benasher44
8-
VERSION=0.3.1
8+
VERSION=0.4.0
99

1010
POM_URL=https://github.com/benasher44/uuid/
1111
POM_SCM_URL=https://github.com/benasher44/uuid/

src/appleTest/kotlin/AppleUuidTest.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import kotlin.test.assertTrue
1616

1717
class CocoaUuidTest {
1818
@Test
19-
fun `UUID.toString() matches NSUUID`() {
19+
fun `UUID toString matches NSUUID`() {
2020
val uuidL = uuid4()
2121
val nativeUuidString = uuidL.bytes.usePinned {
2222
NSUUID(it.addressOf(0).reinterpret()).UUIDString

0 commit comments

Comments
 (0)