Skip to content

Commit 35bece2

Browse files
committed
mathcomp 2.3.0
1 parent 6d3b322 commit 35bece2

5 files changed

Lines changed: 24 additions & 22 deletions

File tree

.github/workflows/docker-action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717
strategy:
1818
matrix:
1919
image:
20-
- 'mathcomp/mathcomp:2.1.0-coq-8.18'
20+
- 'mathcomp/mathcomp:2.3.0-coq-8.20'
2121
fail-fast: false
2222
steps:
23-
- uses: actions/checkout@v3
23+
- uses: actions/checkout@v4
2424
- uses: coq-community/docker-coq-action@v1
2525
with:
2626
opam_file: 'coq-twoSquare.opam'

README.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,10 @@ Follow the instructions on https://github.com/coq-community/templates to regener
66

77
[![Docker CI][docker-action-shield]][docker-action-link]
88

9-
[docker-action-shield]: https://github.com/thery/twoSquare/workflows/Docker%20CI/badge.svg?branch=master
10-
[docker-action-link]: https://github.com/thery/twoSquare/actions?query=workflow:"Docker%20CI"
9+
[docker-action-shield]: https://github.com/thery/twoSquare/actions/workflows/docker-action.yml/badge.svg?branch=master
10+
[docker-action-link]: https://github.com/thery/twoSquare/actions/workflows/docker-action.yml
11+
12+
1113

1214

1315

@@ -41,11 +43,11 @@ reflect
4143
- Author(s):
4244
- Laurent Théry
4345
- License: [MIT License](LICENSE)
44-
- Compatible Coq versions: 8.18 or later
46+
- Compatible Coq versions: 8.20 or later
4547
- Additional dependencies:
46-
- [MathComp ssreflect 2.1 or later](https://math-comp.github.io)
47-
- [MathComp algebra 2.1 or later](https://math-comp.github.io)
48-
- [MathComp field 2.1 or later](https://math-comp.github.io)
48+
- [MathComp ssreflect 2.3 or later](https://math-comp.github.io)
49+
- [MathComp algebra 2.3 or later](https://math-comp.github.io)
50+
- [MathComp field 2.3 or later](https://math-comp.github.io)
4951
- Coq namespace: `twoSquare`
5052
- Related publication(s): none
5153

coq-twoSquare.opam

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ reflect
4141
build: [make "-j%{jobs}%"]
4242
install: [make "install"]
4343
depends: [
44-
"coq" {(>= "8.18")}
45-
"coq-mathcomp-ssreflect" {(>= "2.1.0")}
46-
"coq-mathcomp-algebra" {(>= "2.1.0")}
47-
"coq-mathcomp-field" {(>= "2.1.0")}
44+
"coq" {(>= "8.20")}
45+
"coq-mathcomp-ssreflect" {(>= "2.3.0")}
46+
"coq-mathcomp-algebra" {(>= "2.3.0")}
47+
"coq-mathcomp-field" {(>= "2.3.0")}
4848
]
4949

5050
tags: [

gauss_int.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -914,7 +914,7 @@ rewrite ltnS leqn0 normGI_eq0 => /eqP->.
914914
by rewrite modGI0 gcdGI0.
915915
Qed.
916916

917-
Lemma gcdGIxx : idempotent gcdGI.
917+
Lemma gcdGIxx : idempotent_op gcdGI.
918918
Proof. by move=> x; rewrite gcdGIE ltnn modGIxx gcd0GI. Qed.
919919

920920
Lemma dvdGI_mod d x y : d %| x -> (d %| y) = (d %| y %% x).

meta.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -49,29 +49,29 @@ license:
4949
identifier: MIT
5050

5151
supported_coq_versions:
52-
text: '8.18 or later'
53-
opam: '{(>= "8.18")}'
52+
text: '8.20 or later'
53+
opam: '{(>= "8.20")}'
5454

5555
dependencies:
5656
- opam:
5757
name: coq-mathcomp-ssreflect
58-
version: '{(>= "2.1.0")}'
58+
version: '{(>= "2.3.0")}'
5959
description: |-
60-
[MathComp ssreflect 2.1 or later](https://math-comp.github.io)
60+
[MathComp ssreflect 2.3 or later](https://math-comp.github.io)
6161
- opam:
6262
name: coq-mathcomp-algebra
63-
version: '{(>= "2.1.0")}'
63+
version: '{(>= "2.3.0")}'
6464
description: |-
65-
[MathComp algebra 2.1 or later](https://math-comp.github.io)
65+
[MathComp algebra 2.3 or later](https://math-comp.github.io)
6666
6767
- opam:
6868
name: coq-mathcomp-field
69-
version: '{(>= "2.1.0")}'
69+
version: '{(>= "2.3.0")}'
7070
description: |-
71-
[MathComp field 2.1 or later](https://math-comp.github.io)
71+
[MathComp field 2.3 or later](https://math-comp.github.io)
7272
7373
tested_coq_opam_versions:
74-
- version: '2.1.0-coq-8.18'
74+
- version: '2.3.0-coq-8.20'
7575
repo: 'mathcomp/mathcomp'
7676

7777
namespace: twoSquare

0 commit comments

Comments
 (0)