Skip to content

Commit

Permalink
Use correct fmt version in dune-project
Browse files Browse the repository at this point in the history
As of Dune 2.5.0, warnings are emitted if the `(using lang <foo>)`
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
```
  • Loading branch information
craigfe committed Apr 16, 2020
1 parent 7126082 commit 5bed60d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dune-project
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
(lang dune 1.8)
(name irmin)
(using fmt 1.2)
(using fmt 1.1)

0 comments on commit 5bed60d

Please sign in to comment.