From 5c70e5d8459ae445c237d85893e2e7280e226533 Mon Sep 17 00:00:00 2001 From: Kim Morrison Date: Thu, 31 Oct 2024 10:48:02 +1100 Subject: [PATCH] chore: (belatedly) begin development cycle for v4.14.0 (#5889) This hasn't affected release candidates or stables, but I realised that I haven't been updating `LEAN_VERSION_MINOR` on `master` the last two months, so it still says v4.12.0. This advances it to v4.14.0. --- src/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 56b9bf8bd4..1ddb9907d8 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -10,7 +10,7 @@ endif() include(ExternalProject) project(LEAN CXX C) set(LEAN_VERSION_MAJOR 4) -set(LEAN_VERSION_MINOR 12) +set(LEAN_VERSION_MINOR 14) set(LEAN_VERSION_PATCH 0) set(LEAN_VERSION_IS_RELEASE 0) # 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'")