Skip to content

Commit 9e3f32c

Browse files
committed
3.1.0 release
1 parent 26ea711 commit 9e3f32c

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

NEWS.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
## 3.1
44

55
Major changes & enhancements
6-
* Removed jcenter as default dependency (apart from maven-central)
6+
* Removed jcenter as default dependency repository
7+
* Updated tests and build integration to function without jcenter
78

89

910
## 3.0

misc/kscript_release.sh

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# 3. Push and wait for travis CI results
66

77
#export KSCRIPT_HOME="/Users/brandl/projects/kotlin/kscript";
8-
export KSCRIPT_HOME="/mnt/hgfs/sharedDB/db_projects/kscript";
8+
export KSCRIPT_HOME="/mnt/hgfs/d_data/projects/misc/kscript";
99
export PATH=${KSCRIPT_HOME}:${PATH}
1010
export PATH=~/go/bin/:$PATH
1111

@@ -42,8 +42,8 @@ zip -r ${KSCRIPT_ARCHIVE}/kscript-${kscript_version}.zip kscript-${kscript_versi
4242
#apk add zip && cd /data && zip -r kscript-${kscript_version}.zip kscript-${kscript_version}
4343

4444

45-
open ${KSCRIPT_ARCHIVE}
46-
45+
#open ${KSCRIPT_ARCHIVE}
46+
xdg-open $KSCRIPT_ARCHIVE
4747

4848
## Ensure correct targetCompatibility
4949

@@ -74,6 +74,9 @@ cd ${KSCRIPT_HOME}
7474

7575
git config user.email "[email protected]"
7676

77+
git status
78+
git commit -am "${kscript_version} release"
79+
7780

7881
#git tag v${kscript_version} && git push --tags
7982
(git diff --exit-code && git tag v${kscript_version}) || echo "could not tag current branch"

src/main/kotlin/kscript/app/Kscript.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import kotlin.system.exitProcess
2323
* @author Holger Brandl
2424
*/
2525

26-
const val KSCRIPT_VERSION = "3.1"
26+
const val KSCRIPT_VERSION = "3.1.0"
2727

2828
val selfName = System.getenv("CUSTOM_KSCRIPT_NAME") ?: "kscript"
2929

0 commit comments

Comments
 (0)