Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

compact with mathcomp-analysis 1.7.0 #132

Merged
merged 4 commits into from
Nov 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ information theory, and linear error-correcting codes.
- [MathComp solvable](https://math-comp.github.io)
- [MathComp field](https://math-comp.github.io)
- [MathComp analysis](https://github.com/math-comp/analysis)
- [MathComp analysis reals standard library](https://github.com/math-comp/analysis)
- [Hierarchy Builder](https://github.com/math-comp/hierarchy-builder)
- MathComp algebra tactics
- A Coq tactic for proving bounds
Expand Down
6 changes: 6 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
-------------------
from 0.7.4 to 0.7.5
-------------------

- compatibility with MathComp-Analysis 1.7.0 only

-------------------
from 0.7.3 to 0.7.4
-------------------
Expand Down
3 changes: 2 additions & 1 deletion coq-infotheo.opam
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ depends: [
"coq-mathcomp-algebra" { (>= "2.2.0") | (= "dev") }
"coq-mathcomp-solvable" { (>= "2.2.0") | (= "dev") }
"coq-mathcomp-field" { (>= "2.2.0") | (= "dev") }
"coq-mathcomp-analysis" { (>= "1.5.0") }
"coq-mathcomp-analysis" { (>= "1.7.0") }
"coq-mathcomp-reals-stdlib" { (>= "1.7.0") }
"coq-hierarchy-builder" { >= "1.5.0" }
"coq-mathcomp-algebra-tactics" { >= "1.2.0" }
"coq-interval" { >= "4.10.0"}
Expand Down
2 changes: 1 addition & 1 deletion information_theory/kraft.v
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
(* infotheo: information theory and error-correcting codes in Coq *)
(* Copyright (C) 2020 infotheo authors, license: LGPL-2.1-or-later *)
From mathcomp Require Import all_ssreflect path ssralg ssrnum.
From mathcomp Require Import all_ssreflect ssralg ssrnum.
Require FunctionalExtensionality.
Require Import ssr_ext.

Expand Down
7 changes: 6 additions & 1 deletion meta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,14 @@ dependencies:
[MathComp field](https://math-comp.github.io)
- opam:
name: coq-mathcomp-analysis
version: '{ (>= "1.5.0") }'
version: '{ (>= "1.7.0") }'
description: |-
[MathComp analysis](https://github.com/math-comp/analysis)
- opam:
name: coq-mathcomp-reals-stdlib
version: '{ (>= "1.7.0") }'
description: |-
[MathComp analysis reals standard library](https://github.com/math-comp/analysis)
- opam:
name: coq-hierarchy-builder
version: '{ >= "1.5.0" }'
Expand Down
Loading