diff --git a/README.md b/README.md index 85b7add60e..6b9b6a5f48 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ About ----- -- **Important**: This is Lean 3.34.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.35.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 f4034e8cd9..a3754c93d7 100644 --- a/doc/changes.md +++ b/doc/changes.md @@ -1,3 +1,18 @@ +3.35.0c (28 October 2021) +------------------------- + +Features: +- Add `vm_decl.noncomputable_reason` (#638) + +Bug fixes: +- Bugfix AST export (#634) + +Changes: +- Adjust universe levels of coercions to match Lean 4 (#632) +- Reorder sections in `data/nat/lemmas` (#635) +- Remove `library/data/stream` (will be moved to mathlib) (#636) +- Remove `library/data/rbtree` and `library/data/rbmap` (will be moved to mathlib) (#637) + 3.34.0c (20 October 2021) ------------------------- diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index f0efdf4250..addc3dae9e 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 34) +set(LEAN_VERSION_MINOR 35) 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'")