File tree 5 files changed +10
-3
lines changed
src/commonMain/kotlin/dev/romainguy/kotlin/math
5 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ repositories {
26
26
}
27
27
28
28
dependencies {
29
- implementation 'dev.romainguy:kotlin-math:1.5.3 '
29
+ implementation 'dev.romainguy:kotlin-math:1.6.0 '
30
30
}
31
31
```
32
32
Original file line number Diff line number Diff line change 1
1
GROUP =dev.romainguy
2
- VERSION_NAME =1.5.3
2
+ VERSION_NAME =1.6.0
3
3
4
4
POM_DESCRIPTION =Graphics oriented math library for Kotlin
5
5
@@ -18,3 +18,5 @@ POM_LICENCE_DIST=repo
18
18
19
19
POM_DEVELOPER_ID =romainguy
20
20
POM_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') {
74
74
dependsOn ' publishIosArm64PublicationToMavenRepository'
75
75
dependsOn ' publishIosSimulatorArm64PublicationToMavenRepository'
76
76
dependsOn ' publishIosX64PublicationToMavenRepository'
77
+ dependsOn ' publishWatchosArm64PublicationToMavenRepository'
78
+ dependsOn ' publishWatchosSimulatorArm64PublicationToMavenRepository'
79
+ dependsOn ' publishWatchosX64PublicationToMavenRepository'
77
80
dependsOn ' publishMacosArm64PublicationToMavenRepository'
78
81
dependsOn ' publishMacosX64PublicationToMavenRepository'
79
82
dependsOn ' publishJvmPublicationToMavenRepository'
Original file line number Diff line number Diff line change 17
17
// Operators +, *, / based on http://half.sourceforge.net/ by Christian Rau
18
18
// and licensed under MIT
19
19
20
+ @file:Suppress(" NOTHING_TO_INLINE" )
21
+
20
22
package dev.romainguy.kotlin.math
21
23
22
24
import dev.romainguy.kotlin.math.Half.Companion.POSITIVE_INFINITY
Original file line number Diff line number Diff line change 14
14
* limitations under the License.
15
15
*/
16
16
17
- @file:Suppress(" unused" )
17
+ @file:Suppress(" unused" , " NOTHING_TO_INLINE " )
18
18
19
19
package dev.romainguy.kotlin.math
20
20
You can’t perform that action at this time.
0 commit comments