From cce7990ea86a78bdb383e38ed7f9b5ba93c60ce0 Mon Sep 17 00:00:00 2001 From: Bryan Gin-ge Chen Date: Wed, 24 May 2023 17:58:24 +0000 Subject: [PATCH] chore(*): release 3.51.1 (#809) --- README.md | 2 +- doc/changes.md | 6 ++++++ src/CMakeLists.txt | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0be93b1f7..ff157b188 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ About ----- -- **Important**: This is Lean 3.51.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.51.1c, 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 9a04c4c98..296ff5c14 100644 --- a/doc/changes.md +++ b/doc/changes.md @@ -1,3 +1,9 @@ +3.51.1c (24 May 2023) +--------------------- + +Fixes: +- Fix emscripten build for web editor (#808) + 3.51.0c (17 May 2023) --------------------- diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 44cf1c3d1..bb4fa7514 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 51) -set(LEAN_VERSION_PATCH 0) +set(LEAN_VERSION_PATCH 1) 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}")