Skip to content

Commit e3dbf47

Browse files
committed
Fix picos_std package to depend on picos_aux
Also, upgrade dependency on `backoff` from 0.1.0 to 0.1.1.
1 parent ec3d2dd commit e3dbf47

File tree

6 files changed

+13
-10
lines changed

6 files changed

+13
-10
lines changed

dune-project

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
(>= 4.14.0))
3030
;;
3131
(backoff
32-
(>= 0.1.0))
32+
(>= 0.1.1))
3333
(multicore-magic
3434
(>= 2.3.0))
3535
;;
@@ -42,7 +42,7 @@
4242
"A systems programming interface between effects based schedulers and concurrent abstractions.")
4343
(depends
4444
(backoff
45-
(>= 0.1.0))
45+
(>= 0.1.1))
4646
(thread-local-storage
4747
(>= 0.2))
4848
;;
@@ -54,9 +54,11 @@
5454
(depends
5555
(picos
5656
(= :version))
57+
(picos_aux
58+
(= :version))
5759
;;
5860
(backoff
59-
(>= 0.1.0))
61+
(>= 0.1.1))
6062
(multicore-magic
6163
(>= 2.3.0))
6264
;;
@@ -72,7 +74,7 @@
7274
(= :version))
7375
;;
7476
(backoff
75-
(>= 0.1.0))
77+
(>= 0.1.1))
7678
(mtime
7779
(>= 2.0.0))
7880
(multicore-magic
@@ -108,7 +110,7 @@
108110
(= :version))
109111
;;
110112
(backoff
111-
(>= 0.1.0))
113+
(>= 0.1.1))
112114
(multicore-magic
113115
(>= 2.3.0))
114116
;;

picos.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ homepage: "https://github.com/ocaml-multicore/picos"
1111
bug-reports: "https://github.com/ocaml-multicore/picos/issues"
1212
depends: [
1313
"dune" {>= "3.14"}
14-
"backoff" {>= "0.1.0"}
14+
"backoff" {>= "0.1.1"}
1515
"thread-local-storage" {>= "0.2"}
1616
"odoc" {with-doc}
1717
]

picos_aux.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ bug-reports: "https://github.com/ocaml-multicore/picos/issues"
1010
depends: [
1111
"dune" {>= "3.14"}
1212
"ocaml" {>= "4.14.0"}
13-
"backoff" {>= "0.1.0"}
13+
"backoff" {>= "0.1.1"}
1414
"multicore-magic" {>= "2.3.0"}
1515
"odoc" {with-doc}
1616
]

picos_io.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ depends: [
1111
"dune" {>= "3.14"}
1212
"picos_aux" {= version}
1313
"picos_std" {= version}
14-
"backoff" {>= "0.1.0"}
14+
"backoff" {>= "0.1.1"}
1515
"mtime" {>= "2.0.0"}
1616
"multicore-magic" {>= "2.3.0"}
1717
"psq" {>= "0.2.1"}

picos_mux.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ depends: [
1111
"dune" {>= "3.14"}
1212
"picos_aux" {= version}
1313
"picos_std" {= version}
14-
"backoff" {>= "0.1.0"}
14+
"backoff" {>= "0.1.1"}
1515
"multicore-magic" {>= "2.3.0"}
1616
"odoc" {with-doc}
1717
]

picos_std.opam

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ bug-reports: "https://github.com/ocaml-multicore/picos/issues"
1010
depends: [
1111
"dune" {>= "3.14"}
1212
"picos" {= version}
13-
"backoff" {>= "0.1.0"}
13+
"picos_aux" {= version}
14+
"backoff" {>= "0.1.1"}
1415
"multicore-magic" {>= "2.3.0"}
1516
"odoc" {with-doc}
1617
]

0 commit comments

Comments
 (0)