diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f5e22fa..d9b694ad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,20 @@ Changelog ========= -Future release +6.1.9 (2025-05-07) ------------ +### Build +If all goes well (pending), ftxui should appear in the Bazel central repository. +It can be imported into your project using the following lines: + +**MODULE.bazel** +```bazel +bazel_dep(name = "ftxui", version = "6.1.9") +``` + +Thanks @robinlinden and @kcc for the reviews. + ### dom - Bugfix: Restore the `dbox` behavior from ftxui 5.0.0. To apply bgcolor blending between the two layers, a new `dboxBlend` will be added. @@ -14,13 +25,6 @@ Future release ### Build - Feature: Support `bazel` build system. See #1032. Proposed by Kostya Serebryany @kcc - If all goes well (pending), it should appear in the Bazel central repository. - It can be imported into your project using the following lines: - - **MODULE.bazel** - ```bazel - bazel_dep(name = "ftxui", version = "6.1.8") - ``` **BUILD.bazel** ```bazel diff --git a/CMakeLists.txt b/CMakeLists.txt index 907d99b2..7ff6c8eb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.12) project(ftxui LANGUAGES CXX - VERSION 6.1.8 + VERSION 6.1.9 DESCRIPTION "C++ Functional Terminal User Interface." ) diff --git a/MODULE.bazel b/MODULE.bazel index b00e258c..582387ae 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -1,7 +1,7 @@ # FTXUI module. module( name = "ftxui", - version = "6.1.8", + version = "6.1.9", compatibility_level = 6, ) diff --git a/README.md b/README.md index e7a1b609..19abcb63 100644 --- a/README.md +++ b/README.md @@ -373,7 +373,7 @@ include(FetchContent) FetchContent_Declare(ftxui GIT_REPOSITORY https://github.com/ArthurSonzogni/ftxui - GIT_TAG v6.1.8 + GIT_TAG v6.1.9 ) FetchContent_GetProperties(ftxui)