Skip to content

Commit 869ee1b

Browse files
committed
v0.7.3
1 parent 0c24215 commit 869ee1b

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ group = 'com.github.kotlin-graphics'
1212

1313
buildscript {
1414

15-
ext.kotlinVersion = '1.2.51'
15+
ext.kotlinVersion = '1.2.60'
1616

1717
repositories {
1818
mavenCentral()
@@ -36,9 +36,9 @@ dependencies {
3636
implementation "$kotlin-reflect:$kotlinVersion"
3737

3838
ext.kx = "com.github.kotlin-graphics"
39-
implementation "$kx:gln:399cd2a1d7"
40-
implementation "$kx:vkk:9dc6cfc"
41-
implementation "$kx:appBuffer:23e9166e41"
39+
implementation "$kx:gln:294d84e53f"
40+
implementation "$kx:vkk:86fe39a"
41+
implementation "$kx:appBuffer:39d8216"
4242

4343
testImplementation 'io.kotlintest:kotlintest:2.0.7'
4444
testImplementation 'io.kotlintest:kotlintest-runner-junit5:3.0.6'

src/main/kotlin/uno/kotlin/util.kt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,6 @@ infix operator fun <T>StringBuilder.plusAssign(element: T) {
5858
fun <T>treeSetOf() = java.util.TreeSet<T>()
5959

6060
fun <K, V>SortedMap<K, V>.getOrfirst(key: K): V? = get(key) ?: first
61-
val <K, V>SortedMap<K, V>.first: V? get() = get(firstKey())
61+
val <K, V>SortedMap<K, V>.first: V? get() = get(firstKey())
62+
63+
val version = "0.7.3"

0 commit comments

Comments
 (0)