Skip to content

Commit bf494bf

Browse files
committedJul 6, 2022
Allow Coq 8.9
1 parent aea8ad3 commit bf494bf

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed
 

‎.circleci/config.yml

+3
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,9 @@ workflows:
6060
version: 2
6161
test:
6262
jobs:
63+
- build:
64+
name: "Coq 8.9"
65+
coq: "coqorg/coq:8.9"
6366
- build:
6467
name: "Coq 8.11"
6568
coq: "coqorg/coq:8.11"

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ A collection of theories and plugins that may be useful in other Coq development
3333
- Gregory Malecha ([**@gmalecha**](https://github.com/gmalecha))
3434
- Yishuai Li ([**@liyishuai**](https://github.com/liyishuai))
3535
- License: [BSD 2-Clause "Simplified" License](LICENSE)
36-
- Compatible Coq versions: Coq 8.8 or later
36+
- Compatible Coq versions: Coq 8.11 or later or 8.9
3737
- Additional dependencies: none
3838
- Coq namespace: `ExtLib`
3939
- Related publication(s): none

‎coq-ext-lib.opam

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ install: [
1616
]
1717
depends: [
1818
"ocaml"
19-
"coq" {>= "8.8"}
19+
"coq" { >= "8.9" < "8.10" | >= "8.11" }
2020
]
2121
synopsis: "A library of Coq definitions, theorems, and tactics"
2222
description: """

‎meta.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,11 @@ license:
2828
identifier: BSD-2-Clause
2929

3030
supported_coq_versions:
31-
text: Coq 8.8 or later
32-
opam: '{ >= "8.8" }'
31+
text: Coq 8.11 or later or 8.9
32+
opam: '{ >= "8.9" < "8.10" | >= "8.11" }'
3333

3434
tested_coq_opam_versions:
35+
- version: '8.9'
3536
- version: '8.11'
3637
- version: '8.12'
3738
- version: '8.13'

0 commit comments

Comments
 (0)