You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+25Lines changed: 25 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,13 @@ The library has been tested using Agda 2.8.0.
6
6
Highlights
7
7
----------
8
8
9
+
### Deprecated `Relation.Binary.PropositionalEquality.inspect`, in favour
10
+
of `with ... in ...` syntax (issue #1580; PRs #1630, #1930, #2934)
11
+
12
+
* In `Relation.Binary.PropositionalEquality`, the record type `Reveal_·_is_`
13
+
and its principal mode of use, `inspect`, have been deprecated in favour of
14
+
the new `with ... in ...` syntax. See the documentation of [with-abstraction equality](https://agda.readthedocs.io/en/stable/language/with-abstraction.html#with-abstraction-equality).
15
+
9
16
Bug-fixes
10
17
---------
11
18
@@ -131,6 +138,13 @@ Deprecated names
131
138
decidable ↦ _∪?_
132
139
```
133
140
141
+
* In `Relation.Binary.PropositionalEquality`:
142
+
```agda
143
+
Reveal_·_is_ ↦ Graph.View
144
+
inspect ↦ Graph.view
145
+
pattern [_] ↦ λ eq → record { fx≡y = eq }
146
+
```
147
+
134
148
* In `Relation.Nullary.Decidable.Core`:
135
149
```agda
136
150
⊤-dec ↦ ⊤?
@@ -658,6 +672,17 @@ Additions to existing modules
658
672
¬[x≢x] : .(x ≢ x) → Whatever
659
673
```
660
674
675
+
* In `Relation.Binary.PropositionalEquality`, replacing `Reveal`/`inspect`:
676
+
```agda
677
+
module Graph {A : Set a} {B : A → Set b} (f : (x : A) → B x) (x : A) where
0 commit comments