From e46e2f179462e5e720866d1339f01a0a883f91de Mon Sep 17 00:00:00 2001 From: Nymphium Date: Tue, 11 Jul 2023 02:04:35 +0900 Subject: [PATCH 1/2] Test on OCaml 5.0 --- .github/workflows/ci.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 591c15fe2..be88e1f18 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -19,6 +19,7 @@ jobs: - 4.12.x - 4.13.x - 4.14.x + - 5.00.x runs-on: ${{ matrix.os }} From 1446d4544331d9bfe64ce7da6458d8d43cc0b68b Mon Sep 17 00:00:00 2001 From: Nymphium Date: Sun, 16 Jul 2023 19:49:55 +0900 Subject: [PATCH 2/2] Update upper bounds for async and lwt --- aws-async.opam | 6 +++--- aws-lwt.opam | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aws-async.opam b/aws-async.opam index ef363a7aa..976f1506d 100644 --- a/aws-async.opam +++ b/aws-async.opam @@ -18,9 +18,9 @@ build: [ depends: [ "ocaml" {>= "4.08"} "aws" {= version} - "async" {>= "v0.9.0" & < "v0.15"} - "async_kernel" {>= "v0.9.0" & < "v0.15"} - "async_unix" {>= "v0.9.0" & < "v0.15"} + "async" {>= "v0.9.0" & < "v0.16"} + "async_kernel" {>= "v0.9.0" & < "v0.16"} + "async_unix" {>= "v0.9.0" & < "v0.16"} "cohttp" {>= "2.4.0" & < "3.0.0"} "cohttp-async" {>= "2.4.0" & < "3.0.0"} "dune" {>= "2.7"} diff --git a/aws-lwt.opam b/aws-lwt.opam index 822eb72c5..87e36707f 100644 --- a/aws-lwt.opam +++ b/aws-lwt.opam @@ -16,7 +16,7 @@ dev-repo: "git+https://github.com/inhabitedtype/ocaml-aws.git" depends: [ "ocaml" {>= "4.08"} "aws" {= version} - "lwt" {>= "4.0.0" & < "5.5.0"} + "lwt" {>= "4.0.0" & < "5.7.0"} "cohttp" {>= "2.4.0" & < "3.0.0"} "cohttp-lwt" {>= "2.4.0" & < "3.0.0"} "cohttp-lwt-unix" {>= "0.99.0"}