We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8fc5102 commit 37d38dfCopy full SHA for 37d38df
build.gradle.kts
@@ -11,6 +11,7 @@ plugins {
11
}
12
13
group = "com.github.kotlin.graphics"
14
+version = "0.9.0"
15
16
repositories {
17
maven("https://repo.repsy.io/mvn/elect/kx")
@@ -20,6 +21,7 @@ dependencies {
20
21
lwjglImplementation(jemalloc)
22
23
24
+
25
publishing {
26
publications.create<MavenPublication>("mavenJava") {
27
from(components["java"])
src/main/kotlin/kool/Stack.kt
@@ -801,8 +801,6 @@ object Stack {
801
inline fun <R> utf8Buffer(chars: CharSequence, block: (ByteBuffer) -> R): R =
802
with { block(it.UTF8(chars, true)) }
803
804
- val VERSION = "0.9.0"
805
-
806
inline operator fun <R> invoke(block: (MemoryStack) -> R): R = with(block)
807
808
0 commit comments