Skip to content

Commit 5c142d3

Browse files
committed
Add maintenance-intent in dune-project file
1 parent 57bd96c commit 5c142d3

File tree

5 files changed

+13
-5
lines changed

5 files changed

+13
-5
lines changed

dune-project

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(lang dune 2.7)
1+
(lang dune 3.18)
22
(name tyxml)
33

44
(generate_opam_files true)
@@ -21,6 +21,7 @@ let to_reason = <a href=\"reasonml.github.io/\"> \"Reason!\" </a>
2121
The TyXML JSX allow to write TyXML documents with reason's JSX syntax.
2222
It works with textual trees, virtual DOM trees, or any TyXML module.
2323
")
24+
(maintenance_intent "(latest)")
2425
(depends
2526
(ocaml (>= 4.08))
2627
(tyxml (= :version))
@@ -41,6 +42,7 @@ let%html to_ocaml = \"<a href='ocaml.org'>OCaml!</a>\"
4142
The TyXML PPX allow to write TyXML documents using the traditional HTML syntax.
4243
It works with textual trees, virtual DOM trees, or any TyXML module.
4344
")
45+
(maintenance_intent "(latest)")
4446
(depends
4547
(ocaml (>= 4.08))
4648
(tyxml (= :version))
@@ -53,6 +55,7 @@ It works with textual trees, virtual DOM trees, or any TyXML module.
5355
(package
5456
(name tyxml-syntax)
5557
(synopsis "Common layer for the JSX and PPX syntaxes for Tyxml")
58+
(maintenance_intent "(latest)")
5659
(depends
5760
(ocaml (>= 4.08))
5861
(ppxlib (>= 0.36))
@@ -64,6 +67,7 @@ It works with textual trees, virtual DOM trees, or any TyXML module.
6467
(name tyxml)
6568
(synopsis "A library for building correct HTML and SVG documents")
6669
(description "TyXML provides a set of convenient combinators that uses the OCaml type system to ensure the validity of the generated documents. TyXML can be used with any representation of HTML and SVG: the textual one, provided directly by this package, or DOM trees (`js_of_ocaml-tyxml`) virtual DOM (`virtual-dom`) and reactive or replicated trees (`eliom`). You can also create your own representation and use it to instantiate a new set of combinators.")
70+
(maintenance_intent "(latest)")
6771
(depends
6872
(ocaml (>= 4.08))
6973
(re (>= 1.5.0))

tyxml-jsx.opam

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ homepage: "https://github.com/ocsigen/tyxml"
1717
doc: "https://ocsigen.org/tyxml/latest/manual/intro"
1818
bug-reports: "https://github.com/ocsigen/tyxml/issues"
1919
depends: [
20-
"dune" {>= "2.7"}
20+
"dune" {>= "3.18"}
2121
"ocaml" {>= "4.08"}
2222
"tyxml" {= version}
2323
"tyxml-syntax" {= version}
@@ -41,3 +41,4 @@ build: [
4141
]
4242
]
4343
dev-repo: "git+https://github.com/ocsigen/tyxml.git"
44+
x-maintenance-intent: ["(latest)"]

tyxml-ppx.opam

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ homepage: "https://github.com/ocsigen/tyxml"
1717
doc: "https://ocsigen.org/tyxml/latest/manual/intro"
1818
bug-reports: "https://github.com/ocsigen/tyxml/issues"
1919
depends: [
20-
"dune" {>= "2.7"}
20+
"dune" {>= "3.18"}
2121
"ocaml" {>= "4.08"}
2222
"tyxml" {= version}
2323
"tyxml-syntax" {= version}
@@ -42,3 +42,4 @@ build: [
4242
]
4343
]
4444
dev-repo: "git+https://github.com/ocsigen/tyxml.git"
45+
x-maintenance-intent: ["(latest)"]

tyxml-syntax.opam

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ homepage: "https://github.com/ocsigen/tyxml"
88
doc: "https://ocsigen.org/tyxml/latest/manual/intro"
99
bug-reports: "https://github.com/ocsigen/tyxml/issues"
1010
depends: [
11-
"dune" {>= "2.7"}
11+
"dune" {>= "3.18"}
1212
"ocaml" {>= "4.08"}
1313
"ppxlib" {>= "0.36"}
1414
"re" {>= "1.5.0"}
@@ -31,3 +31,4 @@ build: [
3131
]
3232
]
3333
dev-repo: "git+https://github.com/ocsigen/tyxml.git"
34+
x-maintenance-intent: ["(latest)"]

tyxml.opam

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ homepage: "https://github.com/ocsigen/tyxml"
1010
doc: "https://ocsigen.org/tyxml/latest/manual/intro"
1111
bug-reports: "https://github.com/ocsigen/tyxml/issues"
1212
depends: [
13-
"dune" {>= "2.7"}
13+
"dune" {>= "3.18"}
1414
"ocaml" {>= "4.08"}
1515
"re" {>= "1.5.0"}
1616
"uutf" {>= "1.0.0"}
@@ -33,3 +33,4 @@ build: [
3333
]
3434
]
3535
dev-repo: "git+https://github.com/ocsigen/tyxml.git"
36+
x-maintenance-intent: ["(latest)"]

0 commit comments

Comments
 (0)