Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ Changelog
Next
====

7.0.0 (2026-06-13)
------------------

### Doc
- Fix broken Doxygen output. See @markmandel in #1029.
- Use Doxygen awesome. Add our own theme.
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ else()
endif()
project(ftxui
LANGUAGES CXX
VERSION 6.2.0
VERSION 7.0.0
DESCRIPTION "C++ Functional Terminal User Interface."
)

Expand Down
2 changes: 1 addition & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# FTXUI module.
module(
name = "ftxui",
version = "6.1.9",
version = "7.0.0",
)

# Build dependencies.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ It is **highly** recommended to use CMake FetchContent to depend on FTXUI so you
include(FetchContent)
FetchContent_Declare(ftxui
GIT_REPOSITORY https://github.com/ArthurSonzogni/ftxui
GIT_TAG v6.1.9
GIT_TAG v7.0.0
)
FetchContent_MakeAvailable(ftxui)

Expand All @@ -451,7 +451,7 @@ target_link_libraries(your_target PRIVATE
```starlark
bazel_dep(
name = "ftxui",
version = "v6.1.9",
version = "7.0.0",
)
```

Expand Down
2 changes: 1 addition & 1 deletion bazel/test/MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ module(
version = "0.0.1",
)

bazel_dep(name = "ftxui", version = "6.1.9")
bazel_dep(name = "ftxui", version = "7.0.0")
bazel_dep(name = "rules_cc", version = "0.2.17")

local_path_override(
Expand Down
2 changes: 1 addition & 1 deletion doc/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ The most recommended way for CMake users is to use `FetchContent`. Add this to y
include(FetchContent)
FetchContent_Declare(ftxui
GIT_REPOSITORY https://github.com/ArthurSonzogni/ftxui
GIT_TAG main # or a specific version like v6.1.9
GIT_TAG main # or a specific version like v7.0.0
)
FetchContent_MakeAvailable(ftxui)

Expand Down
2 changes: 1 addition & 1 deletion doc/installation_bazel.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ The library is registered in the [Bazel Central Registry](https://registry.bazel

**MODULE.bazel**
```starlark
bazel_dep(name = "ftxui", version = "6.1.9")
bazel_dep(name = "ftxui", version = "7.0.0")
```

**BUILD.bazel**
Expand Down
2 changes: 1 addition & 1 deletion doc/installation_cmake.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ include(FetchContent)

FetchContent_Declare(ftxui
GIT_REPOSITORY https://github.com/ArthurSonzogni/FTXUI
GIT_TAG v6.1.9 # Replace with a version, tag, or commit hash
GIT_TAG v7.0.0 # Replace with a version, tag, or commit hash
)

FetchContent_MakeAvailable(ftxui)
Expand Down
2 changes: 1 addition & 1 deletion doc/installation_meson.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ To use FTXUI in your own Meson project, create a wrap file at `subprojects/ftxui
```ini
[wrap-git]
url = https://github.com/ArthurSonzogni/FTXUI.git
revision = v6.1.9
revision = v7.0.0

[provide]
ftxui-screen = ftxui_screen_dep
Expand Down
2 changes: 1 addition & 1 deletion doc/installation_vcpkg.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ To use it, you can add the following to your `vcpkg.json`:
"dependencies": [
{
"name": "ftxui",
"version>=": "6.1.9"
"version>=": "7.0.0"
}
]
}
Expand Down
2 changes: 1 addition & 1 deletion tools/abi_fingerprint.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
b8691b2c4c9da98a058a21e6d3fdf65a32bc37dfc61832c34a6583e304de1b8b
d0578d99d54909d813dd510a85d45a4a1c1f0d7e8f179b0eac88c644218de938
Loading