Skip to content

Commit

Permalink
Move to version 1.6.0
Browse files Browse the repository at this point in the history
This version adds artifacts for watchOS.
  • Loading branch information
romainguy committed Jan 10, 2025
1 parent cccef20 commit 3708b9a
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ repositories {
}
dependencies {
implementation 'dev.romainguy:kotlin-math:1.5.3'
implementation 'dev.romainguy:kotlin-math:1.6.0'
}
```

Expand Down
4 changes: 3 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
GROUP=dev.romainguy
VERSION_NAME=1.5.3
VERSION_NAME=1.6.0

POM_DESCRIPTION=Graphics oriented math library for Kotlin

Expand All @@ -18,3 +18,5 @@ POM_LICENCE_DIST=repo

POM_DEVELOPER_ID=romainguy
POM_DEVELOPER_NAME=Romain Guy

org.gradle.jvmargs=-XX:MaxMetaspaceSize=512m
3 changes: 3 additions & 0 deletions publish.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,9 @@ tasks.register('publishMac') {
dependsOn 'publishIosArm64PublicationToMavenRepository'
dependsOn 'publishIosSimulatorArm64PublicationToMavenRepository'
dependsOn 'publishIosX64PublicationToMavenRepository'
dependsOn 'publishWatchosArm64PublicationToMavenRepository'
dependsOn 'publishWatchosSimulatorArm64PublicationToMavenRepository'
dependsOn 'publishWatchosX64PublicationToMavenRepository'
dependsOn 'publishMacosArm64PublicationToMavenRepository'
dependsOn 'publishMacosX64PublicationToMavenRepository'
dependsOn 'publishJvmPublicationToMavenRepository'
Expand Down
2 changes: 2 additions & 0 deletions src/commonMain/kotlin/dev/romainguy/kotlin/math/Half.kt
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
// Operators +, *, / based on http://half.sourceforge.net/ by Christian Rau
// and licensed under MIT

@file:Suppress("NOTHING_TO_INLINE")

package dev.romainguy.kotlin.math

import dev.romainguy.kotlin.math.Half.Companion.POSITIVE_INFINITY
Expand Down
2 changes: 1 addition & 1 deletion src/commonMain/kotlin/dev/romainguy/kotlin/math/Matrix.kt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

@file:Suppress("unused")
@file:Suppress("unused", "NOTHING_TO_INLINE")

package dev.romainguy.kotlin.math

Expand Down

0 comments on commit 3708b9a

Please sign in to comment.