Skip to content

Commit 2520cd8

Browse files
committed
v0.9.9.0 build 11
Jigsaw support Kotlin 1.3.10
1 parent b48ac55 commit 2520cd8

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

build.gradle

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11

2+
ext.moduleName = 'com.github.kotlin_graphics.glm'
3+
24
buildscript {
35

4-
ext.kotlinVersion = '1.3.0'
6+
ext.kotlinVersion = '1.3.10'
57
ext.kotlintestVersion = "3.1.10"
68

79
repositories {
@@ -44,4 +46,11 @@ subprojects {
4446
archives sourcesJar
4547
archives javadocJar
4648
}
49+
50+
jar {
51+
inputs.property("moduleName", moduleName)
52+
manifest {
53+
attributes('Automatic-Module-Name': moduleName)
54+
}
55+
}
4756
}

glm/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ dependencies {
44

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

7-
implementation 'com.github.kotlin-graphics:kotlin-unsigned:e94fc7976f3af402ff5db93b8cddb32f25145d18'
8-
implementation 'com.github.kotlin-graphics:kool:ac6df0dc1621e5d6d54da109487b364743484aa5'
7+
implementation 'com.github.kotlin-graphics:kotlin-unsigned:4c5a91c407fbcc7761f93336967820b08021aa60'
8+
implementation 'com.github.kotlin-graphics:kool:1c5ee046b067d6e1b01f3797bf44438d72eb91f8'
99

1010
testImplementation project(":glm-test")
1111

glm/src/main/kotlin/glm_/glm.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -147,5 +147,5 @@ val GLM_VERSION_MAJOR = 0
147147
val GLM_VERSION_MINOR = 9
148148
val GLM_VERSION_PATCH = 9
149149
val GLM_VERSION_REVISION = 0
150-
val GLM_VERSION_BUILD = 10
150+
val GLM_VERSION_BUILD = 11
151151
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)