From 5bed60dc490c55ad3e1cf24a92ae3df66ef79458 Mon Sep 17 00:00:00 2001 From: Craig Ferguson Date: Thu, 16 Apr 2020 12:09:36 +0200 Subject: [PATCH] Use correct fmt version in dune-project As of Dune 2.5.0, warnings are emitted if the `(using lang )` stanza is using a version higher than is supported. This gives us the following warning in CI: ``` File "dune-project", line 3, characters 11-14: 3 | (using fmt 1.2) ^^^ Warning: Version 1.2 of integration with automatic formatters is not supported until version 1.11 of the dune language. Supported versions of this extension in version 1.8 of the dune language: - 1.0 to 1.1 ``` --- dune-project | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dune-project b/dune-project index 2e8e093717..27fa5d92a7 100644 --- a/dune-project +++ b/dune-project @@ -1,3 +1,3 @@ (lang dune 1.8) (name irmin) -(using fmt 1.2) +(using fmt 1.1)