Skip to content

Commit

Permalink
Upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
polytypic committed Aug 29, 2024
1 parent 1747c24 commit 780e50e
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 19 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ on:
jobs:
build-windows:
strategy:
fail-fast: false
matrix:
ocaml-compiler:
- ocaml.5.0.0,ocaml-option-mingw
Expand All @@ -25,7 +26,7 @@ jobs:
uses: actions/checkout@v3

- name: Set up OCaml
uses: ocaml/setup-ocaml@v2
uses: ocaml/setup-ocaml@v3
with:
ocaml-compiler: ${{ matrix.ocaml-compiler }}
opam-repositories: |
Expand Down
18 changes: 9 additions & 9 deletions dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -39,26 +39,26 @@
(domain-local-timeout
(>= 1.0.1))
(multicore-magic
(>= 2.1.0))
(>= 2.3.0))
(domain_shims
(and
(>= 0.1.0)
:with-test))
(alcotest
(and
(>= 1.7.0)
(>= 1.8.0)
:with-test))
(mdx
(and
(>= 2.3.0)
(>= 2.4.1)
:with-test))
(sherlodoc
(and
(>= 0.2)
:with-doc))
(odoc
(and
(>= 2.4.1)
(>= 2.4.2)
:with-doc))))

(package
Expand All @@ -71,7 +71,7 @@
(kcas
(= :version))
(multicore-magic
(>= 2.1.0))
(>= 2.3.0))
(backoff
(and
(>= 0.1.0)
Expand All @@ -86,11 +86,11 @@
:with-test))
(multicore-bench
(and
(>= 0.1.2)
(>= 0.1.4)
:with-test))
(alcotest
(and
(>= 1.7.0)
(>= 1.8.0)
:with-test))
(qcheck-core
(and
Expand All @@ -102,13 +102,13 @@
:with-test))
(mdx
(and
(>= 2.3.0)
(>= 2.4.1)
:with-test))
(sherlodoc
(and
(>= 0.2)
:with-doc))
(odoc
(and
(>= 2.4.1)
(>= 2.4.2)
:with-doc))))
8 changes: 4 additions & 4 deletions kcas.opam
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ depends: [
"backoff" {>= "0.1.0"}
"domain-local-await" {>= "1.0.1"}
"domain-local-timeout" {>= "1.0.1"}
"multicore-magic" {>= "2.1.0"}
"multicore-magic" {>= "2.3.0"}
"domain_shims" {>= "0.1.0" & with-test}
"alcotest" {>= "1.7.0" & with-test}
"mdx" {>= "2.3.0" & with-test}
"alcotest" {>= "1.8.0" & with-test}
"mdx" {>= "2.4.1" & with-test}
"sherlodoc" {>= "0.2" & with-doc}
"odoc" {>= "2.4.1" & with-doc}
"odoc" {>= "2.4.2" & with-doc}
]
build: [
["dune" "subst"] {dev}
Expand Down
10 changes: 5 additions & 5 deletions kcas_data.opam
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,17 @@ bug-reports: "https://github.com/ocaml-multicore/kcas/issues"
depends: [
"dune" {>= "3.14"}
"kcas" {= version}
"multicore-magic" {>= "2.1.0"}
"multicore-magic" {>= "2.3.0"}
"backoff" {>= "0.1.0" & with-test}
"domain-local-await" {>= "1.0.1" & with-test}
"domain_shims" {>= "0.1.0" & with-test}
"multicore-bench" {>= "0.1.2" & with-test}
"alcotest" {>= "1.7.0" & with-test}
"multicore-bench" {>= "0.1.4" & with-test}
"alcotest" {>= "1.8.0" & with-test}
"qcheck-core" {>= "0.21.2" & with-test}
"qcheck-stm" {>= "0.3" & with-test}
"mdx" {>= "2.3.0" & with-test}
"mdx" {>= "2.4.1" & with-test}
"sherlodoc" {>= "0.2" & with-doc}
"odoc" {>= "2.4.1" & with-doc}
"odoc" {>= "2.4.2" & with-doc}
]
build: [
["dune" "subst"] {dev}
Expand Down

0 comments on commit 780e50e

Please sign in to comment.