Skip to content

Commit 6ba06b5

Browse files
committed
Revert "cli/compose: add schema 3.14 (no changes from 3.13 yet)"
This reverts commit d0c86d3. Signed-off-by: Paweł Gronowski <[email protected]>
1 parent e0716b5 commit 6ba06b5

File tree

8 files changed

+7
-688
lines changed

8 files changed

+7
-688
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.14"
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.14",
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.14",
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
@@ -513,7 +513,7 @@
513513
"working_dir": "/code"
514514
}
515515
},
516-
"version": "3.14",
516+
"version": "3.13",
517517
"volumes": {
518518
"another-volume": {
519519
"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.14"
1+
version: "3.13"
22
services:
33
foo:
44
build:

0 commit comments

Comments
 (0)