Skip to content

Commit 1c01080

Browse files
committed
add opam constraints after release
1 parent b255379 commit 1c01080

6 files changed

+29
-20
lines changed

dune-project

+19-10
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,11 @@
4343
(depends
4444
(ocaml
4545
(>= "4.08"))
46-
httpun-ws
46+
(httpun-ws
47+
(= :version))
4748
lwt
48-
digestif
49+
(digestif
50+
(>= "1.2.0"))
4951
(gluten-lwt
5052
(>= "0.2.0"))))
5153

@@ -55,7 +57,8 @@
5557
(depends
5658
(ocaml
5759
(>= "4.08"))
58-
httpun-ws-lwt
60+
(httpun-ws-lwt
61+
(= :version))
5962
(gluten-lwt-unix
6063
(>= "0.2.0"))))
6164

@@ -65,8 +68,10 @@
6568
(depends
6669
(ocaml
6770
(>= "4.08"))
68-
httpun-ws
69-
digestif
71+
(httpun-ws
72+
(= :version))
73+
(digestif
74+
(>= "1.2.0"))
7075
(gluten-eio
7176
(>= "0.2.1"))))
7277

@@ -76,9 +81,10 @@
7681
(depends
7782
(ocaml
7883
(>= "4.08"))
79-
httpun-ws-lwt
84+
(httpun-ws-lwt
85+
(= :version))
8086
(gluten-mirage
81-
(>= "0.2.0"))
87+
(>= "0.5.0"))
8288
(mirage-flow
8389
(>= "2.0.0"))
8490
cstruct))
@@ -89,8 +95,11 @@
8995
(depends
9096
(ocaml
9197
(>= "4.08"))
92-
httpun-ws
98+
(httpun-ws
99+
(= :version))
93100
(async
94101
(>= "v0.15.0"))
95-
gluten-async
96-
digestif))
102+
(gluten-async
103+
(>= "0.5.0"))
104+
(digestif
105+
(>= "1.2.0"))))

httpun-ws-async.opam

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ bug-reports: "https://github.com/anmonteiro/httpun-ws/issues"
1212
depends: [
1313
"dune" {>= "3.0"}
1414
"ocaml" {>= "4.08"}
15-
"httpun-ws"
15+
"httpun-ws" {= version}
1616
"async" {>= "v0.15.0"}
17-
"gluten-async"
18-
"digestif"
17+
"gluten-async" {>= "0.5.0"}
18+
"digestif" {>= "1.2.0"}
1919
"odoc" {with-doc}
2020
]
2121
build: [

httpun-ws-eio.opam

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ bug-reports: "https://github.com/anmonteiro/httpun-ws/issues"
1212
depends: [
1313
"dune" {>= "3.0"}
1414
"ocaml" {>= "4.08"}
15-
"httpun-ws"
16-
"digestif"
15+
"httpun-ws" {= version}
16+
"digestif" {>= "1.2.0"}
1717
"gluten-eio" {>= "0.2.1"}
1818
"odoc" {with-doc}
1919
]

httpun-ws-lwt-unix.opam

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ bug-reports: "https://github.com/anmonteiro/httpun-ws/issues"
1212
depends: [
1313
"dune" {>= "3.0"}
1414
"ocaml" {>= "4.08"}
15-
"httpun-ws-lwt"
15+
"httpun-ws-lwt" {= version}
1616
"gluten-lwt-unix" {>= "0.2.0"}
1717
"odoc" {with-doc}
1818
]

httpun-ws-lwt.opam

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ bug-reports: "https://github.com/anmonteiro/httpun-ws/issues"
1212
depends: [
1313
"dune" {>= "3.0"}
1414
"ocaml" {>= "4.08"}
15-
"httpun-ws"
15+
"httpun-ws" {= version}
1616
"lwt"
17-
"digestif"
17+
"digestif" {>= "1.2.0"}
1818
"gluten-lwt" {>= "0.2.0"}
1919
"odoc" {with-doc}
2020
]

httpun-ws-mirage.opam

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ bug-reports: "https://github.com/anmonteiro/httpun-ws/issues"
1212
depends: [
1313
"dune" {>= "3.0"}
1414
"ocaml" {>= "4.08"}
15-
"httpun-ws-lwt"
16-
"gluten-mirage" {>= "0.2.0"}
15+
"httpun-ws-lwt" {= version}
16+
"gluten-mirage" {>= "0.5.0"}
1717
"mirage-flow" {>= "2.0.0"}
1818
"cstruct"
1919
"odoc" {with-doc}

0 commit comments

Comments
 (0)