Version 0.13
============The library has been tested using Agda version 2.5.2.
Important changes since 0.12:
*Added the `Selective` property in `Algebra.FunctionProperties` as
well as proofs of the selectivity of `min` and `max` in
`Data.Nat.Properties`.
*Added `Relation.Binary.Product.StrictLex.×-total₂`, an alternative
(non-degenerative) proof for totality, and renamed `×-total` to
`x-total₁` in that module.
*Added the `length-filter` property to `Data.List.Properties` (the
`filter` equivalent to the pre-existing `length-gfilter`).
*Added `_≤?_` decision procedure for `Data.Fin`.
*Added `allPairs` function to `Data.Vec`.
*Added additional properties of `_∈_` to `Data.Vec.Properties`:
`∈-map`, `∈-++ₗ`, `∈-++ᵣ`, `∈-allPairs`.
*Added some `zip`/`unzip`-related properties to
`Data.Vec.Properties`.
*Added an `All` predicate and related properties for `Data.Vec` (see
`Data.Vec.All` and `Data.Vec.All.Properties`).
*Added order-theoretic lattices and some related properties in
`Relation.Binary.Lattice` and `Relation.Binary.Properties`.
*Added symmetric and equivalence closures of binary relations in
`Relation.Binary.SymmetricClosure` and
`Relation.Binary.EquivalenceClosure`.
*Added `Congruent₁` and `Congruent₂` to `Algebra.FunctionProperties`.
These are aliases for `_Preserves _≈_ ⟶ _≈_` and
`_Preserves₂ _≈_ ⟶ _≈_ ⟶ _≈_` from `Relation.Binary.Core`.
*Useful lemmas and properties that were previously in private scope,
either explicitly or within records, have been made public in several
`Properties.agda` files. These include:
```agda
Data.Bool.Properties
Data.Fin.Properties
Data.Integer.Properties
Data.Integer.Addition.Properties
Data.Integer.Multiplication.Properties
```