diff --git a/src/stanza.ml b/src/stanza.ml index d0852e0d..d2112d51 100644 --- a/src/stanza.ml +++ b/src/stanza.ml @@ -9,7 +9,7 @@ end let syntax = Syntax.create ~name:"dune" ~desc:"the dune language" [ (0, 0) (* Jbuild syntax *) - ; (1, 0) + ; (1, 1) ] module File_kind = struct diff --git a/test/blackbox-tests/test-cases/dune-project-edition/run.t b/test/blackbox-tests/test-cases/dune-project-edition/run.t index 71490b42..c527165c 100644 --- a/test/blackbox-tests/test-cases/dune-project-edition/run.t +++ b/test/blackbox-tests/test-cases/dune-project-edition/run.t @@ -4,9 +4,9 @@ $ mkdir src $ echo '(alias (name runtest) (action (progn)))' > src/dune $ dune build - Info: creating file dune-project with this contents: (lang dune 1.0) + Info: creating file dune-project with this contents: (lang dune 1.1) $ cat dune-project - (lang dune 1.0) + (lang dune 1.1) Test that using menhir automatically update the dune-project file @@ -14,5 +14,5 @@ Test that using menhir automatically update the dune-project file $ dune build Info: appending this line to dune-project: (using menhir 1.0) $ cat dune-project - (lang dune 1.0) + (lang dune 1.1) (using menhir 1.0)