Skip to content

Commit

Permalink
v0.4.3
Browse files Browse the repository at this point in the history
Kotlin 1.2.51
Gradle 4.9
Shadow 2.0.4

- added VERSION
  • Loading branch information
elect86 committed Jul 18, 2018
1 parent 6b7c648 commit 520e83c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ apply plugin: 'com.github.johnrengelman.shadow'

buildscript {

ext.kotlinVersion = '1.2.50'
ext.kotlinVersion = '1.2.51'

repositories {
jcenter() // shadow
Expand All @@ -22,7 +22,7 @@ buildscript {

dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath 'com.github.jengelman.gradle.plugins:shadow:2.0.3'
classpath 'com.github.jengelman.gradle.plugins:shadow:2.0.4'
classpath "org.junit.platform:junit-platform-gradle-plugin:1.1.0"
}
}
Expand All @@ -32,7 +32,7 @@ dependencies {

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

implementation 'com.github.kotlin-graphics:gli:05d60d4'
implementation 'com.github.kotlin-graphics:gli:6fcc778'

//testCompile 'io.kotlintest:kotlintest-runner-junit5:3.0.6'

Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.7-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-4.9-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
4 changes: 3 additions & 1 deletion src/main/kotlin/gln/gln.kt
Original file line number Diff line number Diff line change
Expand Up @@ -82,4 +82,6 @@ fun checkError(location: String, throwError: Boolean = true): Boolean {
return if (throwError) throw Error("OpenGL Error ($errorString) at $location") else false
}
return true
}
}

val VERSION = "0.4.3"

0 comments on commit 520e83c

Please sign in to comment.