Skip to content

Commit

Permalink
update changelog, fix #664
Browse files Browse the repository at this point in the history
  • Loading branch information
jdidion committed Jun 26, 2024
1 parent 4361edc commit 7b9e5fe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ version 1.2.0
version 1.1.3
---------------------------

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

version 1.1.2
---------------------------
Expand Down
6 changes: 2 additions & 4 deletions SPEC.md
Original file line number Diff line number Diff line change
Expand Up @@ -6836,7 +6836,6 @@ workflow allow_nested {
input {
Int int_val
String msg1
String msg2
Array[Int] my_ints
File ref_file
}
Expand All @@ -6852,7 +6851,7 @@ workflow allow_nested {
call lib.repeat as repeat2 {
# Note: the default value of `0` for the `i` input causes the task to fail
opt_string = msg2
i = 2
}
scatter (i in my_ints) {
Expand All @@ -6876,10 +6875,9 @@ Example input:
{
"allow_nested.int_val": 3,
"allow_nested.msg1": "hello",
"allow_nested.msg2": "goodbye",
"allow_nested.my_ints": [1, 2, 3],
"allow_nested.ref_file": "hello.txt",
"allow_nested.repeat2.i": 2
"allow_nested.repeat2.opt_string": "goodbye"
}
```

Expand Down

0 comments on commit 7b9e5fe

Please sign in to comment.