diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 8919f462d73be80cbe555349d2bbef13402c37d4..f1d02c0e9989d0ed57934d15dc615f26593a3cfa 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -78,16 +78,9 @@ build-coq.8.13.2:
     DENY_WARNINGS: "1"
 
 build-coq.8.12.2:
-  <<: *template
-  variables:
-    OPAM_PINS: "coq version 8.12.2"
-    DENY_WARNINGS: "1"
-    OCAML: "ocaml-base-compiler.4.07.1"
-
-build-coq.8.11.2:
   <<: *template
   <<: *branches_and_mr
   variables:
-    OPAM_PINS: "coq version 8.11.2"
+    OPAM_PINS: "coq version 8.12.2"
     DENY_WARNINGS: "1"
     OCAML: "ocaml-base-compiler.4.07.1"
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e698892b8a42e42a4d60615578dca28de372ef89..fe150cdc9b4adfff28678aaff2cbd9dfc7ec35a3 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,6 +3,8 @@ API-breaking change is listed.
 
 ## std++ master
 
+Coq 8.11 is no longer supported.
+
 - Make sure that `gset` and `mapset` do not bump the universe.
 - Rewrite `tele_arg` to make it not bump universes. (by Gregory Malecha, BedRock Systems)
 
diff --git a/README.md b/README.md
index 2dc2970c9d9f01ccb26dd4b365e52c8f02da1b61..d50a23592a8d4d77853f4b2c7e03c3a2c68b7ff5 100644
--- a/README.md
+++ b/README.md
@@ -45,7 +45,7 @@ Notably:
 
 This version is known to compile with:
 
- - Coq version 8.11.2 / 8.12.2 / 8.13.2 / 8.14.1 / 8.15.0
+ - Coq version 8.12.2 / 8.13.2 / 8.14.1 / 8.15.0
 
 ## Installing via opam
 
diff --git a/coq-stdpp.opam b/coq-stdpp.opam
index 31b25fd3656bfce22e523bdb4a1a0802cf85006b..07b52f0d3c72002031b921788c96c1cc09286291 100644
--- a/coq-stdpp.opam
+++ b/coq-stdpp.opam
@@ -33,7 +33,7 @@ tags: [
 ]
 
 depends: [
-  "coq" { (>= "8.11" & < "8.16~") | (= "dev") }
+  "coq" { (>= "8.12" & < "8.16~") | (= "dev") }
 ]
 
 build: [make "-j%{jobs}%"]