Skip to content

Commit

Permalink
updates version information in configure and README files
Browse files Browse the repository at this point in the history
  • Loading branch information
ybertot committed Aug 4, 2020
1 parent 0de602d commit 42636fc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ You can:

#### Requirements

- The latest version runs with Coq 8.11
- The latest version runs with Coq 8.12
- it has been tested with a version of Coq installed using opam and with
Ocaml version 4.09.0
Ocaml version 4.07.0 and 4.10.0
- [ocamlgraph](http://ocamlgraph.lri.fr/) (for dpd2dot tool)
Any version should work since only the basic feature are used.

Expand Down
6 changes: 3 additions & 3 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# will set several variables: (see AC_SUBST at the end of this file)
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

AC_INIT(coq-dpdgraph,0.6.7)
AC_INIT(coq-dpdgraph,0.6.8)
AC_MSG_NOTICE(AC_PACKAGE_NAME version AC_PACKAGE_VERSION)

#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Expand Down Expand Up @@ -184,8 +184,8 @@ COQVERSION=$($COQC -v | sed -n -e 's|.*version *\(.*\)$|\1|p' )
AC_MSG_RESULT($COQVERSION)

case $COQVERSION in
8.[[0-9]][[^0-9]]*|8.10*)
AC_MSG_ERROR(AC_PACKAGE_NAME needs Coq version 8.11 or higher)
8.[[0-9]][[^0-9]]*|8.1[0-1]*)
AC_MSG_ERROR(AC_PACKAGE_NAME needs Coq version 8.12 or higher)
;;
esac

Expand Down

0 comments on commit 42636fc

Please sign in to comment.