Skip to content

Commit 5cfed50

Browse files
v6.1.9
1 parent b307a17 commit 5cfed50

File tree

4 files changed

+15
-11
lines changed

4 files changed

+15
-11
lines changed

CHANGELOG.md

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,20 @@
11
Changelog
22
=========
33

4-
Future release
4+
6.1.9 (2025-05-07)
55
------------
66

7+
### Build
8+
If all goes well (pending), ftxui should appear in the Bazel central repository.
9+
It can be imported into your project using the following lines:
10+
11+
**MODULE.bazel**
12+
```bazel
13+
bazel_dep(name = "ftxui", version = "6.1.9")
14+
```
15+
16+
Thanks @robinlinden and @kcc for the reviews.
17+
718
### dom
819
- Bugfix: Restore the `dbox` behavior from ftxui 5.0.0. To apply bgcolor
920
blending between the two layers, a new `dboxBlend` will be added.
@@ -14,13 +25,6 @@ Future release
1425
### Build
1526
- Feature: Support `bazel` build system. See #1032.
1627
Proposed by Kostya Serebryany @kcc
17-
If all goes well (pending), it should appear in the Bazel central repository.
18-
It can be imported into your project using the following lines:
19-
20-
**MODULE.bazel**
21-
```bazel
22-
bazel_dep(name = "ftxui", version = "6.1.8")
23-
```
2428

2529
**BUILD.bazel**
2630
```bazel

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.12)
22

33
project(ftxui
44
LANGUAGES CXX
5-
VERSION 6.1.8
5+
VERSION 6.1.9
66
DESCRIPTION "C++ Functional Terminal User Interface."
77
)
88

MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# FTXUI module.
22
module(
33
name = "ftxui",
4-
version = "6.1.8",
4+
version = "6.1.9",
55
compatibility_level = 6,
66
)
77

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,7 @@ include(FetchContent)
373373
374374
FetchContent_Declare(ftxui
375375
GIT_REPOSITORY https://github.com/ArthurSonzogni/ftxui
376-
GIT_TAG v6.1.8
376+
GIT_TAG v6.1.9
377377
)
378378
379379
FetchContent_GetProperties(ftxui)

0 commit comments

Comments
 (0)