From fa3b321f0222773dfd67d080ebba5b80447c1cb4 Mon Sep 17 00:00:00 2001 From: Holger Brandl Date: Tue, 14 Nov 2017 14:26:26 +0100 Subject: [PATCH] inc version to 2.2.0 --- build.gradle | 2 ++ kscript | 2 +- misc/kscript_release.sh | 2 +- src/main/kotlin/kscript/app/Kscript.kt | 2 +- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index cde438ca..763bcceb 100644 --- a/build.gradle +++ b/build.gradle @@ -10,6 +10,8 @@ apply plugin: 'com.github.johnrengelman.shadow' dependencies { // https://docs.gradle.org/current/userguide/java_plugin.html#sec:java_plugin_and_dependency_management compileOnly "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" +// compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" + // compile "org.apache.commons:commons-csv:1.3" compile "com.offbytwo:docopt:0.6.0.20150202" diff --git a/kscript b/kscript index d8972f2e..78145294 100755 --- a/kscript +++ b/kscript @@ -2,7 +2,7 @@ # version tag for backward compatibility with kscript v1.x -KSCRIPT_VERSION=2.1.1 +KSCRIPT_VERSION=2.2.0 ## resolve application jar path from script location and convert to windows path when using cygwin diff --git a/misc/kscript_release.sh b/misc/kscript_release.sh index cbb0617e..90ac7a0e 100644 --- a/misc/kscript_release.sh +++ b/misc/kscript_release.sh @@ -1,6 +1,6 @@ ## Release Checklist -# 1. Increment version in `kscript` +# 1. Increment version in `Kscript.kt` # 2. Make sure that support api version is up to date and available from jcenter # 3. Push and wait for travis CI results diff --git a/src/main/kotlin/kscript/app/Kscript.kt b/src/main/kotlin/kscript/app/Kscript.kt index 96a535a3..05482f5d 100644 --- a/src/main/kotlin/kscript/app/Kscript.kt +++ b/src/main/kotlin/kscript/app/Kscript.kt @@ -19,7 +19,7 @@ import kotlin.system.exitProcess * @author Holger Brandl */ -const val KSCRIPT_VERSION = "2.1.1" +const val KSCRIPT_VERSION = "2.2.0" val USAGE = """ kscript - Enhanced scripting support for Kotlin on *nix-based systems.