Skip to content

Commit cafe40a

Browse files
committed
fix detype
1 parent 75b6197 commit cafe40a

File tree

5 files changed

+395
-9
lines changed

5 files changed

+395
-9
lines changed

Changelog.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## [2.0.2] - 22/01/2024
4+
5+
Requires Elpi 1.18.1 and Coq 8.19.
6+
7+
### API
8+
- Fix `coq.elaborate-*` does not erase the type annotation of `Let`s (regression
9+
introduced in 2.0.1). This fix may introduce differences in generated names
10+
- Fix `coq.elaborate-*` are not affected anymore by printing options
11+
312
## [2.0.1] - 29/12/2023
413

514
Requires Elpi 1.18.1 and Coq 8.19.

apps/derive/tests/test_projK.v

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,11 @@ Check eq_refl 0 : projEnvelope1 nat 1 1 (Envelope nat 0 1) = 0.
5959
Check projEnvelope2 : forall A, A -> A -> zeta A -> A.
6060
Check eq_refl 0 : projEnvelope2 nat 1 1 (Envelope nat 1 0) = 0.
6161
Check projRedex1 : forall A, A -> beta A -> A.
62-
Check projWhy1 : forall n : peano, match n with
62+
Check projWhy1 : forall n : peano, match n return Type with
6363
| Zero => peano
6464
| Succ _ => unit
6565
end -> iota -> peano.
66-
Check projWhy2 : forall n : peano, match n with
66+
Check projWhy2 : forall n : peano, match n return Type with
6767
| Zero => peano
6868
| Succ _ => unit
6969
end -> iota -> { i : peano & match i with Zero => peano | Succ _ => unit end }.

0 commit comments

Comments
 (0)