Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix many issues with examples #669

Open
wants to merge 26 commits into
base: wdl-1.1
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
00a75d5
Add fixes
stxue1 Jun 19, 2024
b0b0713
update versions
jdidion Jun 25, 2024
6401dfa
Update SPEC.md (#660)
stxue1 Jun 25, 2024
5f139ec
Specify container with `lspci` for GPU WDL example. (#659)
stxue1 Jun 25, 2024
28123ee
fix #661
jdidion Jun 26, 2024
0983069
update changelog, fix #662
jdidion Jun 26, 2024
4535d55
update changelog, fix #663
jdidion Jun 26, 2024
71070a0
update changelog, fix #664
jdidion Jun 26, 2024
c5c7c0f
update changelog, fix #665, #666
jdidion Jun 26, 2024
caff59d
update changelog, fix #668
jdidion Jun 26, 2024
6453a92
fix #667
jdidion Jun 26, 2024
59bbd40
update changelog
jdidion Jun 26, 2024
41ffadd
Various fixes to get most of the tests running
stxue1 Jul 3, 2024
4935071
Move infile to input
stxue1 Jul 3, 2024
7ea277d
Bring back whitespace as that should be supported by the spec
stxue1 Jul 3, 2024
28f3503
Bring back whitespace as that should be supported by the spec
stxue1 Jul 3, 2024
e396d64
Convert string back to int as coercion is apparenlty not part of the
stxue1 Jul 3, 2024
ae73a6f
Merge branch 'wdl-1.1-fixes' of github.com:stxue1/wdl into wdl-1.1-fixes
stxue1 Jul 3, 2024
c5a44a5
Revert read_boolean changes
stxue1 Jul 3, 2024
d2a8b9e
671: fix python json serialization of string list
jdidion Jul 24, 2024
c0cd737
update readme
jdidion Jul 24, 2024
8da3e0a
Merge branch 'wdl-1.1.3' into wdl-1.1-fixes
jdidion Jul 24, 2024
82acf71
Merge pull request #674 from stxue1/wdl-1.1-fixes
jdidion Jul 24, 2024
81dc127
fix
jdidion Jul 24, 2024
1626777
fix
jdidion Jul 24, 2024
20ff54d
use index_id rather than hard-coded path, add missing variable
jdidion Jul 26, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,12 @@ 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, #663, #664, #665, #666, #668, #671). Thanks to @stxue1!
* Clarify that a file is not required to exist or be accessible until and unless it is accessed.

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

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ The WDL *language* has a two-number version (e.g., `1.1`).
An increase in the minor (second) version number (e.g., `1.0` to `1.1`) indicates the addition of, or non-breaking changes to, the language or standard library functions.
An increase in the major (first) version number (e.g., `1.0` to `2.0`) indicates that breaking changes have been made.

The WDL *specification* has a three-number version (e.g., `1.1.2`).
The WDL *specification* has a three-number version (e.g., `1.1.3`).
The specification version tracks the language version, but there may also be patch releases (indicated by a change to the patch, or third, version number) that include fixes for typos, additional examples, or non-breaking clarifications of ambiguous language.

## Language Specifications
Expand Down
Loading