From 1c49648fc5f9264fe4611e5cb17f287f508bfc60 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Fri, 22 Apr 2022 11:12:34 +0200 Subject: [PATCH] Changes: pre-release housekeeping --- CHANGES-3.2 | 14 ++++++++++++-- CMakeLists.txt | 2 +- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGES-3.2 b/CHANGES-3.2 index ffc8e0010..3171a939a 100644 --- a/CHANGES-3.2 +++ b/CHANGES-3.2 @@ -8,15 +8,25 @@ contributors are listed. Note that Calamares does not have a historical changelog -- this log starts with version 3.2.0. The release notes on the website will have to do for older versions. -# 3.2.56 (unreleased) # +# 3.2.56 (2022-04-22) # + +As of this release, Calamares 3.2 development is winding down. The +reason is simple: systems where the backwards-compatibility of Calamares +3.2 is important are becoming increasingly difficult to work with +for **other** reasons. Foremost among these are deprecated versions +of dependencies and tools. Calamares 3.2 branch remains open for +bugfixes and will see a few more releases, but development is now +shifting wholesale to the newer generation. This release contains contributions from (alphabetically by first name): - Victor Fuentes (new contributor! Welcome!) ## Core ## - - No core changes yet + - Changes in git forced some changes on the CI tooling. ## Modules ## + - *locale* showed the wrong timezone for Dhaka, although it configured + the correct one. #1929 - *users* module sets global storage key *fullname* to the full name of the user (e.g. what is entered in the "your full name" box on the users page). #1923 (Thanks Victor) diff --git a/CMakeLists.txt b/CMakeLists.txt index 472c17fb0..87fec664f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -45,7 +45,7 @@ project( CALAMARES LANGUAGES C CXX ) -set( CALAMARES_VERSION_RC 1 ) # Set to 0 during release cycle, 1 during development +set( CALAMARES_VERSION_RC 0 ) # Set to 0 during release cycle, 1 during development if( CALAMARES_VERSION_RC EQUAL 1 AND CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR ) message( FATAL_ERROR "Do not build development versions in the source-directory." ) endif()