From 852e6fa7c95076645fb91231d6c0fb490ae8b5b8 Mon Sep 17 00:00:00 2001 From: Ralf Jung <jung@mpi-sws.org> Date: Thu, 2 Jul 2020 08:58:27 +0200 Subject: [PATCH] drop support for Coq 8.7 --- .gitlab-ci.yml | 5 ----- CHANGELOG.md | 2 ++ README.md | 2 +- opam | 2 +- 4 files changed, 4 insertions(+), 7 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 60c29fd8..3626c78d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -56,8 +56,3 @@ build-coq.8.8.2: <<: *template variables: OPAM_PINS: "coq version 8.8.2" - -build-coq.8.7.2: - <<: *template - variables: - OPAM_PINS: "coq version 8.7.2" diff --git a/CHANGELOG.md b/CHANGELOG.md index dff20c8a..4ecf138e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,8 @@ API-breaking change is listed. ## std++ master +Coq 8.7 is no longer supported by this release. + - Rename `Z2Nat_inj_div` and `Z2Nat_inj_mod` to `Nat2Z_inj_div` and `Nat2Z_inj_mod` to follow the naming convention of `Nat2Z` and `Z2Nat`. The names `Z2Nat_inj_div` and `Z2Nat_inj_mod` have been diff --git a/README.md b/README.md index 3c6610ad..99c91426 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.2 / 8.11.2 + - Coq version 8.8.2 / 8.9.1 / 8.10.2 / 8.11.2 ## Installing via opam diff --git a/opam b/opam index df35d5bf..93bfee1a 100644 --- a/opam +++ b/opam @@ -30,7 +30,7 @@ The key features of this library are as follows: """ depends: [ - "coq" { (= "8.7.2") | (= "8.8.2") | (>= "8.9.1" & < "8.13~") | (= "dev") } + "coq" { (= "8.8.2") | (>= "8.9.1" & < "8.13~") | (= "dev") } ] build: [make "-j%{jobs}%"] -- GitLab