Skip to content
This repository has been archived by the owner on Oct 14, 2023. It is now read-only.

Commit

Permalink
chore(*): release version 3.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Kha committed Apr 28, 2018
1 parent f59c2f0 commit 17fe3de
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ About
- [Theorem Proving in Lean](https://leanprover.github.io/theorem_proving_in_lean/index.html)
- [Change Log](doc/changes.md)
- [FAQ](doc/faq.md)
- **Important**: Lean 3.4.0 is the latest release. It is also the last release for the Lean 3.x code base. Only major bugs (e.g., soundness) will be fixed for this code base from now on.
- **Important**: Lean 3.4 is the latest release. It is also the last release for the Lean 3.x code base. Only major bugs (e.g., soundness) will be fixed for this code base from now on.
We are currently developing Lean 4 in a new (private) repository.
The Lean 4 source code will be released here when ready. The main goals for Lean 4 are described [here](doc/lean4.md).
- For HoTT mode, please use [Lean2](https://github.com/leanprover/lean2).
Expand Down
5 changes: 5 additions & 0 deletions doc/changes.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
v3.4.1 (28 April 2018)
-------------

Bugfix release: Fix a regression concerning type ascriptions in function position

v3.4.0 (16 April 2018)
-------------

Expand Down
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ project(LEAN CXX C)
set(LEAN_VERSION_MAJOR 3)
set(LEAN_VERSION_MINOR 4)
set(LEAN_VERSION_PATCH 1)
set(LEAN_VERSION_IS_RELEASE 0) # This number is 1 in the release revision, and 0 otherwise.
set(LEAN_VERSION_IS_RELEASE 1) # This number is 1 in the release revision, and 0 otherwise.

This comment has been minimized.

Copy link
@gebner

gebner May 18, 2018

Member

@Kha Should we set this number back to 0? Right now, nightly leanpkg tries to check out the lean-3.4.1 branch of mathlib, which fails spectacularly.

This comment has been minimized.

Copy link
@Kha

Kha May 18, 2018

Author Member

Right, I see we produced a nightly after the release.

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}")
if (LEAN_SPECIAL_VERSION_DESC)
Expand Down

1 comment on commit 17fe3de

@kbuzzard
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@digama0 Will there be a lean-3.4.1 branch of mathlib like there's a lean-3.3.0 branch?

[Not that I'm still waiting to do a huge amount of stuff with installing a "release" version of mathlib on all the computers in the maths department at Imperial College and on cocalc and beginning to write my own library for my class next term which will be compatible with this release version or anything...]

Please sign in to comment.