Skip to content

Commit

Permalink
Upgrade to Kotlin 1.6.10 (benasher44#122)
Browse files Browse the repository at this point in the history
  • Loading branch information
benasher44 authored Jan 13, 2022
1 parent 0efc562 commit 2b3406f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/), and this
project adheres to [Semantic Versioning](https://semver.org/).

## [0.4.0] - 2022-01-13
### Changed
- Upgrade to Kotlin 1.6.10 (#122)

## [0.3.1] - 2021-09-07
### Changed
- Upgrade to Kotlin 1.5.30 (#118)
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import org.jetbrains.kotlin.konan.target.HostManager

plugins {
kotlin("multiplatform") version "1.5.30"
kotlin("multiplatform") version "1.6.10"
id("org.jetbrains.dokka") version "0.9.18"
id("maven-publish")
id("signing")
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ kotlin.code.style=official
kotlin.incremental=true

GROUP=com.benasher44
VERSION=0.3.1
VERSION=0.4.0

POM_URL=https://github.com/benasher44/uuid/
POM_SCM_URL=https://github.com/benasher44/uuid/
Expand Down
2 changes: 1 addition & 1 deletion src/appleTest/kotlin/AppleUuidTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import kotlin.test.assertTrue

class CocoaUuidTest {
@Test
fun `UUID.toString() matches NSUUID`() {
fun `UUID toString matches NSUUID`() {
val uuidL = uuid4()
val nativeUuidString = uuidL.bytes.usePinned {
NSUUID(it.addressOf(0).reinterpret()).UUIDString
Expand Down

0 comments on commit 2b3406f

Please sign in to comment.