Skip to content

Commit cf593f1

Browse files
authored
Merge pull request #45 from jmid/use-dunes-maintenance-intent
Use dune's built-in maintenance-intent support
2 parents d8c0b9a + b026d81 commit cf593f1

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

CHANGES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
Next release
22
------------
33

4+
- Use dune.3.18 support to generate `x-maintenance-intent` entry
45
- Patch `ppx_yojson_conv` dependency which was missing a `v`-prefix
56
- Introduce a `mutaml.opam.template` to avoid opam linting failure #41
67
- Adjust RE to support `runtest` on OpenBSD too #40

dune-project

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(lang dune 3.0)
1+
(lang dune 3.18)
22

33
(name mutaml)
44

@@ -27,7 +27,7 @@
2727
(depends
2828
(ocaml (>= 4.12.0))
2929
(ppxlib (>= 0.28.0))
30-
(ppx_yojson_conv (>= 0.14.0))
30+
(ppx_yojson_conv (>= v0.14.0))
3131
stdlib-random
3232
conf-timeout
3333
conf-diffutils
@@ -36,4 +36,6 @@
3636
(ppx_derivers (>= 1.2.1))
3737
(yojson (>= 2.0.0))
3838
(ppx_deriving :with-test)
39-
(ounit2 :with-test)))
39+
(ounit2 :with-test))
40+
(maintenance_intent "(latest)")
41+
)

mutaml.opam

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ homepage: "https://github.com/jmid/mutaml"
1717
doc: "https://github.com/jmid/mutaml"
1818
bug-reports: "https://github.com/jmid/mutaml/issues"
1919
depends: [
20-
"dune" {>= "3.0"}
20+
"dune" {>= "3.18"}
2121
"ocaml" {>= "4.12.0"}
2222
"ppxlib" {>= "0.28.0"}
2323
"ppx_yojson_conv" {>= "v0.14.0"}
@@ -32,6 +32,7 @@ depends: [
3232
"odoc" {with-doc}
3333
]
3434
dev-repo: "git+https://github.com/jmid/mutaml.git"
35+
x-maintenance-intent: ["(latest)"]
3536
build: [
3637
["dune" "subst"] {dev}
3738
[
@@ -46,4 +47,3 @@ build: [
4647
"@doc" {with-doc}
4748
]
4849
]
49-
x-maintenance-intent: ["(latest)"]

mutaml.opam.template

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,3 @@ build: [
1212
"@doc" {with-doc}
1313
]
1414
]
15-
x-maintenance-intent: ["(latest)"]

0 commit comments

Comments
 (0)