Skip to content

Commit 7b9e5fe

Browse files
committed
update changelog, fix #664
1 parent 4361edc commit 7b9e5fe

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ version 1.2.0
9292
version 1.1.3
9393
---------------------------
9494

95-
* Fix issues with examples (#653, #654, #661, #662, #663). Thanks to @stxue1!
95+
* Fix issues with examples (#653, #654, #661, #662, #663, #664). Thanks to @stxue1!
9696

9797
version 1.1.2
9898
---------------------------

SPEC.md

+2-4
Original file line numberDiff line numberDiff line change
@@ -6836,7 +6836,6 @@ workflow allow_nested {
68366836
input {
68376837
Int int_val
68386838
String msg1
6839-
String msg2
68406839
Array[Int] my_ints
68416840
File ref_file
68426841
}
@@ -6852,7 +6851,7 @@ workflow allow_nested {
68526851
68536852
call lib.repeat as repeat2 {
68546853
# Note: the default value of `0` for the `i` input causes the task to fail
6855-
opt_string = msg2
6854+
i = 2
68566855
}
68576856
68586857
scatter (i in my_ints) {
@@ -6876,10 +6875,9 @@ Example input:
68766875
{
68776876
"allow_nested.int_val": 3,
68786877
"allow_nested.msg1": "hello",
6879-
"allow_nested.msg2": "goodbye",
68806878
"allow_nested.my_ints": [1, 2, 3],
68816879
"allow_nested.ref_file": "hello.txt",
6882-
"allow_nested.repeat2.i": 2
6880+
"allow_nested.repeat2.opt_string": "goodbye"
68836881
}
68846882
```
68856883

0 commit comments

Comments
 (0)