diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 12599ed84672cd6ba41d89b6f223534841ccb180..424d2e16046daf8a970d59c21ce15204d0954856 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -53,13 +53,3 @@ build-coq.8.10.2: <<: *template variables: OPAM_PINS: "coq version 8.10.2" - -build-coq.8.9.1: - <<: *template - variables: - OPAM_PINS: "coq version 8.9.1" - -build-coq.8.8.2: - <<: *template - variables: - OPAM_PINS: "coq version 8.8.2" diff --git a/CHANGELOG.md b/CHANGELOG.md index 8152693b159cb34cceaf3c4383f9e218c4e81fb1..3bd27e03ff4745ffb4c29b024efc500be555c6cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,8 @@ API-breaking change is listed. ## std++ master +Coq 8.8 and 8.9 are no longer supported. + - Rename `dom_map filter` → `dom_filter`, `dom_map_filter_L` → `dom_filter_L`, and `dom_map_filter_subseteq` → `dom_filter_subseteq` for consistency's sake. - Add `max` and `min` operations for `Qp`. diff --git a/README.md b/README.md index 329f151e832d88ea0b280949165f51e9154a50ed..4e218a7537cbf09535e277394acad694cec85e91 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ Notably: This version is known to compile with: - - Coq version 8.8.2 / 8.9.1 / 8.10.2 / 8.11.2 / 8.12.0 + - Coq version 8.10.2 / 8.11.2 / 8.12.0 ## Installing via opam diff --git a/opam b/opam index 406f55d80fe1ca581c2ae044716d280b6441e71a..edc1126e055c269017d116998591497f04b6c997 100644 --- a/opam +++ b/opam @@ -30,7 +30,7 @@ The key features of this library are as follows: """ depends: [ - "coq" { (= "8.8.2") | (>= "8.9.1" & < "8.13~") | (= "dev") } + "coq" { (>= "8.10.2" & < "8.13~") | (= "dev") } ] build: [make "-j%{jobs}%"] diff --git a/theories/options.v b/theories/options.v index c94b63dccfa6a69830312476090b40b948ebe1cb..7e3856858e2a8b84e9f61b0034e0de133151aee5 100644 --- a/theories/options.v +++ b/theories/options.v @@ -6,8 +6,7 @@ but not transitively. *) Export Set Default Proof Using "Type". (* FIXME: cannot enable this yet as some files disable 'Default Proof Using'. Export Set Suggest Proof Using. *) -(* FIXME: cannot enable this on Coq 8.8. -Export Set Default Goal Selector "!". *) +Export Set Default Goal Selector "!". (* "Fake" import to whitelist this file for the check that ensures we import this file everywhere.