Skip to content

Commit 0c31689

Browse files
committed
Migrate to 4.14
1 parent 88fea37 commit 0c31689

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/workflow.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ jobs:
1313
- macos-latest
1414
- ubuntu-latest
1515
ocaml-version:
16-
- 4.13.0
17-
- 4.13.1
16+
- 4.14.0
17+
- 4.14.2
1818

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

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# 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)
2-
A modular and fully-configurable OCaml Linter / Style Checker for OCaml compiler version >= 4.10.0 < 4.14.0 (temporarily).
2+
A modular and fully-configurable OCaml Linter / Style Checker for OCaml compiler version >= 4.10.0 < 5.0.0 (temporarily).
33

44
## Dependencies (handled by opam)
5-
- ocaml >= v4.10.0 < 4.14.0
5+
- ocaml >= v4.10.0 < 5.0.0
66
- dune >= 2.5.0
77
- compiler-libs.common
88
- fswatch (for Build + Watch)

camelot.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ homepage: "https://github.com/upenn-cis1xx/camelot"
99
bug-reports: "https://github.com/upenn-cis1xx/camelot/issues"
1010
depends: [
1111
"dune" {>= "2.5"}
12-
"ocaml" {>= "4.13.0" & < "4.14.0"}
12+
"ocaml" {>= "4.14.0" & < "5.0.0"}
1313
"ANSITerminal" {>= "0.8"}
1414
"yojson" {>= "1.7.0"}
1515
"camlp-streams" {>= "5.0.1"}

dune-project

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
(synopsis "An OCaml Linter / Style Checker")
1515
(depends
1616
(dune (>= 2.5))
17-
(ocaml (and (>= 4.13.0) (< 4.14.0)))
17+
(ocaml (and (>= 4.14.0) (< 5.0.0)))
1818
(ANSITerminal (>= 0.8))
1919
(yojson (>= 1.7.0))
2020
(camlp-streams (>= 5.0.1))

lib/traverse/descent.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ module T = struct
113113
sub.attributes sub ptyexn_attributes
114114

115115
let iter_extension_constructor_kind sub = function
116-
Pext_decl(ctl, cto) ->
116+
Pext_decl(_, ctl, cto) ->
117117
iter_constructor_arguments sub ctl; iter_opt (sub.typ sub) cto
118118
| Pext_rebind li ->
119119
iter_loc sub li

0 commit comments

Comments
 (0)