From 9ebfbb119b50d98b31f34be4983cd4f842460ea0 Mon Sep 17 00:00:00 2001 From: Jean-Christophe Filliatre Date: Wed, 30 Aug 2023 10:35:17 +0200 Subject: [PATCH] now requires at least OCaml 4.08.0 --- CHANGES.md | 1 + ocamlgraph_gtk.opam | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 9c7520c1..ea216312 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,7 @@ # 2.1.0 (August 30, 2023) + - :exclamation: OCamlGraph now requires OCaml >= 4.08 - :exclamation: [Traverse]: fixed [Dfs.fold] and [Dfs.fold_component], which were not implementing a proper DFS - [Classic]: new functions [cycle] and [grid] diff --git a/ocamlgraph_gtk.opam b/ocamlgraph_gtk.opam index 9950ea99..87067c22 100644 --- a/ocamlgraph_gtk.opam +++ b/ocamlgraph_gtk.opam @@ -18,7 +18,7 @@ homepage: "https://github.com/backtracking/ocamlgraph/" doc: "https://backtracking.github.io/ocamlgraph" bug-reports: "https://github.com/backtracking/ocamlgraph/issues/new" depends: [ - "ocaml" {>= "4.03.0"} + "ocaml" {>= "4.08.0"} "stdlib-shims" "lablgtk" "conf-gnomecanvas"