We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 27ec8e6 + cb7e062 commit 1a6f483Copy full SHA for 1a6f483
CHANGES
@@ -1,3 +1,7 @@
1
+unreleased
2
+========
3
+- #5: set minimum OCaml version
4
+
5
1.0.1
6
========
7
- #4: fix minimum ppxlib version
diff.opam
@@ -9,6 +9,7 @@ homepage: "https://github.com/skolemlabs/diff"
9
bug-reports: "https://github.com/skolemlabs/diff/issues"
10
depends: [
11
"dune" {>= "3.10"}
12
+ "ocaml" {>= "4.08.0"}
13
"ppxlib" {>= "0.26.0"}
14
"ocamlformat" {with-dev-setup}
15
"ppx_deriving" {with-test}
dune-project
@@ -15,6 +15,7 @@
(name diff)
16
(synopsis "A library for generating diffs from product types")
17
(depends
18
+ (ocaml (>= 4.08.0))
19
(ppxlib (>= 0.26.0))
20
(ocamlformat :with-dev-setup)
21
(ppx_deriving :with-test)
0 commit comments