diff --git a/CHANGES.md b/CHANGES.md index e79fb6bb..bf0a77a5 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,8 @@ +### unreleased + +- Fix compatibility with `fmt.0.8.8+dune` by adding a missing `fmt` dependency + in `alcotest`'s dune file (#266, @NathanReb) + ### 1.2.1 (2020-07-15) - Surround pretty-printed diffs with quotes to make trailing whitespace more diff --git a/src/alcotest/dune b/src/alcotest/dune index 4c036bf1..cb0788f9 100644 --- a/src/alcotest/dune +++ b/src/alcotest/dune @@ -1,3 +1,3 @@ (library (public_name alcotest) - (libraries alcotest.engine astring fmt.tty)) + (libraries alcotest.engine astring fmt fmt.tty))