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 #670

Open
wants to merge 26 commits into
base: wdl-1.2
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 20 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
1d2309b
update versions
jdidion Jun 25, 2024
d7a7156
fix #661
jdidion Jun 26, 2024
100e82f
update changelog;
jdidion Jun 26, 2024
edd1d9b
update changelog, fix #662
jdidion Jun 26, 2024
efd4165
update changelog, fix #663
jdidion Jun 26, 2024
4361edc
update changelog, fix #663
jdidion Jun 26, 2024
7b9e5fe
update changelog, fix #664
jdidion Jun 26, 2024
273e7cc
update changelog, fix #665
jdidion Jun 26, 2024
7a509ae
update changelog, fix #666
jdidion Jun 26, 2024
be15cf2
update changelog, fix #665
jdidion Jun 26, 2024
e2418eb
update changelog, fix #666
jdidion Jun 26, 2024
a2f6b57
update changelog, fix #668
jdidion Jun 26, 2024
d470654
fix #667
jdidion Jun 26, 2024
3da8825
update changelog
jdidion Jun 26, 2024
5bd0b0f
672: clarify that mount points must be empty, writable, and ephemeral
jdidion Jul 24, 2024
ea1cd0a
671: fix python json serialization of string list
jdidion Jul 24, 2024
b927573
migrate changes from #674
jdidion Jul 24, 2024
91f2788
fix
jdidion Jul 24, 2024
830d074
disallow relative path literals
jdidion Jul 25, 2024
a38d161
update changelog
jdidion Jul 25, 2024
fcd5751
Fix typo
markwoon Jul 25, 2024
2cf8f64
Merge pull request #677 from markwoon/patch-1
jdidion Jul 25, 2024
5f650f4
use index_id rather than hard-coded path
jdidion Jul 26, 2024
d954a11
clarify
jdidion Jul 26, 2024
b994318
fix test, make use of "host" vs "execution environment" consistent
jdidion Jul 26, 2024
865b913
suggest values for file/directory inputs and outputs in stadnard JSON…
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
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,15 @@ Keep the changelog pleasant to read in the text editor:
+ Properly indent blocks.
-->

version 1.2.1
---------------------------

* Clarify that `disks` mount points ephemeral and should not already exist

* Deprecate the use of relative path literals in input and private variable declarations.

* Include fixes to examples introduced in v1.1.3

version 1.2.0
---------------------------

Expand All @@ -35,7 +44,7 @@ version 1.2.0
+ Added `disks` and `gpu` reserved hints for requesting specific resources.

+ Added `contains_key` function to standard library. [PR 603](https://github.com/openwdl/wdl/pull/603)

****
+ Added exponentiation operator (`**`).

+ Added `find`, and `matches` functions.
Expand Down Expand Up @@ -84,6 +93,11 @@ version 1.2.0

+ Clarified that accessing a non-existent member of an object, struct, or call is an error.

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

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

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.2`).
An increase in the minor (second) version number (e.g., `1.1` to `1.2`) 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.2.0`).
The WDL *specification* has a three-number version (e.g., `1.2.1`).
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