From dcccfb73cb247e9478220375ab7de03f7c67e505 Mon Sep 17 00:00:00 2001 From: Scott Morrison Date: Fri, 3 May 2024 12:55:34 +1000 Subject: [PATCH] chore: set release flag --- RELEASES.md | 2 +- src/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/RELEASES.md b/RELEASES.md index e9671edd3f3d..61358334337b 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -8,7 +8,7 @@ This file contains work-in-progress notes for the upcoming release, as well as p Please check the [releases](https://github.com/leanprover/lean4/releases) page for the current status of each version. -v4.8.0 (development in progress) +v4.8.0 --------- * **Executables configured with `supportInterpreter := true` on Windows should now be run via `lake exe` to function properly.** diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 364a543aeb5d..4ef993371a89 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -11,7 +11,7 @@ project(LEAN CXX C) set(LEAN_VERSION_MAJOR 4) set(LEAN_VERSION_MINOR 8) set(LEAN_VERSION_PATCH 0) -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. 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)