From 40ed8f3cd24557a5ff0e6f5a30af047c1020e2e7 Mon Sep 17 00:00:00 2001 From: Simon Cruanes Date: Thu, 29 Aug 2024 13:08:51 -0400 Subject: [PATCH] bump minimal OCaml version to 4.13 --- .github/workflows/main.yml | 3 +-- dune-project | 2 +- moonpool.opam | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4be2eb6b..7a3669cc 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -16,8 +16,7 @@ jobs: os: - ubuntu-latest ocaml-compiler: - - '4.08' - - '4.14' + - '4.13' - '5.2' runs-on: ${{ matrix.os }} diff --git a/dune-project b/dune-project index 27186660..eb20a706 100644 --- a/dune-project +++ b/dune-project @@ -16,7 +16,7 @@ (name moonpool) (synopsis "Pools of threads supported by a pool of domains") (depends - (ocaml (>= 4.08)) + (ocaml (>= 4.13)) dune (either (>= 1.0)) (trace :with-test) diff --git a/moonpool.opam b/moonpool.opam index 77c3363e..101d0881 100644 --- a/moonpool.opam +++ b/moonpool.opam @@ -9,7 +9,7 @@ tags: ["thread" "pool" "domain" "futures" "fork-join"] homepage: "https://github.com/c-cube/moonpool" bug-reports: "https://github.com/c-cube/moonpool/issues" depends: [ - "ocaml" {>= "4.08"} + "ocaml" {>= "4.13"} "dune" {>= "3.0"} "either" {>= "1.0"} "trace" {with-test}