The unpac monorepo manager self-hosting as a monorepo using unpac
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

modernise the test matrix

+8 -8
+3 -3
vendor/opam/iomux/.github/workflows/test.yml
··· 9 9 strategy: 10 10 fail-fast: false 11 11 matrix: 12 - ocaml-version: ["5.0.0", "4.14.1", "4.13.1", "4.12.1", "4.11.2", "4.10.2", "4.09.1", "4.08.1"] 12 + ocaml-version: ["5.3.0", "4.14.2"] 13 13 operating-system: [macos-latest, ubuntu-latest] 14 14 15 15 runs-on: ${{ matrix.operating-system }} 16 16 17 17 steps: 18 18 - name: Checkout code 19 - uses: actions/checkout@v2 19 + uses: actions/checkout@v5 20 20 21 21 - name: Use OCaml ${{ matrix.ocaml-version }} 22 - uses: ocaml/setup-ocaml@v2 22 + uses: ocaml/setup-ocaml@v3 23 23 with: 24 24 ocaml-compiler: ${{ matrix.ocaml-version }} 25 25
+5 -5
vendor/opam/iomux/CHANGES.md
··· 1 - ## v0.4 1 + ## v0.4 (2025-09-17) 2 2 3 3 * Clamp max open files to 2^19, as macOS sometimes returns 4 - 2^32-1. 4 + 2^32-1 (#7 @avsm). 5 5 6 6 ## v0.3 (2023-03-10) 7 7 ··· 11 11 12 12 ## v0.2 (2023-02-27) 13 13 14 - * Narrowed the type of Util.fd_of_unix (@reynir) 15 - * Use older school uerror instead of caml_uerror (@reynir) 16 - * Added c_standard to dune build flags (@reynir) 14 + * Narrowed the type of `Util.fd_of_unix` (@reynir) 15 + * Use older school uerror instead of `caml_uerror` (@reynir) 16 + * Added `c_standard` to dune build flags (@reynir) 17 17 * Addded ppoll(2) discoverability and a mini compat layer (@haesbaert) 18 18 * Improved tests (@haesbaert) 19 19 * Re-added macos support (@haesbaert)