Skip to content

Commit

Permalink
v0.8.4
Browse files Browse the repository at this point in the history
  • Loading branch information
elect86 committed Dec 10, 2019
1 parent 0ef9ad9 commit fcf04b2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import static org.gradle.internal.os.OperatingSystem.*
plugins {
id 'java'
id 'maven'
id "org.jetbrains.kotlin.jvm" version "1.3.50"
id "com.github.johnrengelman.shadow" version '5.1.0'
id "org.jetbrains.kotlin.jvm" version "1.3.61"
id "com.github.johnrengelman.shadow" version '5.2.0'
// id 'org.kordamp.gradle.jdeps' version '0.7.1-SNAPSHOT'
}

Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-6.0.1-all.zip
2 changes: 1 addition & 1 deletion src/main/kotlin/kool/Stack.kt
Original file line number Diff line number Diff line change
Expand Up @@ -787,7 +787,7 @@ object Stack {
inline fun <R> utf8Buffer(chars: CharSequence, block: (ByteBuffer) -> R): R =
with { block(it.UTF8(chars, true)) }

val VERSION = "0.8.3"
val VERSION = "0.8.4"

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

0 comments on commit fcf04b2

Please sign in to comment.