Skip to content

Commit 1e564cf

Browse files
committed
- kotlin 1.3.50
- lwjgl 3.2.3 - gradle 5.6.1
1 parent d052c5e commit 1e564cf

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,7 +3,7 @@ import static org.gradle.internal.os.OperatingSystem.*
33
plugins {
44
id 'java'
55
id 'maven'
6-
id "org.jetbrains.kotlin.jvm" version "1.3.41"
6+
id "org.jetbrains.kotlin.jvm" version "1.3.50"
77
id "com.github.johnrengelman.shadow" version '5.1.0'
88
// id 'org.kordamp.gradle.jdeps' version '0.7.1-SNAPSHOT'
99
}
@@ -13,7 +13,7 @@ group = 'com.github.kotlin_graphics'
1313

1414
ext {
1515
moduleName = "${group}.kool"
16-
lwjgl_version = "3.2.2"
16+
lwjgl_version = "3.2.3"
1717
lwjgl_natives = current() == WINDOWS ? "windows" : current() == LINUX ? "linux" : "macos"
1818
}
1919

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.5.1-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.1-all.zip

src/main/kotlin/kool/Stack.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -836,7 +836,7 @@ object Stack {
836836
// val remaining get() = SIZE - consumed
837837
// val consumed get() = ptr.get() - address
838838

839-
val VERSION = "0.8.2"
839+
val VERSION = "0.8.3"
840840

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

0 commit comments

Comments
 (0)