Skip to content

Commit d36886e

Browse files
committed
v3.2.0
- kotlin 1.3.21 - kotlintest 3.2.1 - shadow 4.0.4 - gradle 5.2.1
1 parent f83c46b commit d36886e

File tree

4 files changed

+27
-33
lines changed

4 files changed

+27
-33
lines changed

.idea/modules/kotlin-unsigned.iml

+22-22
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build.gradle

+3-9
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,21 @@
11
plugins {
22
id 'maven'
3-
id "org.jetbrains.kotlin.jvm" version "1.3.11"
4-
id "com.github.johnrengelman.shadow" version '4.0.3'
3+
id "org.jetbrains.kotlin.jvm" version "1.3.21"
4+
id "com.github.johnrengelman.shadow" version '4.0.4'
55
}
66

77
ext{
88
moduleName = 'com.github.kotlin_graphics.kotlin_unsigned'
99
kotlin = 'org.jetbrains.kotlin:kotlin'
1010
kotlin_version = '1.3.21'
11-
kotlintest_version = '3.1.11'
11+
kotlintest_version = '3.2.1'
1212
}
1313

1414
dependencies {
1515

1616
implementation "$kotlin-stdlib"
1717

1818
testImplementation "io.kotlintest:kotlintest-runner-junit5:$kotlintest_version".toString()
19-
20-
constraints {
21-
testImplementation("$kotlin-stdlib:$kotlin_version")
22-
testImplementation("$kotlin-stdlib-jdk7:$kotlin_version")
23-
testImplementation("$kotlin-reflect:$kotlin_version")
24-
}
2519
}
2620

2721
repositories {

gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-5.0-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-5.2.1-all.zip

src/main/kotlin/unsigned/unsigned.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ fun Char.toUint() = Uint(toInt())
1818
fun Char.toUlong() = Ulong(toLong())
1919
fun Char.toUshort() = Ushort(toShort())
2020

21-
val version = "3.1.9"
21+
val version = "3.2.0"

0 commit comments

Comments
 (0)