Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ jobs:
- macos-latest
- ubuntu-latest
ocaml-version:
- 4.13.0
- 4.13.1
- 4.14.0
- 4.14.2

runs-on: ${{ matrix.os }}

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Camelot [![Build and Test Status](https://github.com/upenn-cis1xx/camelot/workflows/Build%20&%20Test/badge.svg)](https://github.com/upenn-cis1xx/camelot/actions?query=workflow%3A%22Build+%26+Test%22)
A modular and fully-configurable OCaml Linter / Style Checker for OCaml compiler version >= 4.10.0 < 4.14.0 (temporarily).
A modular and fully-configurable OCaml Linter / Style Checker for OCaml compiler version >= 4.10.0 < 5.0.0 (temporarily).

## Dependencies (handled by opam)
- ocaml >= v4.10.0 < 4.14.0
- ocaml >= v4.10.0 < 5.0.0
- dune >= 2.5.0
- compiler-libs.common
- fswatch (for Build + Watch)
Expand Down
2 changes: 1 addition & 1 deletion camelot.opam
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ homepage: "https://github.com/upenn-cis1xx/camelot"
bug-reports: "https://github.com/upenn-cis1xx/camelot/issues"
depends: [
"dune" {>= "2.5"}
"ocaml" {>= "4.13.0" & < "4.14.0"}
"ocaml" {>= "4.14.0" & < "5.0.0"}
"ANSITerminal" {>= "0.8"}
"yojson" {>= "1.7.0"}
"camlp-streams" {>= "5.0.1"}
Expand Down
2 changes: 1 addition & 1 deletion dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
(synopsis "An OCaml Linter / Style Checker")
(depends
(dune (>= 2.5))
(ocaml (and (>= 4.13.0) (< 4.14.0)))
(ocaml (and (>= 4.14.0) (< 5.0.0)))
(ANSITerminal (>= 0.8))
(yojson (>= 1.7.0))
(camlp-streams (>= 5.0.1))
Expand Down
2 changes: 1 addition & 1 deletion lib/traverse/descent.ml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ module T = struct
sub.attributes sub ptyexn_attributes

let iter_extension_constructor_kind sub = function
Pext_decl(ctl, cto) ->
Pext_decl(_, ctl, cto) ->
iter_constructor_arguments sub ctl; iter_opt (sub.typ sub) cto
| Pext_rebind li ->
iter_loc sub li
Expand Down