Skip to content

Commit

Permalink
Bump minimal OCaml version from 4.02 to 4.03
Browse files Browse the repository at this point in the history
Following the previous base64 upgrade which now uses 4.03+ "result"
type.
  • Loading branch information
alavrik committed Feb 20, 2019
1 parent 98abdbf commit c08b8ff
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ matrix:
#
#- os: linux
# env: OCAML_VERSION=system
- os: linux
env: OCAML_VERSION=4.02
- os: linux
env: OCAML_VERSION=4.03
- os: linux
Expand Down
2 changes: 1 addition & 1 deletion INSTALL
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ On Windows:

On other Unix systems:

* OCaml (>= 4.02.0)
* OCaml (>= 4.03.0)

OCaml is available in most Linux distributions. It can also be
downloaded from here:
Expand Down
4 changes: 2 additions & 2 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,8 @@ fi
echo "ocaml version: $OCAML_VERSION"

case $OCAML_VERSION in
3.*|4.00.*|4.01.*)
echo "configure: error: OCaml version ($OCAML_VERSION) is too old -- need >= 4.02; See INSTALL for details" 1>&2
3.*|4.00.*|4.01.*|4.02.*)
echo "configure: error: OCaml version ($OCAML_VERSION) is too old -- need >= 4.03; See INSTALL for details" 1>&2
exit 1
;;
esac
Expand Down
2 changes: 1 addition & 1 deletion opam
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ remove: [
]
flags: light-uninstall
depends: [
"ocaml" {>= "4.02.0"}
"ocaml" {>= "4.03"}
"ocamlfind" {build}
"easy-format"
"ulex"
Expand Down

0 comments on commit c08b8ff

Please sign in to comment.