diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4cb682af020a9266e7cd04c93f6609cd8ae74ef5..2eecabff31f8d6c77ffb1ca25493246b8bddf13d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -33,6 +33,12 @@ build-coq.dev: OPAM_PINS: "coq version dev" CI_COQCHK: "1" +build-coq.8.11.dev: + <<: *template + variables: + OPAM_PINS: "coq version 8.11.dev" + CI_COQCHK: "1" + build-coq.8.10.1: <<: *template variables: @@ -43,11 +49,6 @@ build-coq.8.10.1: tags: - fp-timing -build-coq.8.10.0: - <<: *template - variables: - OPAM_PINS: "coq version 8.10.0" - build-coq.8.9.1: <<: *template variables: diff --git a/README.md b/README.md index da76717369448e4c4ac455f66db036623666871d..38e17fdb64f2bb01103034d235d8cbf92d049b65 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ Notably: This version is known to compile with: - - Coq version 8.7.2 / 8.8.2 / 8.9.1 / 8.10.0 / 8.10.1 + - Coq version 8.7.2 / 8.8.2 / 8.9.1 / 8.10.1 ## Installing via opam diff --git a/opam b/opam index 896371805abde1a5d6ba0fe61f3c428c5b175ade..9d8c46a11af3a917ac85857c10a94b0b858ac401 100644 --- a/opam +++ b/opam @@ -11,5 +11,5 @@ build: [make "-j%{jobs}%"] install: [make "install"] remove: ["rm" "-rf" "%{lib}%/coq/user-contrib/stdpp"] depends: [ - "coq" { (>= "8.7.2" & < "8.11~") | (= "dev") } + "coq" { (>= "8.7.2" & < "8.12~") | (= "dev") } ]