From cc729642c39f9a5d66e45c1c92066bd8bec7d282 Mon Sep 17 00:00:00 2001 From: Bryan Gin-ge Chen Date: Mon, 12 Oct 2020 00:24:02 +0000 Subject: [PATCH] chore(*): release 3.21.0c (#479) --- README.md | 2 +- doc/changes.md | 14 ++++++++++++++ src/CMakeLists.txt | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5724308185..0c8eecea49 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ About ----- -- **Important**: This is Lean 3.20.0c, a fork of Lean 3 maintained and updated by the Lean community. The last official release of Lean 3.x was Lean 3.4.2, which can be found [here](https://github.com/leanprover/lean). The Lean developers are currently developing [Lean 4](https://github.com/leanprover/lean4). +- **Important**: This is Lean 3.21.0c, a fork of Lean 3 maintained and updated by the Lean community. The last official release of Lean 3.x was Lean 3.4.2, which can be found [here](https://github.com/leanprover/lean). The Lean developers are currently developing [Lean 4](https://github.com/leanprover/lean4). - [Lean Homepage](http://leanprover.github.io) - [Lean Prover Community Homepage](https://leanprover-community.github.io) - [Theorem Proving in Lean](https://leanprover.github.io/theorem_proving_in_lean/index.html) diff --git a/doc/changes.md b/doc/changes.md index ea7bb65e26..96e56b4303 100644 --- a/doc/changes.md +++ b/doc/changes.md @@ -1,3 +1,17 @@ +3.21.0c (12 October 2020) +------------------------- + +Features: +- Simplify definition of `band` and `bor` (#466) +- More advice in docstrings for `Exists`, `not`, `and`, and `or` (#296) + +Bug fixes: +- Fix typo in docstring for `tactic.exact` (#472) +- Fix missing code block in [widget server docs](widget_server.md) (#473) + +Changes: +- Remove global notation for `vector.cons` (#471) + 3.20.0c (9 September 2020) -------------------------- diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 8b27b94701..4132fb9553 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -4,7 +4,7 @@ if ((${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION} GREATER 3.1) OR (${CMAKE_MAJO endif() project(LEAN CXX C) set(LEAN_VERSION_MAJOR 3) -set(LEAN_VERSION_MINOR 20) +set(LEAN_VERSION_MINOR 21) set(LEAN_VERSION_PATCH 0) set(LEAN_VERSION_IS_RELEASE 1) # This number is 1 in the release revision, and 0 otherwise. set(LEAN_SPECIAL_VERSION_DESC "" CACHE STRING "Additional version description like 'nightly-2018-03-11'")