Skip to content

Commit 9463c04

Browse files
committed
adjust boilerplate for 8.15
1 parent 6c3566b commit 9463c04

File tree

5 files changed

+11
-43
lines changed

5 files changed

+11
-43
lines changed

.github/workflows/docker-action.yml

Lines changed: 0 additions & 31 deletions
This file was deleted.

.github/workflows/nix-action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name: Nix CI
55
on:
66
push:
77
branches:
8-
- master
8+
- v8.15
99
pull_request:
1010
paths:
1111
- .github/workflows/**
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
matrix:
1919
overrides:
20-
- 'coq = "master"'
20+
- 'coq = "v8.15"'
2121
fail-fast: false
2222
steps:
2323
- name: Determine which commit to test

README.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,13 @@ Follow the instructions on https://github.com/coq-community/templates to regener
44
--->
55
# AAC Tactics
66

7-
[![Docker CI][docker-action-shield]][docker-action-link]
87
[![Nix CI][nix-action-shield]][nix-action-link]
98
[![Contributing][contributing-shield]][contributing-link]
109
[![Code of Conduct][conduct-shield]][conduct-link]
1110
[![Zulip][zulip-shield]][zulip-link]
1211
[![DOI][doi-shield]][doi-link]
1312

14-
[docker-action-shield]: https://github.com/coq-community/aac-tactics/workflows/Docker%20CI/badge.svg?branch=master
15-
[docker-action-link]: https://github.com/coq-community/aac-tactics/actions?query=workflow:"Docker%20CI"
16-
17-
[nix-action-shield]: https://github.com/coq-community/aac-tactics/workflows/Nix%20CI/badge.svg?branch=master
13+
[nix-action-shield]: https://github.com/coq-community/aac-tactics/workflows/Nix%20CI/badge.svg?branch=v8.15
1814
[nix-action-link]: https://github.com/coq-community/aac-tactics/actions?query=workflow:"Nix%20CI"
1915

2016
[contributing-shield]: https://img.shields.io/badge/contributions-welcome-%23f7931e.svg
@@ -46,7 +42,7 @@ such as for binary integer arithmetic and booleans, are provided with the plugin
4642
- Coq-community maintainer(s):
4743
- Karl Palmskog ([**@palmskog**](https://github.com/palmskog))
4844
- License: [GNU Lesser General Public License v3.0 or later](LICENSE)
49-
- Compatible Coq versions: master (use the corresponding branch or release for other Coq versions)
45+
- Compatible Coq versions: 8.15 (use the corresponding branch or release for other Coq versions)
5046
- Compatible OCaml versions: 4.05.0 or later
5147
- Additional dependencies: none
5248
- Coq namespace: `AAC_tactics`

coq-aac-tactics.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ build: ["dune" "build" "-p" name "-j" jobs]
2323
depends: [
2424
"ocaml" {>= "4.05.0"}
2525
"dune" {>= "2.5"}
26-
"coq" {= "dev"}
26+
"coq" {>= "8.15" & < "8.16~"}
2727
]
2828

2929
tags: [

meta.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ action: true
77
nix: true
88
plugin: true
99
doi: 10.1007/978-3-642-25379-9_14
10-
branch: master
10+
branch: v8.15
1111

1212
synopsis: >-
1313
Coq tactics for rewriting universally quantified equations, modulo
@@ -47,8 +47,8 @@ license:
4747
identifier: LGPL-3.0-or-later
4848

4949
supported_coq_versions:
50-
text: master (use the corresponding branch or release for other Coq versions)
51-
opam: '{= "dev"}'
50+
text: 8.15 (use the corresponding branch or release for other Coq versions)
51+
opam: '{>= "8.15" & < "8.16~"}'
5252

5353
supported_ocaml_versions:
5454
text: 4.05.0 or later
@@ -57,6 +57,9 @@ supported_ocaml_versions:
5757
tested_coq_opam_versions:
5858
- version: dev
5959

60+
tested_coq_nix_versions:
61+
- coq_version: 'v8.15'
62+
6063
namespace: AAC_tactics
6164

6265
keywords:

0 commit comments

Comments
 (0)