From 845d3a471383f90b97f0de12c11e28514e93a2ac Mon Sep 17 00:00:00 2001 From: Rudi Grinberg Date: Sat, 21 Jul 2018 20:39:13 +0200 Subject: [PATCH] Update latest syntax to 1.1 Signed-off-by: Rudi Grinberg --- src/stanza.ml | 2 +- test/blackbox-tests/test-cases/dune-project-edition/run.t | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) 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)