Skip to content

Commit 75287b4

Browse files
committed
bumped up:
- kotlin 1.2.70 - gradle 4.10.2 added version and included ./idea
1 parent 6942748 commit 75287b4

File tree

5 files changed

+14
-13
lines changed

5 files changed

+14
-13
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,4 @@
4949
#.idea/
5050
#build/
5151

52-
.idea/
52+
#.idea/

.idea/modules/kotlin-unsigned.iml

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

build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ apply plugin: 'com.github.johnrengelman.shadow'
55

66
buildscript {
77

8-
ext.kotlinVersion = '1.2.60'
8+
ext.kotlinVersion = '1.2.70'
99

1010
repositories {
1111
jcenter() // shadow
@@ -15,15 +15,15 @@ buildscript {
1515
dependencies {
1616
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
1717
classpath 'com.github.jengelman.gradle.plugins:shadow:2.0.4'
18-
classpath "org.junit.platform:junit-platform-gradle-plugin:1.1.0"
18+
classpath "org.junit.platform:junit-platform-gradle-plugin:1.2.0"
1919
}
2020
}
2121

2222
dependencies {
2323

2424
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
2525

26-
testImplementation 'io.kotlintest:kotlintest-runner-junit5:3.1.0'
26+
testImplementation 'io.kotlintest:kotlintest-runner-junit5:3.1.10'
2727
}
2828

2929
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-4.9-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.2-all.zip

src/main/kotlin/unsigned/unsigned.kt

+1
Original file line numberDiff line numberDiff line change
@@ -18,3 +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.6"

0 commit comments

Comments
 (0)