diff --git a/CHANGELOG.md b/CHANGELOG.md index bd8f86d82..d193851f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +# 2.64.1 + +Features: +* Adds a CMake option `-DPACKAGES_REMOVE_DISABLED` to remove detection code of disabled packages (`-DPACKAGES_DISABLE_`) for slightly smaller binary size (Packages) + +Bugfixes: +* Fixes compatibility issues with Lua 5.3 +* Avoid possible infinite recursion in `encode_json` when encoding deeply nested tables or circular references +* Fixes compilation issues when building with old macOS SDKs + # 2.64.0 New **optional build** dependencies: diff --git a/CMakeLists.txt b/CMakeLists.txt index ccec470ae..56dafd95f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.12.0) # target_link_libraries with OBJECT libs & project homepage url project(fastfetch - VERSION 2.64.0 + VERSION 2.64.1 LANGUAGES C DESCRIPTION "Fast neofetch-like system information tool" HOMEPAGE_URL "https://github.com/fastfetch-cli/fastfetch"