From 019ed5321965ad133b8f599f89c21b3118e3b7ce Mon Sep 17 00:00:00 2001 From: Nathan Rebours Date: Mon, 10 Aug 2020 16:07:51 +0200 Subject: [PATCH] Explicitly declare Alcotest's deps on fmt It was transitively working thanks to fmt.tty with the upstream fmt version but trying to use fmt's dune port failed. --- CHANGES.md | 5 +++++ src/alcotest/dune | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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))