chore: update RELEASES.md

This commit is contained in:
Leonardo de Moura 2023-10-29 10:19:44 -07:00 committed by Leonardo de Moura
parent e53952f167
commit dcb40f67c1

View file

@ -41,6 +41,9 @@ v4.3.0
* The `:=` syntax for configuration declarations (i.e., `package`, `lean_lib`, and `lean_exe`) has been deprecated. For example, `package foo := {...}` is deprecated.
* [support for overriding package URLs via `LAKE_PKG_URL_MAP`](https://github.com/leanprover/lean4/pull/2709)
* `simp [f]` does not unfold partial applications of `f` anymore. See issue [#2042](https://github.com/leanprover/lean4/issues/2042).
To fix proofs affected by this change, use `unfold f` or `simp (config := { unfoldPartialApp := true }) [f]`.
v4.2.0
---------