Skip to content

Commit 780e50e

Browse files
committed
Upgrade dependencies
1 parent 1747c24 commit 780e50e

File tree

4 files changed

+20
-19
lines changed

4 files changed

+20
-19
lines changed

.github/workflows/workflow.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ on:
99
jobs:
1010
build-windows:
1111
strategy:
12+
fail-fast: false
1213
matrix:
1314
ocaml-compiler:
1415
- ocaml.5.0.0,ocaml-option-mingw
@@ -25,7 +26,7 @@ jobs:
2526
uses: actions/checkout@v3
2627

2728
- name: Set up OCaml
28-
uses: ocaml/setup-ocaml@v2
29+
uses: ocaml/setup-ocaml@v3
2930
with:
3031
ocaml-compiler: ${{ matrix.ocaml-compiler }}
3132
opam-repositories: |

dune-project

+9-9
Original file line numberDiff line numberDiff line change
@@ -39,26 +39,26 @@
3939
(domain-local-timeout
4040
(>= 1.0.1))
4141
(multicore-magic
42-
(>= 2.1.0))
42+
(>= 2.3.0))
4343
(domain_shims
4444
(and
4545
(>= 0.1.0)
4646
:with-test))
4747
(alcotest
4848
(and
49-
(>= 1.7.0)
49+
(>= 1.8.0)
5050
:with-test))
5151
(mdx
5252
(and
53-
(>= 2.3.0)
53+
(>= 2.4.1)
5454
:with-test))
5555
(sherlodoc
5656
(and
5757
(>= 0.2)
5858
:with-doc))
5959
(odoc
6060
(and
61-
(>= 2.4.1)
61+
(>= 2.4.2)
6262
:with-doc))))
6363

6464
(package
@@ -71,7 +71,7 @@
7171
(kcas
7272
(= :version))
7373
(multicore-magic
74-
(>= 2.1.0))
74+
(>= 2.3.0))
7575
(backoff
7676
(and
7777
(>= 0.1.0)
@@ -86,11 +86,11 @@
8686
:with-test))
8787
(multicore-bench
8888
(and
89-
(>= 0.1.2)
89+
(>= 0.1.4)
9090
:with-test))
9191
(alcotest
9292
(and
93-
(>= 1.7.0)
93+
(>= 1.8.0)
9494
:with-test))
9595
(qcheck-core
9696
(and
@@ -102,13 +102,13 @@
102102
:with-test))
103103
(mdx
104104
(and
105-
(>= 2.3.0)
105+
(>= 2.4.1)
106106
:with-test))
107107
(sherlodoc
108108
(and
109109
(>= 0.2)
110110
:with-doc))
111111
(odoc
112112
(and
113-
(>= 2.4.1)
113+
(>= 2.4.2)
114114
:with-doc))))

kcas.opam

+4-4
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ depends: [
2121
"backoff" {>= "0.1.0"}
2222
"domain-local-await" {>= "1.0.1"}
2323
"domain-local-timeout" {>= "1.0.1"}
24-
"multicore-magic" {>= "2.1.0"}
24+
"multicore-magic" {>= "2.3.0"}
2525
"domain_shims" {>= "0.1.0" & with-test}
26-
"alcotest" {>= "1.7.0" & with-test}
27-
"mdx" {>= "2.3.0" & with-test}
26+
"alcotest" {>= "1.8.0" & with-test}
27+
"mdx" {>= "2.4.1" & with-test}
2828
"sherlodoc" {>= "0.2" & with-doc}
29-
"odoc" {>= "2.4.1" & with-doc}
29+
"odoc" {>= "2.4.2" & with-doc}
3030
]
3131
build: [
3232
["dune" "subst"] {dev}

kcas_data.opam

+5-5
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,17 @@ bug-reports: "https://github.com/ocaml-multicore/kcas/issues"
1818
depends: [
1919
"dune" {>= "3.14"}
2020
"kcas" {= version}
21-
"multicore-magic" {>= "2.1.0"}
21+
"multicore-magic" {>= "2.3.0"}
2222
"backoff" {>= "0.1.0" & with-test}
2323
"domain-local-await" {>= "1.0.1" & with-test}
2424
"domain_shims" {>= "0.1.0" & with-test}
25-
"multicore-bench" {>= "0.1.2" & with-test}
26-
"alcotest" {>= "1.7.0" & with-test}
25+
"multicore-bench" {>= "0.1.4" & with-test}
26+
"alcotest" {>= "1.8.0" & with-test}
2727
"qcheck-core" {>= "0.21.2" & with-test}
2828
"qcheck-stm" {>= "0.3" & with-test}
29-
"mdx" {>= "2.3.0" & with-test}
29+
"mdx" {>= "2.4.1" & with-test}
3030
"sherlodoc" {>= "0.2" & with-doc}
31-
"odoc" {>= "2.4.1" & with-doc}
31+
"odoc" {>= "2.4.2" & with-doc}
3232
]
3333
build: [
3434
["dune" "subst"] {dev}

0 commit comments

Comments
 (0)