Skip to content

Commit 8265f71

Browse files
bumped version to v2.9.0
1 parent aac75af commit 8265f71

File tree

4 files changed

+40
-3
lines changed

4 files changed

+40
-3
lines changed

NEWS.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
# Changes
2+
3+
## 2.9
4+
5+
6+
Support environment variables in repository credentials ([#248](https://github.com/holgerbrandl/kscript/issues/159))
7+
* Make INCLUDE directive files relative to script dir
8+
* Create a default Run Configuration for Idea ([#244](https://github.com/holgerbrandl/kscript/issues/159))
9+
10+
Minor enhancements & fixes:
11+
* Support whitespace around maven repo credentials (fixes [#228](https://github.com/holgerbrandl/kscript/issues/159))
12+
* Make INCLUDE directive files relative to script dir
13+
* Fixed support for gitbash
14+
* Fixed bootstrap header ([#234](https://github.com/holgerbrandl/kscript/issues/159))
15+
* Improved and documented basic testing support ([#247](https://github.com/holgerbrandl/kscript/issues/159))
16+
117

218
## 2.8
319

docs/notes.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,26 @@ export JAVA_HOME=`/usr/libexec/java_home -v 9.0.1`
2222
export JAVA_HOME=`/usr/libexec/java_home -v 1.8.0_151`
2323
```
2424

25+
26+
## Change java version ubuntu
27+
28+
default version https://tecadmin.net/install-openjdk-java-ubuntu/
29+
30+
installation https://askubuntu.com/questions/121654/how-to-set-default-java-version
31+
32+
33+
## Java11 Support
34+
35+
security module required
36+
* https://issues.apache.org/jira/secure/attachment/12708191/ZOOKEEPER-2056.patch
37+
* list modules https://www.oracle.com/corporate/features/understanding-java-9-modules.html --> `java --list-modules` -->
38+
```
39+
java --list-modules | grep jg
40+
41+
42+
43+
```
44+
2545
## launcher
2646

2747
https://stackoverflow.com/questions/59895/getting-the-source-directory-of-a-bash-script-from-within

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import kotlin.system.exitProcess
2121
* @author Holger Brandl
2222
*/
2323

24-
const val KSCRIPT_VERSION = "2.8.0"
24+
const val KSCRIPT_VERSION = "2.9.0"
2525

2626
val selfName = System.getenv("CUSTOM_KSCRIPT_NAME") ?: "kscript"
2727

@@ -45,7 +45,7 @@ Options:
4545
--add-bootstrap-header Prepend bash header that installs kscript if necessary
4646
4747
48-
Copyright : 2017 Holger Brandl
48+
Copyright : 2019 Holger Brandl
4949
License : MIT
5050
Version : v$KSCRIPT_VERSION
5151
Website : https://github.com/holgerbrandl/kscript

test/TestsReadme.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ To run the tests, just run the [`test_suite.sh`](test_suite.sh)
1919

2020
#git clone https://github.com/holgerbrandl/kscript ; export KSCRIPT_HOME=$(pwd)/kscript
2121

22-
export KSCRIPT_HOME="/Users/brandl/projects/kotlin/kscript"
22+
#export KSCRIPT_HOME="/Users/brandl/projects/kotlin/kscript"
23+
export KSCRIPT_HOME="/mnt/hgfs/sharedDB/db_projects/kscript"
2324
#export KSCRIPT_HOME="/cygdrive/z/kscript"
2425
## change into this/test directory
2526

0 commit comments

Comments
 (0)