Skip to content

Commit d5ac58c

Browse files
v7.0.0 (#1291)
1 parent 63a9f23 commit d5ac58c

11 files changed

Lines changed: 14 additions & 11 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.0 (2026-06-13)
8+
------------------
9+
710
### Doc
811
- Fix broken Doxygen output. See @markmandel in #1029.
912
- Use Doxygen awesome. Add our own theme.

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 6.2.0
33+
VERSION 7.0.0
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 = "6.1.9",
4+
version = "7.0.0",
55
)
66

77
# Build dependencies.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ It is **highly** recommended to use CMake FetchContent to depend on FTXUI so you
430430
include(FetchContent)
431431
FetchContent_Declare(ftxui
432432
GIT_REPOSITORY https://github.com/ArthurSonzogni/ftxui
433-
GIT_TAG v6.1.9
433+
GIT_TAG v7.0.0
434434
)
435435
FetchContent_MakeAvailable(ftxui)
436436
@@ -451,7 +451,7 @@ target_link_libraries(your_target PRIVATE
451451
```starlark
452452
bazel_dep(
453453
name = "ftxui",
454-
version = "v6.1.9",
454+
version = "7.0.0",
455455
)
456456
```
457457

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 = "6.1.9")
9+
bazel_dep(name = "ftxui", version = "7.0.0")
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 v6.1.9
24+
GIT_TAG main # or a specific version like v7.0.0
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 = "6.1.9")
10+
bazel_dep(name = "ftxui", version = "7.0.0")
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 v6.1.9 # Replace with a version, tag, or commit hash
18+
GIT_TAG v7.0.0 # 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 = v6.1.9
91+
revision = v7.0.0
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>=": "6.1.9"
17+
"version>=": "7.0.0"
1818
}
1919
]
2020
}

0 commit comments

Comments
 (0)