From ffe5a176d915a3a9657b2c7f5cdd6985756ecbcd Mon Sep 17 00:00:00 2001 From: Gabriel Ebner Date: Thu, 15 Dec 2022 00:38:34 +0000 Subject: [PATCH] chore(*): release 3.50.0 (#793) --- README.md | 2 +- doc/changes.md | 13 +++++++++++++ src/CMakeLists.txt | 4 ++-- 3 files changed, 16 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6c248e22a..b3d64a07f 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ About ----- -- **Important**: This is Lean 3.49.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). +- **Important**: This is Lean 3.50.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 c83d80964..c96731e31 100644 --- a/doc/changes.md +++ b/doc/changes.md @@ -1,3 +1,16 @@ +3.50.0c (12 December 2022) +-------------------------- + +Fixes: +- Push null `using_well_founded` AST node after `:=` (#787) +- Use Ubuntu 20.04 for CI (#792) + +Features: +- Export user attribute data in tlean files (#790) + +Changes: +- Put auto-bound universes before explicit (#788) + 3.49.1c (18 November 2022) -------------------------- diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index bd8f55bc6..a1e957679 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -4,8 +4,8 @@ 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 49) -set(LEAN_VERSION_PATCH 1) +set(LEAN_VERSION_MINOR 50) +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'") set(LEAN_VERSION_STRING "${LEAN_VERSION_MAJOR}.${LEAN_VERSION_MINOR}.${LEAN_VERSION_PATCH}")