File tree Expand file tree Collapse file tree 5 files changed +395
-9
lines changed Expand file tree Collapse file tree 5 files changed +395
-9
lines changed Original file line number Diff line number Diff line change 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
514Requires Elpi 1.18.1 and Coq 8.19.
Original file line number Diff line number Diff line change @@ -59,11 +59,11 @@ Check eq_refl 0 : projEnvelope1 nat 1 1 (Envelope nat 0 1) = 0.
5959Check projEnvelope2 : forall A, A -> A -> zeta A -> A.
6060Check eq_refl 0 : projEnvelope2 nat 1 1 (Envelope nat 1 0) = 0.
6161Check 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 }.
You can’t perform that action at this time.
0 commit comments