Skip to content

Commit a731722

Browse files
committed
cli/compose: add schema 3.13 (no changes from 3.12 yet)
Signed-off-by: Rob Murray <[email protected]>
1 parent 9b61bbb commit a731722

File tree

8 files changed

+681
-7
lines changed

8 files changed

+681
-7
lines changed

cli/compose/loader/full-example.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: "3.12"
1+
version: "3.13"
22

33
services:
44
foo:

cli/compose/loader/full-struct_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111

1212
func fullExampleConfig(workingDir, homeDir string) *types.Config {
1313
return &types.Config{
14-
Version: "3.12",
14+
Version: "3.13",
1515
Services: services(workingDir, homeDir),
1616
Networks: networks(),
1717
Volumes: volumes(),

cli/compose/loader/loader_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ func strPtr(val string) *string {
184184
}
185185

186186
var sampleConfig = types.Config{
187-
Version: "3.12",
187+
Version: "3.13",
188188
Services: []types.ServiceConfig{
189189
{
190190
Name: "foo",

cli/compose/loader/testdata/full-example.json.golden

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -509,7 +509,7 @@
509509
"working_dir": "/code"
510510
}
511511
},
512-
"version": "3.12",
512+
"version": "3.13",
513513
"volumes": {
514514
"another-volume": {
515515
"name": "user_specified_name",

cli/compose/loader/testdata/full-example.yaml.golden

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: "3.12"
1+
version: "3.13"
22
services:
33
foo:
44
build:

0 commit comments

Comments
 (0)