Skip to content

Commit 70a076a

Browse files
committed
update release notes
1 parent ce50dfd commit 70a076a

File tree

8 files changed

+31
-9
lines changed

8 files changed

+31
-9
lines changed

site/cwlsite.cwl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env cwl-runner
2-
cwlVersion: cwl:v1.0.dev4
2+
cwlVersion: cwl:v1.0
33

44
class: Workflow
55
inputs:

site/linkchecker.cwl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
class: CommandLineTool
2-
cwlVersion: v1.0.dev4
2+
cwlVersion: v1.0
33
hints:
44
DockerRequirement:
55
dockerFile: |

site/makecontext.cwl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cwlVersion: v1.0.dev4
1+
cwlVersion: v1.0
22
class: CommandLineTool
33
inputs:
44
schema:

site/makedoc.cwl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cwlVersion: v1.0.dev4
1+
cwlVersion: v1.0
22
class: CommandLineTool
33
requirements:
44
- class: InlineJavascriptRequirement

site/makerdfs.cwl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cwlVersion: v1.0.dev4
1+
cwlVersion: v1.0
22
class: CommandLineTool
33
inputs:
44
schema:

site/makespec.cwl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cwlVersion: v1.0.dev4
1+
cwlVersion: v1.0
22
class: Workflow
33

44
inputs:

site/mergesecondary.cwl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
class: ExpressionTool
2-
cwlVersion: v1.0.dev4
2+
cwlVersion: v1.0
33
inputs:
44
primary: File
55
secondary: File[]

v1.0/CommandLineTool.yml

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,32 @@ $graph:
3939
## Introduction to v1.0
4040
4141
This specification represents the first full release from the CWL group.
42-
Since draft-3, this draft introduces the following changes and additions:
42+
Since draft-3, version 1.0 introduces the following changes and additions:
4343
4444
* The [Directory](#Directory) type.
45-
* "id: name" is now "name"; "class: Classname" is now "Classname".
45+
* Syntax simplifcations: denoted by the map<> syntax. Example: inputs
46+
contains a list of items, each with an id. Now one can specify
47+
a mapping of that identifier to the corresponding
48+
`CommandInputParamater`.
49+
```
50+
inputs:
51+
- id: one
52+
type: string
53+
doc: First input parameter
54+
- id: two
55+
type: int
56+
doc: Second input parameter
57+
```
58+
can be
59+
```
60+
inputs:
61+
one:
62+
type: string
63+
doc: First input parameter
64+
two:
65+
type: int
66+
doc: Second input parameter
67+
```
4668
* [InitialWorkDirRequirement](#InitialWorkDirRequirement): list of
4769
files and subdirectories to be present in the output directory prior
4870
to execution.

0 commit comments

Comments
 (0)