From b809e2c2071e2b84b116b9aa98078425ea623b49 Mon Sep 17 00:00:00 2001 From: Ralf Jung <jung@mpi-sws.org> Date: Thu, 14 Sep 2023 18:04:05 +0200 Subject: [PATCH] drop support for Coq 8.15 --- .gitlab-ci.yml | 9 +-------- CHANGELOG.md | 2 +- README.md | 2 +- coq-stdpp.opam | 2 +- 4 files changed, 4 insertions(+), 11 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2baeae7c..f37c3977 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -74,16 +74,9 @@ build-coq.8.17.1: DENY_WARNINGS: "1" MANGLE_NAMES: "1" +# The oldest version runs in MRs, without name mangling. build-coq.8.16.1: <<: *template variables: OPAM_PINS: "coq version 8.16.1" DENY_WARNINGS: "1" - -# The oldest version runs in MRs, without name mangling. -build-coq.8.15.2: - <<: *template - <<: *branches_and_mr - variables: - OPAM_PINS: "coq version 8.15.2" - DENY_WARNINGS: "1" diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f37282c..45f87503 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,7 @@ API-breaking change is listed. ## std++ master -Coq 8.17 is newly supported by this release. Coq 8.12, 8.13 and 8.14 are no +Coq 8.17 is newly supported by this release. Coq 8.12, 8.13, 8.14, and 8.15 are no longer supported by this release. - Rename `difference_difference` → `difference_difference_l` and diff --git a/README.md b/README.md index 0e89c96f..8885a951 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ Notably: This version is known to compile with: - - Coq version 8.15.2 / 8.16.1 / 8.17.1 / 8.18.0 + - Coq version 8.16.1 / 8.17.1 / 8.18.0 Generally we always aim to support the last two stable Coq releases. Support for older versions will be dropped when it is convenient. diff --git a/coq-stdpp.opam b/coq-stdpp.opam index 09a09511..e2fc1e99 100644 --- a/coq-stdpp.opam +++ b/coq-stdpp.opam @@ -33,7 +33,7 @@ tags: [ ] depends: [ - "coq" { (>= "8.15" & < "8.19~") | (= "dev") } + "coq" { (>= "8.16" & < "8.19~") | (= "dev") } ] build: ["./make-package" "stdpp" "-j%{jobs}%"] -- GitLab