Skip to content

Commit

Permalink
adapt boilerplate for Coq 8.20
Browse files Browse the repository at this point in the history
  • Loading branch information
palmskog committed Jun 30, 2024
1 parent 5e3f4fe commit 1da8062
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Docker CI
on:
push:
branches:
- master
- v8.20
paths-ignore:
- 'resources/**'
pull_request:
Expand All @@ -19,7 +19,7 @@ jobs:
strategy:
matrix:
image:
- 'coqorg/coq:dev'
- 'coqorg/coq:8.20'
fail-fast: false
steps:
- uses: actions/checkout@v3
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ Follow the instructions on https://github.com/coq-community/templates to regener
[![coqdoc][coqdoc-shield]][coqdoc-link]
[![DOI][doi-shield]][doi-link]

[docker-action-shield]: https://github.com/coq-community/atbr/workflows/Docker%20CI/badge.svg?branch=master
[docker-action-link]: https://github.com/coq-community/atbr/actions?query=workflow:"Docker%20CI"
[docker-action-shield]: https://github.com/coq-community/atbr/actions/workflows/docker-action.yml/badge.svg?branch=v8.20
[docker-action-link]: https://github.com/coq-community/atbr/actions/workflows/docker-action.yml

[contributing-shield]: https://img.shields.io/badge/contributions-welcome-%23f7931e.svg
[contributing-link]: https://github.com/coq-community/manifesto/blob/master/CONTRIBUTING.md
Expand Down Expand Up @@ -46,7 +46,7 @@ rather than automata: https://github.com/damien-pous/relation-algebra
- Coq-community maintainer(s):
- Tej Chajed ([**@tchajed**](https://github.com/tchajed))
- License: [GNU Lesser General Public License v3.0 or later](LICENSE)
- Compatible Coq versions: master (use the corresponding branch or release for other Coq versions)
- Compatible Coq versions: 8.20 (use the corresponding branch or release for other Coq versions)
- Compatible OCaml versions: 4.09.0 or later
- Additional dependencies: none
- Coq namespace: `ATBR`
Expand Down
4 changes: 2 additions & 2 deletions coq-atbr.opam
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

opam-version: "2.0"
maintainer: "[email protected]"
version: "dev"
version: "8.20.dev"

homepage: "https://github.com/coq-community/atbr"
dev-repo: "git+https://github.com/coq-community/atbr.git"
Expand All @@ -26,7 +26,7 @@ build: [make "-j%{jobs}%"]
install: [make "install"]
depends: [
"ocaml" {>= "4.09.0"}
"coq" {= "dev"}
"coq" {>= "8.20" & < "8.21"}
]

tags: [
Expand Down
9 changes: 5 additions & 4 deletions meta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ action: true
coqdoc: true
doi: 10.2168/LMCS-8(1:16)2012
plugin: true
branch: v8.20

synopsis: Coq library and tactic for deciding Kleene algebras

Expand Down Expand Up @@ -37,22 +38,22 @@ maintainers:

opam-file-maintainer: [email protected]

opam-file-version: dev
opam-file-version: 8.20.dev

license:
fullname: GNU Lesser General Public License v3.0 or later
identifier: LGPL-3.0-or-later

supported_coq_versions:
text: master (use the corresponding branch or release for other Coq versions)
opam: '{= "dev"}'
text: 8.20 (use the corresponding branch or release for other Coq versions)
opam: '{>= "8.20" & < "8.21"}'

supported_ocaml_versions:
text: 4.09.0 or later
opam: '{>= "4.09.0"}'

tested_coq_opam_versions:
- version: 'dev'
- version: '8.20'

namespace: ATBR

Expand Down

0 comments on commit 1da8062

Please sign in to comment.