From 84bb98724915daf2786202b7f3f9d661ebff2b37 Mon Sep 17 00:00:00 2001
From: Ralf Jung <jung@mpi-sws.org>
Date: Mon, 9 Jan 2023 19:31:54 +0100
Subject: [PATCH] also drop support for Coq 8.13

---
 .gitlab-ci.yml | 9 +--------
 CHANGELOG.md   | 2 +-
 README.md      | 4 +++-
 coq-stdpp.opam | 2 +-
 4 files changed, 6 insertions(+), 11 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 7f30803b..613b3ed9 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -77,16 +77,9 @@ build-coq.8.15.2:
     DENY_WARNINGS: "1"
 
 build-coq.8.14.1:
-  <<: *template
-  variables:
-    OPAM_PINS: "coq version 8.14.1"
-    DENY_WARNINGS: "1"
-    OCAML: "ocaml-base-compiler.4.07.1"
-
-build-coq.8.13.2:
   <<: *template
   <<: *branches_and_mr
   variables:
-    OPAM_PINS: "coq version 8.13.2"
+    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 de41996d..e3634548 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,7 +3,7 @@ API-breaking change is listed.
 
 ## std++ master
 
-Coq 8.12 is no longer supported by this release.
+Coq 8.12 and 8.13 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 165ecfcf..09a65dc1 100644
--- a/README.md
+++ b/README.md
@@ -45,7 +45,9 @@ Notably:
 
 This version is known to compile with:
 
- - Coq version 8.13.2 / 8.14.1 / 8.15.2 / 8.16.1
+ - Coq version 8.14.1 / 8.15.2 / 8.16.1
+
+Generally we always aim to support at least the last three stable Coq releases.
 
 ## Installing via opam
 
diff --git a/coq-stdpp.opam b/coq-stdpp.opam
index 617adbfb..ddc65aac 100644
--- a/coq-stdpp.opam
+++ b/coq-stdpp.opam
@@ -33,7 +33,7 @@ tags: [
 ]
 
 depends: [
-  "coq" { (>= "8.13" & < "8.18~") | (= "dev") }
+  "coq" { (>= "8.14" & < "8.18~") | (= "dev") }
 ]
 
 build: ["./make-package" "stdpp" "-j%{jobs}%"]
-- 
GitLab