Skip to content

Commit d52650a

Browse files
committed
release for coq-8.17, configure.ac and meta.yml edited by hand, the rest
generated by templates/generate.sh
1 parent da7ac90 commit d52650a

File tree

5 files changed

+19
-23
lines changed

5 files changed

+19
-23
lines changed

.github/workflows/docker-action.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name: Docker CI
55
on:
66
push:
77
branches:
8-
- coq-master
8+
- coq-v8.17
99
pull_request:
1010
branches:
1111
- '**'
@@ -17,17 +17,15 @@ jobs:
1717
strategy:
1818
matrix:
1919
image:
20-
- 'coqorg/coq:dev'
20+
- 'coqorg/coq:8.17'
2121
fail-fast: false
2222
steps:
23-
- uses: actions/checkout@v2
23+
- uses: actions/checkout@v3
2424
- uses: coq-community/docker-coq-action@v1
2525
with:
2626
opam_file: 'coq-dpdgraph.opam'
2727
custom_image: ${{ matrix.image }}
28-
export: 'OPAMWITHTEST'
29-
env:
30-
OPAMWITHTEST: 'true'
28+
3129

3230
# See also:
3331
# https://github.com/coq-community/docker-coq-action#readme

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Follow the instructions on https://github.com/coq-community/templates to regener
99
[![Code of Conduct][conduct-shield]][conduct-link]
1010
[![Zulip][zulip-shield]][zulip-link]
1111

12-
[docker-action-shield]: https://github.com/coq-community/coq-dpdgraph/workflows/Docker%20CI/badge.svg?branch=coq-master
12+
[docker-action-shield]: https://github.com/coq-community/coq-dpdgraph/workflows/Docker%20CI/badge.svg?branch=coq-v8.17
1313
[docker-action-link]: https://github.com/coq-community/coq-dpdgraph/actions?query=workflow:"Docker%20CI"
1414

1515
[contributing-shield]: https://img.shields.io/badge/contributions-welcome-%23f7931e.svg
@@ -37,7 +37,7 @@ to visualize dependency graphs and find unused definitions.
3737
- Anne Pacalet ([**@Karmaki**](https://github.com/Karmaki))
3838
- Yves Bertot ([**@ybertot**](https://github.com/ybertot))
3939
- License: [GNU Lesser General Public License v2.1](LICENSE)
40-
- Compatible Coq versions: master (use the corresponding branch or release for other Coq versions)
40+
- Compatible Coq versions: 8.17 (use the corresponding branch or release for other Coq versions)
4141
- Compatible OCaml versions: 4.05.0 or later
4242
- Additional dependencies:
4343
- autoconf (except for releases)

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# will set several variables: (see AC_SUBST at the end of this file)
1111
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1212

13-
AC_INIT(coq-dpdgraph,1.0)
13+
AC_INIT(coq-dpdgraph,1.0-8.17)
1414
AC_MSG_NOTICE(AC_PACKAGE_NAME version AC_PACKAGE_VERSION)
1515

1616
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

coq-dpdgraph.opam

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
1+
# This file was generated from `meta.yml`, please do not edit manually.
2+
# Follow the instructions on https://github.com/coq-community/templates to regenerate.
3+
14
opam-version: "2.0"
25
maintainer: "palmskog@gmail.com"
3-
version: "dev"
6+
version: "8.17.dev"
47

58
homepage: "https://github.com/coq-community/coq-dpdgraph"
69
dev-repo: "git+https://github.com/coq-community/coq-dpdgraph.git"
@@ -13,16 +16,11 @@ Coq plugin that extracts the dependencies between Coq objects,
1316
and produces files with dependency information. Includes tools
1417
to visualize dependency graphs and find unused definitions."""
1518

16-
build: [
17-
["autoconf"] {dev}
18-
["./configure"]
19-
[make "-j%{jobs}%" "WARN_ERR="]
20-
]
21-
run-test: [make "test-suite"]
22-
install: [make "install" "BINDIR=%{bin}%"]
19+
build: [make "-j%{jobs}%"]
20+
install: [make "install"]
2321
depends: [
2422
"ocaml" {>= "4.05.0"}
25-
"coq" {= "dev"}
23+
"coq" {>= "8.17" & "8.18~"}
2624
"conf-autoconf" {build & dev}
2725
"ocamlgraph"
2826
]

meta.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ organization: coq-community
66
community: true
77
action: true
88
plugin: true
9-
branch: 'coq-master'
9+
branch: 'coq-v8.17'
1010

1111
synopsis: >-
1212
Compute dependencies between Coq objects (definitions, theorems) and produce graphs
@@ -29,15 +29,15 @@ maintainers:
2929

3030
opam-file-maintainer: palmskog@gmail.com
3131

32-
opam-file-version: dev
32+
opam-file-version: 8.17.dev
3333

3434
license:
3535
fullname: GNU Lesser General Public License v2.1
3636
identifier: LGPL-2.1-only
3737

3838
supported_coq_versions:
39-
text: master (use the corresponding branch or release for other Coq versions)
40-
opam: '{= "dev"}'
39+
text: 8.17 (use the corresponding branch or release for other Coq versions)
40+
opam: '{>= "8.17" & "8.18~"}'
4141

4242
supported_ocaml_versions:
4343
text: 4.05.0 or later
@@ -55,7 +55,7 @@ dependencies:
5555
[OCamlgraph](https://github.com/backtracking/ocamlgraph)
5656
5757
tested_coq_opam_versions:
58-
- version: dev
58+
- version: 8.17
5959

6060
namespace: dpdgraph
6161

0 commit comments

Comments
 (0)