Skip to content

Commit 7b13739

Browse files
v7.0.1
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
1 parent 80de99b commit 7b13739

10 files changed

Lines changed: 13 additions & 10 deletions

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ Changelog
44
Next
55
====
66

7+
7.0.1 (2026-07-14)
8+
------------------
9+
710
### Screen
811
- Bugfix: Restore TrueColor support on Windows Terminal (default to TrueColor on Windows and check `WT_SESSION` environment variable for WSL compatibility). See #1305.
912
- Feature: Honor the `NO_COLOR` environment variable (https://no-color.org). When set and non-empty, colors degrade to the terminal's default colors.

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ else()
3030
endif()
3131
project(ftxui
3232
LANGUAGES CXX
33-
VERSION 7.0.0
33+
VERSION 7.0.1
3434
DESCRIPTION "C++ Functional Terminal User Interface."
3535
)
3636

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 = "7.0.0",
4+
version = "7.0.1",
55
)
66

77
# Build dependencies.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@ It is **highly** recommended to use CMake FetchContent to depend on FTXUI so you
431431
include(FetchContent)
432432
FetchContent_Declare(ftxui
433433
GIT_REPOSITORY https://github.com/ArthurSonzogni/ftxui
434-
GIT_TAG v7.0.0
434+
GIT_TAG v7.0.1
435435
)
436436
FetchContent_MakeAvailable(ftxui)
437437
@@ -452,7 +452,7 @@ target_link_libraries(your_target PRIVATE
452452
```starlark
453453
bazel_dep(
454454
name = "ftxui",
455-
version = "7.0.0",
455+
version = "7.0.1",
456456
)
457457
```
458458

bazel/test/MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ module(
66
version = "0.0.1",
77
)
88

9-
bazel_dep(name = "ftxui", version = "7.0.0")
9+
bazel_dep(name = "ftxui", version = "7.0.1")
1010
bazel_dep(name = "rules_cc", version = "0.2.17")
1111

1212
local_path_override(

doc/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The most recommended way for CMake users is to use `FetchContent`. Add this to y
2121
include(FetchContent)
2222
FetchContent_Declare(ftxui
2323
GIT_REPOSITORY https://github.com/ArthurSonzogni/ftxui
24-
GIT_TAG main # or a specific version like v7.0.0
24+
GIT_TAG main # or a specific version like v7.0.1
2525
)
2626
FetchContent_MakeAvailable(ftxui)
2727

doc/installation_bazel.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ The library is registered in the [Bazel Central Registry](https://registry.bazel
77

88
**MODULE.bazel**
99
```starlark
10-
bazel_dep(name = "ftxui", version = "7.0.0")
10+
bazel_dep(name = "ftxui", version = "7.0.1")
1111
```
1212

1313
**BUILD.bazel**

doc/installation_cmake.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ include(FetchContent)
1515
1616
FetchContent_Declare(ftxui
1717
GIT_REPOSITORY https://github.com/ArthurSonzogni/FTXUI
18-
GIT_TAG v7.0.0 # Replace with a version, tag, or commit hash
18+
GIT_TAG v7.0.1 # Replace with a version, tag, or commit hash
1919
)
2020
2121
FetchContent_MakeAvailable(ftxui)

doc/installation_meson.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ To use FTXUI in your own Meson project, create a wrap file at `subprojects/ftxui
8888
```ini
8989
[wrap-git]
9090
url = https://github.com/ArthurSonzogni/FTXUI.git
91-
revision = v7.0.0
91+
revision = v7.0.1
9292

9393
[provide]
9494
ftxui-screen = ftxui_screen_dep

doc/installation_vcpkg.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ To use it, you can add the following to your `vcpkg.json`:
1414
"dependencies": [
1515
{
1616
"name": "ftxui",
17-
"version>=": "7.0.0"
17+
"version>=": "7.0.1"
1818
}
1919
]
2020
}

0 commit comments

Comments
 (0)