Skip to content

Commit

Permalink
update changelog, fix #662
Browse files Browse the repository at this point in the history
  • Loading branch information
jdidion committed Jun 26, 2024
1 parent 28123ee commit 0983069
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 12 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,11 @@ version development
consist of multiple files.
[PR 241](https://github.com/openwdl/wdl/pull/241) by @cjllanwarne.

version 1.1.3
---------------------------

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

version 1.1.2
---------------------------

Expand Down
26 changes: 14 additions & 12 deletions SPEC.md
Original file line number Diff line number Diff line change
Expand Up @@ -1425,18 +1425,20 @@ workflow map_to_struct {
String b = "key"
String c = "lookup"
# What are the keys to this Struct?
Words literal_syntax = Words {
a: 10,
b: 11,
c: 12
}
# What are the keys to this Struct?
Words map_coercion = {
a: 10,
b: 11,
c: 12
output {
# What are the keys to this Struct?
Words literal_syntax = Words {
a: 10,
b: 11,
c: 12
}
# What are the keys to this Struct?
Words map_coercion = {
a: 10,
b: 11,
c: 12
}
}
}
```
Expand Down

0 comments on commit 0983069

Please sign in to comment.