From e02331792d5db8a97e10ab76fe885af6d2ba5d5f Mon Sep 17 00:00:00 2001
From: Robbert Krebbers <mail@robbertkrebbers.nl>
Date: Mon, 24 Apr 2023 11:12:52 +0200
Subject: [PATCH] Drop support for Coq 8.14.

---
 .gitlab-ci.yml | 7 -------
 CHANGELOG.md   | 3 ++-
 README.md      | 2 +-
 coq-stdpp.opam | 2 +-
 4 files changed, 4 insertions(+), 10 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 8bf7ff54..ec0e15eb 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -76,10 +76,3 @@ build-coq.8.15.2:
     OPAM_PINS: "coq version 8.15.2"
     DENY_WARNINGS: "1"
 
-build-coq.8.14.1:
-  <<: *template
-  <<: *branches_and_mr
-  variables:
-    OPAM_PINS: "coq version 8.14.1"
-    DENY_WARNINGS: "1"
-    OCAML: "ocaml-base-compiler.4.07.1"
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c190de43..6b5d992a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,7 +3,8 @@ API-breaking change is listed.
 
 ## std++ master
 
-Coq 8.12 and 8.13 are no longer supported by this release.
+Coq 8.17 is newly supported by this release. Coq 8.12, 8.13 and 8.14 are no
+longer supported by this release.
 
 - Rename `difference_difference` → `difference_difference_l` and
   `difference_difference_L` → `difference_difference_l_L`, add
diff --git a/README.md b/README.md
index f5ebdc2c..9f1f738b 100644
--- a/README.md
+++ b/README.md
@@ -45,7 +45,7 @@ Notably:
 
 This version is known to compile with:
 
- - Coq version 8.14.1 / 8.15.2 / 8.16.1 / 8.17.0
+ - Coq version 8.15.2 / 8.16.1 / 8.17.0
 
 Generally we always aim to support at least the last three stable Coq releases.
 
diff --git a/coq-stdpp.opam b/coq-stdpp.opam
index ddc65aac..4da0f5ed 100644
--- a/coq-stdpp.opam
+++ b/coq-stdpp.opam
@@ -33,7 +33,7 @@ tags: [
 ]
 
 depends: [
-  "coq" { (>= "8.14" & < "8.18~") | (= "dev") }
+  "coq" { (>= "8.15" & < "8.18~") | (= "dev") }
 ]
 
 build: ["./make-package" "stdpp" "-j%{jobs}%"]
-- 
GitLab