Skip to content

Commit 3708b9a

Browse files
committed
Move to version 1.6.0
This version adds artifacts for watchOS.
1 parent cccef20 commit 3708b9a

File tree

5 files changed

+10
-3
lines changed

5 files changed

+10
-3
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ repositories {
2626
}
2727
2828
dependencies {
29-
implementation 'dev.romainguy:kotlin-math:1.5.3'
29+
implementation 'dev.romainguy:kotlin-math:1.6.0'
3030
}
3131
```
3232

gradle.properties

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
GROUP=dev.romainguy
2-
VERSION_NAME=1.5.3
2+
VERSION_NAME=1.6.0
33

44
POM_DESCRIPTION=Graphics oriented math library for Kotlin
55

@@ -18,3 +18,5 @@ POM_LICENCE_DIST=repo
1818

1919
POM_DEVELOPER_ID=romainguy
2020
POM_DEVELOPER_NAME=Romain Guy
21+
22+
org.gradle.jvmargs=-XX:MaxMetaspaceSize=512m

publish.gradle

+3
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,9 @@ tasks.register('publishMac') {
7474
dependsOn 'publishIosArm64PublicationToMavenRepository'
7575
dependsOn 'publishIosSimulatorArm64PublicationToMavenRepository'
7676
dependsOn 'publishIosX64PublicationToMavenRepository'
77+
dependsOn 'publishWatchosArm64PublicationToMavenRepository'
78+
dependsOn 'publishWatchosSimulatorArm64PublicationToMavenRepository'
79+
dependsOn 'publishWatchosX64PublicationToMavenRepository'
7780
dependsOn 'publishMacosArm64PublicationToMavenRepository'
7881
dependsOn 'publishMacosX64PublicationToMavenRepository'
7982
dependsOn 'publishJvmPublicationToMavenRepository'

src/commonMain/kotlin/dev/romainguy/kotlin/math/Half.kt

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
// Operators +, *, / based on http://half.sourceforge.net/ by Christian Rau
1818
// and licensed under MIT
1919

20+
@file:Suppress("NOTHING_TO_INLINE")
21+
2022
package dev.romainguy.kotlin.math
2123

2224
import dev.romainguy.kotlin.math.Half.Companion.POSITIVE_INFINITY

src/commonMain/kotlin/dev/romainguy/kotlin/math/Matrix.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
@file:Suppress("unused")
17+
@file:Suppress("unused", "NOTHING_TO_INLINE")
1818

1919
package dev.romainguy.kotlin.math
2020

0 commit comments

Comments
 (0)