Skip to content

Commit

Permalink
0.9.9.1-7
Browse files Browse the repository at this point in the history
  • Loading branch information
elect86 committed Apr 4, 2023
1 parent 5a2cd0b commit 68c2240
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 11 deletions.
13 changes: 4 additions & 9 deletions build.gradle.kts
Expand Up @@ -9,6 +9,7 @@ plugins {
id("org.lwjgl.plugin") version "0.0.34"
id("elect86.magik") version "0.3.2"
`maven-publish`
// id("com.github.johnrengelman.shadow") version "8.1.1"
}

repositories {
Expand All @@ -18,16 +19,14 @@ repositories {

dependencies {
api("kotlin.graphics:unsigned:3.3.32")
api("kotlin.graphics:kool:0.9.74")
api("kotlin.graphics:kool:0.9.75")
lwjgl { implementation(glfw, jemalloc, openal, opengl, stb) }

testImplementation("io.kotest:kotest-runner-junit5:5.5.5")
testImplementation("io.kotest:kotest-assertions-core:5.5.5")
}

kotlin.jvmToolchain {
languageVersion.set(JavaLanguageVersion.of(8))
}
kotlin.jvmToolchain { languageVersion.set(JavaLanguageVersion.of(8)) }

tasks {
withType<KotlinCompile<*>>().all {
Expand All @@ -45,11 +44,7 @@ publishing {
suppressAllPomMetadataWarnings()
}
}
repositories {
github {
domain = "kotlin-graphics/mary"
}
}
repositories { github { domain = "kotlin-graphics/mary" } }
}

java.withSourcesJar()
2 changes: 1 addition & 1 deletion settings.gradle.kts
Expand Up @@ -10,5 +10,5 @@ pluginManagement {

gradle.rootProject {
group = "kotlin.graphics"
version = "0.9.9.1-6"
version = "0.9.9.1-7"
}
2 changes: 1 addition & 1 deletion src/main/kotlin/glm_/glm.kt
Expand Up @@ -164,7 +164,7 @@ val GLM_VERSION_MAJOR = 0
val GLM_VERSION_MINOR = 9
val GLM_VERSION_PATCH = 9
val GLM_VERSION_REVISION = 1
val GLM_VERSION_BUILD = 6
val GLM_VERSION_BUILD = 7
val GLM_VERSION = GLM_VERSION_MAJOR * 1_000 + GLM_VERSION_MINOR * 100 + GLM_VERSION_PATCH * 10 + GLM_VERSION_REVISION

/*
Expand Down

0 comments on commit 68c2240

Please sign in to comment.