From ee24bec3bad9bebd7c6b707f655836f5f12c3595 Mon Sep 17 00:00:00 2001 From: ArthurSonzogni Date: Fri, 28 Mar 2025 12:08:59 +0100 Subject: [PATCH] v6.0.1 Same as v6.0.0. Due to a problem tag v6.0.0 was replaced. This isn't a good practice and affect developers that started using it in the short timeframe. Submitting a new release with the same content is the best way to fix this. Bug:https://github.com/ArthurSonzogni/FTXUI/issues/1017 Bug:https://github.com/ArthurSonzogni/FTXUI/issues/1019 --- CHANGELOG.md | 16 ++++++++++++++-- CMakeLists.txt | 2 +- README.md | 2 +- 3 files changed, 16 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f9ef055e..f59e13ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,16 @@ Changelog ========= -current (development) ---------------------- +6.0.1 (2025-03-28) +----- + +Same as v6.0.0. + +Due to a problem tag v6.0.0 was replaced. This isn't a good practice and affect +developers that started using it in the short timeframe. Submitting a new +release with the same content is the best way to fix this. + +See #1017 and #1019. 6.0.0 (2025-03-23) ----- @@ -74,6 +82,10 @@ current (development) - See `selectionStyleReset` decorator. - Breaking change: Change how "focus"/"select" are handled. This fixes the behavior. +- Breaking change: `Component::OnRender()` becomes the method to override to + render a component. This replaces `Component::Render()` that is still in use + to call the rendering method on the children. This change allows to fix a + couple of issues around focus handling. ### Screen - Feature: Add `Box::IsEmpty()`. diff --git a/CMakeLists.txt b/CMakeLists.txt index 5adbadf9..b10e4775 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.12) project(ftxui LANGUAGES CXX - VERSION 6.0.0 + VERSION 6.0.1 DESCRIPTION "C++ Functional Terminal User Interface." ) diff --git a/README.md b/README.md index 03c52e2f..f9d43e71 100644 --- a/README.md +++ b/README.md @@ -372,7 +372,7 @@ include(FetchContent) FetchContent_Declare(ftxui GIT_REPOSITORY https://github.com/ArthurSonzogni/ftxui - GIT_TAG v6.0.0 + GIT_TAG v6.0.1 ) FetchContent_GetProperties(ftxui)