diff options
author | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2018-04-15 20:50:01 +0900 |
---|---|---|
committer | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2018-04-15 20:50:01 +0900 |
commit | 43e09ccf9f20162ecc48197cc572d1f2ae53714a (patch) | |
tree | d947740f07ca47e895fb438b896354e4358bb8e0 | |
parent | f2edff3153ab00a9a6b231761c76997f434a1d58 (diff) | |
download | buildstream-43e09ccf9f20162ecc48197cc572d1f2ae53714a.tar.gz |
_versions.py: Bump BST_FORMAT_VERSION for new cmake format extension
With commit d41940f516498f827967b8e5d311ce6accb88f56, the cmake plugin
now supports a new `generator` option which allows one to specify whether
to use `Unix Makefiles` (default) or `Ninja` (optional).
This requires a format version bump if people want to be sure that
the feature is supported.
-rw-r--r-- | buildstream/_versions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buildstream/_versions.py b/buildstream/_versions.py index f2a08b14b..70f3667ab 100644 --- a/buildstream/_versions.py +++ b/buildstream/_versions.py @@ -24,7 +24,7 @@ # This version is bumped whenever enhancements are made # to the `project.conf` format or the core element format. # -BST_FORMAT_VERSION = 6 +BST_FORMAT_VERSION = 7 # The base BuildStream artifact version |