Skip to content

Commit f47b309

Browse files
author
Peter Amstutz
committed
Update a few more instances of v1.1.0-dev1
1 parent ad80dff commit f47b309

12 files changed

+102
-106
lines changed

Process.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ $graph:
3838
- cwl:draft-4.dev3
3939
- cwl:v1.0.dev4
4040
- cwl:v1.0
41-
- cwl:v1.1.0-dev1 # a dash is required by the semver 2.0 rules
41+
- cwl:v1.1.0-dev1 # a dash is required by the semver 2.0 rules
4242
- cwl:v1.1
4343

4444
- name: CWLType

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ Proposed changes that aren't yet implemented are tracked at https://github.com/c
66

77
You can render this using https://github.com/common-workflow-language/cwl-website/blob/master/website.sh
88

9-
The current rendering is at https://www.commonwl.org/v1.1.0-dev1/
9+
The current rendering is at https://www.commonwl.org/v1.1/

concepts.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -89,12 +89,12 @@ preprocessing steps described in the
8989
[Semantic Annotations for Linked Avro Data (SALAD) Specification](SchemaSalad.html).
9090
An implementation may formally validate the structure of a CWL document using
9191
SALAD schemas located at
92-
https://github.com/common-workflow-language/common-workflow-language/tree/master/v1.1.0-dev1
92+
https://github.com/common-workflow-language/common-workflow-language/tree/master/v1.1
9393

9494
### map
9595

9696
Note: This section is non-normative.
97-
> type: array<ComplexType> |
97+
> type: array<ComplexType> |
9898
> map<`key_field`, ComplexType>
9999
100100
The above syntax in the CWL specifications means there are two or more ways to write the given value.
@@ -114,7 +114,7 @@ some_cwl_field:
114114
```
115115

116116
Option one specific example using [Workflow](Workflow.html#Workflow).[inputs](Workflow.html#WorkflowInputParameter):
117-
> array<InputParameter> |
117+
> array<InputParameter> |
118118
> map<`id`, `type` | InputParameter>
119119
120120

@@ -147,7 +147,7 @@ some_cwl_field:
147147
```
148148

149149
Option two specific example using [Workflow](Workflow.html#Workflow).[inputs](Workflow.html#WorkflowInputParameter):
150-
> array<InputParameter> |
150+
> array<InputParameter> |
151151
> map<`id`, `type` | InputParameter>
152152
153153

@@ -161,7 +161,7 @@ inputs:
161161
```
162162

163163
Option two specific example using [SoftwareRequirement](#SoftwareRequirement).[packages](#SoftwarePackage):
164-
> array<SoftwarePackage> |
164+
> array<SoftwarePackage> |
165165
> map<`package`, `specs` | SoftwarePackage>
166166
167167

@@ -177,7 +177,7 @@ hints:
177177
```
178178
`
179179
Sometimes we have a third and even more compact option denoted like this:
180-
> type: array<ComplexType> |
180+
> type: array<ComplexType> |
181181
> map<`key_field`, `field2` | ComplexType>
182182
183183
For this example, if we only need the `key_field` and `field2` when specifying
@@ -204,7 +204,7 @@ inputs:
204204
```
205205

206206
Option three specific example using [SoftwareRequirement](#SoftwareRequirement).[packages](#SoftwarePackage):
207-
> array<SoftwarePackage> |
207+
> array<SoftwarePackage> |
208208
> map<`package`, `specs` | SoftwarePackage>
209209
210210

@@ -248,7 +248,7 @@ inputs:
248248
```
249249

250250
Mixed option 2 and 3 specific example using [SoftwareRequirement](#SoftwareRequirement).[packages](#SoftwarePackage):
251-
> array<SoftwarePackage> |
251+
> array<SoftwarePackage> |
252252
> map<`package`, `specs` | SoftwarePackage>
253253
254254

@@ -403,7 +403,7 @@ as if they were specified there.
403403
Requirements specified in a parent Workflow are inherited by step processes
404404
if they are valid for that step. If the substep is a CommandLineTool
405405
only the `InlineJavascriptRequirement`, `SchemaDefRequirement`, `DockerRequirement`,
406-
`SoftwareRequirement`, `InitialWorkDirRequirement`, `EnvVarRequirement`,
406+
`SoftwareRequirement`, `InitialWorkDirRequirement`, `EnvVarRequirement`,
407407
`ShellCommandRequirement`, `ResourceRequirement` are valid.
408408

409409
*As good practice, it is best to have process requirements be self-contained,

conformance_tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2598,7 +2598,7 @@
25982598
doc: Test an anonymous enum inside an array inside a record, SchemaDefRequirement
25992599
tags: [command_line_tool, schema_def]
26002600

2601-
# New tests for v1.1.0-dev1
2601+
# New tests for v1.1
26022602

26032603
- job: tests/wc-job.json
26042604
output:

cwl-runner.cwl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env cwl-runner
22
class: CommandLineTool
3-
cwlVersion: v1.1.0-dev1
3+
cwlVersion: v1.1
44

55
doc: |
66
Generic interface to run a Common Workflow Language tool or workflow from the

index.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
# Common Workflow Language Specifications, v1.1.0-dev1
2-
3-
<!-- remove this before v1.1 is final! -->
4-
WARNING, this is a draft and in progress! Development of CWL v1.1 is coordinated at https://github.com/common-workflow-language/common-workflow-language/milestone/6
1+
# Common Workflow Language Specifications, v1.1
52

63
The CWL specifications are divided up into several documents.
74

tests/basename-fields-job.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
cwlVersion: v1.1.0-dev1
1+
cwlVersion: v1.1
22
tool:
33
class: File
44
path: echo-tool.cwl # could have been any file, this isn't a secret CWL feature :-)
5-

tests/cat1-testcli.cwl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env cwl-runner
22
{
33
"class": "CommandLineTool",
4-
"cwlVersion": "v1.1.0-dev1",
4+
"cwlVersion": "v1.1",
55
"doc": "Print the contents of a file to stdout using 'cat' running in a docker container.",
66
"hints": [
77
{

tests/import_schema-def_packed.cwl

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,86 +1,86 @@
11
{
2-
"cwlVersion": "v1.1.0-dev1",
2+
"cwlVersion": "v1.1",
33
"$graph": [
44
{
55
"inputs": [
66
{
7-
"type": "string",
7+
"type": "string",
88
"id": "#main/bam"
9-
},
9+
},
1010
{
11-
"type": "#capture_kit.yml/capture_kit",
11+
"type": "#capture_kit.yml/capture_kit",
1212
"id": "#main/capture_kit"
1313
}
14-
],
14+
],
1515
"requirements": [
1616
{
17-
"class": "SchemaDefRequirement",
17+
"class": "SchemaDefRequirement",
1818
"types": [
1919
{
2020
"fields": [
2121
{
22-
"type": "string",
22+
"type": "string",
2323
"name": "#capture_kit.yml/capture_kit/bait"
2424
}
25-
],
26-
"type": "record",
25+
],
26+
"type": "record",
2727
"name": "#capture_kit.yml/capture_kit"
2828
}
2929
]
3030
}
31-
],
31+
],
3232
"outputs": [
3333
{
34-
"outputSource": "#main/touch_bam/empty_file",
35-
"type": "File",
34+
"outputSource": "#main/touch_bam/empty_file",
35+
"type": "File",
3636
"id": "#main/output_bam"
3737
}
38-
],
39-
"class": "Workflow",
38+
],
39+
"class": "Workflow",
4040
"steps": [
4141
{
4242
"out": [
4343
"#main/touch_bam/empty_file"
44-
],
45-
"run": "#touch.cwl",
46-
"id": "#main/touch_bam",
44+
],
45+
"run": "#touch.cwl",
46+
"id": "#main/touch_bam",
4747
"in": [
4848
{
49-
"source": "#main/bam",
49+
"source": "#main/bam",
5050
"id": "#main/touch_bam/name"
5151
}
5252
]
5353
}
54-
],
54+
],
5555
"id": "#main"
56-
},
56+
},
5757
{
5858
"inputs": [
5959
{
6060
"inputBinding": {
6161
"position": 0
62-
},
63-
"type": "string",
62+
},
63+
"type": "string",
6464
"id": "#touch.cwl/name"
6565
}
66-
],
66+
],
6767
"outputs": [
6868
{
6969
"outputBinding": {
7070
"glob": "$(inputs.name)"
71-
},
72-
"type": "File",
71+
},
72+
"type": "File",
7373
"id": "#touch.cwl/empty_file"
7474
}
75-
],
75+
],
7676
"baseCommand": [
7777
"touch"
78-
],
79-
"class": "CommandLineTool",
80-
"id": "#touch.cwl",
78+
],
79+
"class": "CommandLineTool",
80+
"id": "#touch.cwl",
8181
"hints": [
8282
{
83-
"dockerPull": "debian:stretch-slim",
83+
"dockerPull": "debian:stretch-slim",
8484
"class": "DockerRequirement"
8585
}
8686
]

tests/optional-output.cwl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env cwl-runner
22
class: CommandLineTool
3-
cwlVersion: "v1.1.0-dev1"
3+
cwlVersion: "v1.1"
44
doc: "Print the contents of a file to stdout using 'cat' running in a docker container."
55
hints:
66
DockerRequirement:

0 commit comments

Comments
 (0)