File tree Expand file tree Collapse file tree 5 files changed +10
-3
lines changed
src/commonMain/kotlin/dev/romainguy/kotlin/math Expand file tree Collapse file tree 5 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ repositories {
2626}
2727
2828dependencies {
29- implementation 'dev.romainguy:kotlin-math:1.5.3 '
29+ implementation 'dev.romainguy:kotlin-math:1.6.0 '
3030}
3131```
3232
Original file line number Diff line number Diff line change 11GROUP =dev.romainguy
2- VERSION_NAME =1.5.3
2+ VERSION_NAME =1.6.0
33
44POM_DESCRIPTION =Graphics oriented math library for Kotlin
55
@@ -18,3 +18,5 @@ POM_LICENCE_DIST=repo
1818
1919POM_DEVELOPER_ID =romainguy
2020POM_DEVELOPER_NAME =Romain Guy
21+
22+ org.gradle.jvmargs =-XX:MaxMetaspaceSize =512m
Original file line number Diff line number Diff 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'
Original file line number Diff line number Diff line change 1717// Operators +, *, / based on http://half.sourceforge.net/ by Christian Rau
1818// and licensed under MIT
1919
20+ @file:Suppress(" NOTHING_TO_INLINE" )
21+
2022package dev.romainguy.kotlin.math
2123
2224import dev.romainguy.kotlin.math.Half.Companion.POSITIVE_INFINITY
Original file line number Diff line number Diff line change 1414 * limitations under the License.
1515 */
1616
17- @file:Suppress(" unused" )
17+ @file:Suppress(" unused" , " NOTHING_TO_INLINE " )
1818
1919package dev.romainguy.kotlin.math
2020
You can’t perform that action at this time.
0 commit comments