Skip to content

Commit ecd3fb8

Browse files
author
Holger Brandl
committed
cont debugging of tailing travis config
1 parent 4e6b549 commit ecd3fb8

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

NEWS.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11

22

3+
## v2.4
4+
5+
Major Enhancements:
6+
* Allow to set `kotlinc` compiler flags with @file:CompilerOpts or `//COMPILER_OPTS` (#84). See [here](https://github.com/holgerbrandl/kscript#deploy-scripts-as-standalone-binaries).
7+
* Provide a way to "package" kscripts (#63). See [here](https://github.com/holgerbrandl/kscript#configure-the-runtime--with-kotlin_opts).
8+
9+
Minor Enhancements:
10+
11+
* Fixed #95: `//INCLUDE` requiring full path
12+
* Fixed #94: stdin does not allow further switches
13+
* Allow for round brackets in artifact ids (fixes #100).
14+
* Fixed #83: interactive fails unless your script contains dependencies
15+
* Fixed #82: Symlinking does not work correctly with --idea and relati…
16+
* New: Implemented benchmarking suite to assess runtime impact of `kscript`
17+
* Fixed: Don't use null in classpath arguments if classpath is empty
18+
* Fixed: Use `exec` for derived interpreter
19+
* Simplify Gradle config for script boostraping with IDEA (#86)
20+
* Added Gradle wrapper to the project (#87 and #88)
21+
22+
323
## v2.3
424

525

test/test_suite.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,8 +207,9 @@ assert "${KSCRIPT_HOME}/test/resources/script_in_pckg.kts" "I live in a package!
207207
#assert "rm -f ./package_example && kscript --package test/resources/package_example.kts &>/dev/null && ./package_example 1" "package_me_args_1_mem_4772593664"
208208

209209
assert "kscript --package test/resources/package_example.kts" "foo"
210-
#assert "./package_example 1" "package_me_args_1_mem_4772593664"
210+
#assert "./package_example 1" "package_me_args_1_mem_4772593664"da
211211
#assert "echo 1" "package_me_args_1_mem_4772593664"
212+
assert_statement 'rm -f kscriptlet* && kscript --package "println(args.size)"' "foo" "bar" 0
212213

213214
## https://unix.stackexchange.com/questions/17064/how-to-print-only-last-column
214215
assert 'rm -f kscriptlet* && cmd=$(kscript --package "println(args.size)" 2>&1 | tail -n1 | cut -f 5 -d " ") && $cmd three arg uments' "3"

0 commit comments

Comments
 (0)