Skip to content

Commit

Permalink
bumped up:
Browse files Browse the repository at this point in the history
- kotlin 1.2.70
- gradle 4.10.2

added version and included ./idea
  • Loading branch information
elect86 committed Sep 21, 2018
1 parent 6942748 commit 75287b4
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,4 @@
#.idea/
#build/

.idea/
#.idea/
16 changes: 8 additions & 8 deletions .idea/modules/kotlin-unsigned.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ apply plugin: 'com.github.johnrengelman.shadow'

buildscript {

ext.kotlinVersion = '1.2.60'
ext.kotlinVersion = '1.2.70'

repositories {
jcenter() // shadow
Expand All @@ -15,15 +15,15 @@ buildscript {
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath 'com.github.jengelman.gradle.plugins:shadow:2.0.4'
classpath "org.junit.platform:junit-platform-gradle-plugin:1.1.0"
classpath "org.junit.platform:junit-platform-gradle-plugin:1.2.0"
}
}

dependencies {

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

testImplementation 'io.kotlintest:kotlintest-runner-junit5:3.1.0'
testImplementation 'io.kotlintest:kotlintest-runner-junit5:3.1.10'
}

repositories {
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.9-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.2-all.zip
1 change: 1 addition & 0 deletions src/main/kotlin/unsigned/unsigned.kt
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ fun Char.toUint() = Uint(toInt())
fun Char.toUlong() = Ulong(toLong())
fun Char.toUshort() = Ushort(toShort())

val version = "3.1.6"

0 comments on commit 75287b4

Please sign in to comment.