Skip to content

Commit

Permalink
update CHANGES and fix the version calculation for the error changes
Browse files Browse the repository at this point in the history
  • Loading branch information
avsm committed Nov 24, 2019
1 parent d696925 commit e7cdfe5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
v5.1.1 2019-11-23
-----------------

This is a point release to fix a regression in 5.1.0
on compilers earlier than 4.07.

The release also fixes the test suite and CI on compilers
greater than 4.07.

v5.1.0 2019-11-23
-----------------

Expand Down
2 changes: 1 addition & 1 deletion ppx_test/errors/pp.ml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
external sys_exit : int -> 'a = "caml_sys_exit"
let () = at_exit (fun () -> sys_exit 0)

#if OCAML_VERSION >= (4,7,0)
#if OCAML_VERSION >= (4,8,0)
let () = Clflags.(error_style := Some Short)
#endif

Expand Down

0 comments on commit e7cdfe5

Please sign in to comment.