Skip to content

Commit 5a60a51

Browse files
committed
version 0.9.9.0 build 9
- kotlin 1.2.70 - gradle 4.10.2 - kotlintest 3.1.10
1 parent 13fbee4 commit 5a60a51

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

build.gradle

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ apply plugin: 'com.github.johnrengelman.shadow'
1111

1212
buildscript {
1313

14-
ext.kotlinVersion = '1.2.60'
14+
ext.kotlinVersion = '1.2.70'
1515

1616
repositories {
1717
jcenter() // shadow
@@ -22,18 +22,18 @@ buildscript {
2222
dependencies {
2323
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
2424
classpath 'com.github.jengelman.gradle.plugins:shadow:2.0.4'
25-
classpath "org.junit.platform:junit-platform-gradle-plugin:1.1.0"
25+
classpath "org.junit.platform:junit-platform-gradle-plugin:1.2.0"
2626
}
2727
}
2828

2929
dependencies {
3030

3131
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
3232

33-
implementation 'com.github.kotlin-graphics:kotlin-unsigned:6942748'
33+
implementation 'com.github.kotlin-graphics:kotlin-unsigned:75287b442e5c25ec79ec56a741e6dc4b6f3cd479'
3434
implementation 'com.github.kotlin-graphics:appBuffer:9139bbf'
3535

36-
testImplementation 'io.kotlintest:kotlintest-runner-junit5:3.0.6'
36+
testImplementation 'io.kotlintest:kotlintest-runner-junit5:3.1.10'
3737

3838
ext.lwjglVersion = "3.2.0"
3939
switch (OperatingSystem.current()) {

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

src/main/kotlin/glm_/glm.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -146,5 +146,5 @@ val GLM_VERSION_MAJOR = 0
146146
val GLM_VERSION_MINOR = 9
147147
val GLM_VERSION_PATCH = 9
148148
val GLM_VERSION_REVISION = 0
149-
val GLM_VERSION_BUILD = 8
149+
val GLM_VERSION_BUILD = 9
150150
val GLM_VERSION = GLM_VERSION_MAJOR * 1_000 + GLM_VERSION_MINOR * 100 + GLM_VERSION_PATCH * 10 + GLM_VERSION_REVISION + GLM_VERSION_BUILD / 10f

0 commit comments

Comments
 (0)