From 101e2ca571cc503bc7ff5d06addeff037b352a96 Mon Sep 17 00:00:00 2001 From: Gabriel Ebner Date: Thu, 25 Jun 2020 12:11:20 +0000 Subject: [PATCH] chore(*): release 3.16.5 (#358) --- README.md | 2 +- doc/changes.md | 15 +++++++++++++++ src/CMakeLists.txt | 2 +- 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f964fe281c..5f0d5f4c94 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ About ----- -- **Important**: This is Lean 3.16.4c, 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.16.5c, 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 f6afa06e09..9fd4374df3 100644 --- a/doc/changes.md +++ b/doc/changes.md @@ -1,3 +1,18 @@ +3.16.5c (25 June 2020) +---------------------- + +Features: +- Add comment-like string blocks (#352) +- Add widgets to trace messages (#355) +- Show case tags in goal widget (#357) + +Bug fixes: +- Handle exceptions in `ts_clone` (#350) +- Support `sorry #` (#356) + +Server protocol changes: +- The (Lean error) messages returned by the server may now contain an additional `"widget"` field. + 3.16.4c (22 June 2020) ---------------------- diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 75e3a8ba1a..e6864b4175 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 16) -set(LEAN_VERSION_PATCH 4) +set(LEAN_VERSION_PATCH 5) 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}")