Skip to content

Commit b489686

Browse files
committed
inc version to 1.5
1 parent 9dbaf7b commit b489686

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

kscript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
## note: always use a patch release even if it's 0
4-
KSCRIPT_VERSION=1.4.2
4+
KSCRIPT_VERSION=1.5.0
55

66
## make sure that all requirements (java, kotlinc, maven) to run kscript are met
77
assertInPath(){ if [ -z "$(which $1)" ]; then echo "[ERROR] Could not locate '$1'" 1>&2; exit 1; fi }

misc/kscript_dev_notes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export KSCRIPT_HOME="/Users/brandl/projects/kotlin/kscript";
88
export PATH=${KSCRIPT_HOME}:${PATH}
99
export PATH=~/go/bin/:$PATH
1010

11-
kscript_version=$(grep 'export KSCRIPT_VERSION' ${KSCRIPT_HOME}/kscript | cut -f2 -d'=')
11+
kscript_version=$(grep '^KSCRIPT_VERSION' ${KSCRIPT_HOME}/kscript | cut -f2 -d'=')
1212
echo "new version is $kscript_version"
1313
## see https://github.com/aktau/github-release
1414

0 commit comments

Comments
 (0)