Skip to content

Commit fcf04b2

Browse files
committed
v0.8.4
1 parent 0ef9ad9 commit fcf04b2

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ import static org.gradle.internal.os.OperatingSystem.*
33
plugins {
44
id 'java'
55
id 'maven'
6-
id "org.jetbrains.kotlin.jvm" version "1.3.50"
7-
id "com.github.johnrengelman.shadow" version '5.1.0'
6+
id "org.jetbrains.kotlin.jvm" version "1.3.61"
7+
id "com.github.johnrengelman.shadow" version '5.2.0'
88
// id 'org.kordamp.gradle.jdeps' version '0.7.1-SNAPSHOT'
99
}
1010

gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.1-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.0.1-all.zip

src/main/kotlin/kool/Stack.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -787,7 +787,7 @@ object Stack {
787787
inline fun <R> utf8Buffer(chars: CharSequence, block: (ByteBuffer) -> R): R =
788788
with { block(it.UTF8(chars, true)) }
789789

790-
val VERSION = "0.8.3"
790+
val VERSION = "0.8.4"
791791

792792
inline operator fun <R> invoke(block: (MemoryStack) -> R): R = with(block)
793793
}

0 commit comments

Comments
 (0)