Skip to content

Commit

Permalink
Merge pull request #114 from kit-ty-kate/413
Browse files Browse the repository at this point in the history
Add support for OCaml 4.13
  • Loading branch information
pitag-ha authored Jun 18, 2021
2 parents 6fc232e + 0437260 commit b621868
Show file tree
Hide file tree
Showing 11 changed files with 3,462 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
unreleased
--------------------------

- Add support for 4.13 (#114, @kit-ty-kate)

v2.1.0 2020-10-22 Bordeaux
--------------------------

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ Convert OCaml parsetrees between different major versions
This library converts between parsetrees of different OCaml versions.

Supported versions are 4.02, 4.03, 4.04, 4.05, 4.06, 4.07, 4.08, 4.09,
4.10, and 4.11. For each version, there is a snapshot of the parsetree
and conversion functions to the next and/or previous version.
4.10, 4.11, 4.12 and 4.13. For each version, there is a snapshot of the
parsetree and conversion functions to the next and/or previous version.

## Asts

```ocaml
module Ast_{402,403,404,405,406,407,408,409,410,411} : sig
module Ast_{402,403,404,405,406,407,408,409,410,411,412,413} : sig
(* Version specific copy of AST *)
module Asttypes
Expand Down
2 changes: 1 addition & 1 deletion ocaml-migrate-parsetree.opam
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ build: ["dune" "build" "-p" name "-j" jobs]
run-test: ["dune" "runtest" "-p" name "-j" jobs]
depends: [
"dune" {>= "2.3"}
"ocaml" {>= "4.02.3" & < "4.13"}
"ocaml" {>= "4.02.3" & < "4.14"}
"cinaps" {with-test & >= "v0.13.0"}
]
synopsis: "Convert OCaml parsetrees between different versions"
Expand Down
Loading

0 comments on commit b621868

Please sign in to comment.