diff options
author | Javier Jardón <jjardon@gnome.org> | 2019-09-12 12:56:09 +0100 |
---|---|---|
committer | Javier Jardón <jjardon@gnome.org> | 2019-09-12 13:54:48 +0100 |
commit | e27dffd2e5003020e7cad13160b4f5311898ceba (patch) | |
tree | a624f4a3d98e96a8afa39e5fc18e496fb1c93218 /doc | |
parent | 38c620928fc0547f613a2e4c4f7f894c5c8172e2 (diff) | |
download | buildstream-e27dffd2e5003020e7cad13160b4f5311898ceba.tar.gz |
Fail if we try to build a BST_FORMAT_VERSION we do not support anymorejjardon/BST_FORMAT_VERSION
bst-1.x support BST_FORMAT_VERSION == 17, as that is not supported by
master I think is ok to set BST_FORMAT_VERSION_MIN = 18
Diffstat (limited to 'doc')
-rw-r--r-- | doc/examples/autotools/project.conf | 2 | ||||
-rw-r--r-- | doc/examples/developing/project.conf | 2 | ||||
-rw-r--r-- | doc/examples/first-project/project.conf | 2 | ||||
-rw-r--r-- | doc/examples/integration-commands/project.conf | 2 | ||||
-rw-r--r-- | doc/examples/junctions/autotools/project.conf | 2 | ||||
-rw-r--r-- | doc/examples/junctions/project.conf | 2 | ||||
-rw-r--r-- | doc/examples/running-commands/project.conf | 2 | ||||
-rw-r--r-- | doc/source/format_project.rst | 2 |
8 files changed, 8 insertions, 8 deletions
diff --git a/doc/examples/autotools/project.conf b/doc/examples/autotools/project.conf index 96e0284e0..6c1142340 100644 --- a/doc/examples/autotools/project.conf +++ b/doc/examples/autotools/project.conf @@ -2,7 +2,7 @@ name: autotools # Required BuildStream format version -format-version: 9 +format-version: 18 # Subdirectory where elements are stored element-path: elements diff --git a/doc/examples/developing/project.conf b/doc/examples/developing/project.conf index 1ae2e08be..3b0920991 100644 --- a/doc/examples/developing/project.conf +++ b/doc/examples/developing/project.conf @@ -2,7 +2,7 @@ name: developing # Required BuildStream format version -format-version: 9 +format-version: 18 # Subdirectory where elements are stored element-path: elements diff --git a/doc/examples/first-project/project.conf b/doc/examples/first-project/project.conf index 2182d35a1..2e3d086b1 100644 --- a/doc/examples/first-project/project.conf +++ b/doc/examples/first-project/project.conf @@ -2,7 +2,7 @@ name: first-project # Required BuildStream format version -format-version: 9 +format-version: 18 # Subdirectory where elements are stored element-path: elements diff --git a/doc/examples/integration-commands/project.conf b/doc/examples/integration-commands/project.conf index 9ae5b2a3c..c6c59906b 100644 --- a/doc/examples/integration-commands/project.conf +++ b/doc/examples/integration-commands/project.conf @@ -2,7 +2,7 @@ name: integration-commands # Required BuildStream format version -format-version: 9 +format-version: 18 # Subdirectory where elements are stored element-path: elements diff --git a/doc/examples/junctions/autotools/project.conf b/doc/examples/junctions/autotools/project.conf index 2cf58245d..216816335 100644 --- a/doc/examples/junctions/autotools/project.conf +++ b/doc/examples/junctions/autotools/project.conf @@ -2,7 +2,7 @@ name: autotools # Required BuildStream format version -format-version: 9 +format-version: 18 # Subdirectory where elements are stored element-path: elements diff --git a/doc/examples/junctions/project.conf b/doc/examples/junctions/project.conf index 7f8ca6a38..cb9a83716 100644 --- a/doc/examples/junctions/project.conf +++ b/doc/examples/junctions/project.conf @@ -2,7 +2,7 @@ name: junctions # Required BuildStream format version -format-version: 9 +format-version: 18 # Subdirectory where elements are stored element-path: elements diff --git a/doc/examples/running-commands/project.conf b/doc/examples/running-commands/project.conf index 7127b0db9..aafb6a9f2 100644 --- a/doc/examples/running-commands/project.conf +++ b/doc/examples/running-commands/project.conf @@ -2,7 +2,7 @@ name: running-commands # Required BuildStream format version -format-version: 9 +format-version: 18 # Subdirectory where elements are stored element-path: elements diff --git a/doc/source/format_project.rst b/doc/source/format_project.rst index c4988527a..85c97ddc0 100644 --- a/doc/source/format_project.rst +++ b/doc/source/format_project.rst @@ -54,7 +54,7 @@ the ``format-version`` field, e.g.: .. code:: yaml # The minimum base BuildStream format - format-version: 0 + format-version: 18 BuildStream will increment its core YAML format version at least once in any given minor point release where the format has been extended |