Skip to content

Commit

Permalink
v0.9.9.0, build 0
Browse files Browse the repository at this point in the history
  • Loading branch information
elect86 committed Dec 11, 2019
1 parent 024e59f commit 1b4ac18
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ buildscript {

ext {
kotlin = 'org.jetbrains.kotlin:kotlin'
kotlin_version = '1.3.50'
kotlintest_version = "3.4.0"
kotlin_version = '1.3.61'
kotlintest_version = "3.4.2"
}

repositories {
Expand All @@ -16,16 +16,16 @@ buildscript {

dependencies {
classpath "$kotlin-gradle-plugin:$kotlin_version"
classpath 'com.github.jengelman.gradle.plugins:shadow:5.1.0'
classpath 'com.github.jengelman.gradle.plugins:shadow:5.2.0'
}
}

group = 'com.github.kotlin_graphics'

ext {
moduleName = "${group}.glm"
unsigned_version = 'c81c2e39fb9e10403650c1b371b8573fc745bfb4'
kool_version = '0ef9ad97d0c709de3cda4d7f05e74bff883b00a6'
unsigned_version = '18131d0fe0b7465a145a4502d31452c5ae0e59a1'
kool_version = 'fcf04b2c03b8949d9d9a8b0a580082e927903510'
lwjgl_version = "3.2.3"
lwjgl_natives = current() == WINDOWS ? "windows" : current() == LINUX ? "linux" : "macos"
}
Expand Down
6 changes: 3 additions & 3 deletions glm/src/main/kotlin/glm_/glm.kt
Original file line number Diff line number Diff line change
Expand Up @@ -163,9 +163,9 @@ typealias ulong = Long
val GLM_VERSION_MAJOR = 0
val GLM_VERSION_MINOR = 9
val GLM_VERSION_PATCH = 9
val GLM_VERSION_REVISION = 0
val GLM_VERSION_BUILD = 13
val GLM_VERSION = GLM_VERSION_MAJOR * 1_000 + GLM_VERSION_MINOR * 100 + GLM_VERSION_PATCH * 10 + GLM_VERSION_REVISION + GLM_VERSION_BUILD / 10f
val GLM_VERSION_REVISION = 1
val GLM_VERSION_BUILD = 0
val GLM_VERSION = GLM_VERSION_MAJOR * 1_000 + GLM_VERSION_MINOR * 100 + GLM_VERSION_PATCH * 10 + GLM_VERSION_REVISION

/*
TODO:
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

0 comments on commit 1b4ac18

Please sign in to comment.