From 94fb397047f34e636bd5ec006adc9281cbe6c87f Mon Sep 17 00:00:00 2001 From: Gabriel Ebner Date: Wed, 29 Jul 2020 10:44:51 +0000 Subject: [PATCH] chore(*): release version 3.18.3 (#421) --- README.md | 2 +- doc/changes.md | 9 +++++++++ src/CMakeLists.txt | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5d5ad4ba70..fc35735354 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ About ----- -- **Important**: This is Lean 3.18.2c, 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.18.3c, 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 e3f7e189f3..873a4cfad8 100644 --- a/doc/changes.md +++ b/doc/changes.md @@ -1,3 +1,12 @@ +3.18.3c (29 July 2020) +---------------------- + +Features: +- Show VM overrides in info request (#417) + +Bug fixes: +- Support `{(1 : α)}` and `{(∘), (∘)}` (#420, fixes #419 and #418) + 3.18.2c (28 July 2020) ---------------------- diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index e40c5b3f96..6e94ee908b 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -5,7 +5,7 @@ endif() project(LEAN CXX C) set(LEAN_VERSION_MAJOR 3) set(LEAN_VERSION_MINOR 18) -set(LEAN_VERSION_PATCH 2) +set(LEAN_VERSION_PATCH 3) 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'") set(LEAN_VERSION_STRING "${LEAN_VERSION_MAJOR}.${LEAN_VERSION_MINOR}.${LEAN_VERSION_PATCH}")