This commit is contained in:
Arthur Sonzogni 2025-05-01 10:01:05 +02:00 committed by GitHub
parent aa80d8bac9
commit 2d4c114008
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 6 additions and 6 deletions

View File

@ -4,8 +4,8 @@ Changelog
Future release Future release
------------ ------------
6.1.1 (2025-04-30) 6.1.2 (2025-05-01)
----------------- ------------------
### Build ### Build
- Feature: Support `bazel` build system. See #1032. - Feature: Support `bazel` build system. See #1032.
@ -15,7 +15,7 @@ Future release
**MODULE.bazel** **MODULE.bazel**
```bazel ```bazel
bazel_dep(name = "ftxui", version = "6.1.1") bazel_dep(name = "ftxui", version = "6.1.2")
``` ```
**BUILD.bazel** **BUILD.bazel**

View File

@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.12)
project(ftxui project(ftxui
LANGUAGES CXX LANGUAGES CXX
VERSION 6.1.1 VERSION 6.1.2
DESCRIPTION "C++ Functional Terminal User Interface." DESCRIPTION "C++ Functional Terminal User Interface."
) )

View File

@ -3,7 +3,7 @@
# the LICENSE file. # the LICENSE file.
# FTXUI Module. # FTXUI Module.
module(name = "ftxui", version = "6.1.1") module(name = "ftxui", version = "6.1.2")
# Build deps. # Build deps.
bazel_dep(name = "rules_cc", version = "0.1.1") bazel_dep(name = "rules_cc", version = "0.1.1")

View File

@ -372,7 +372,7 @@ include(FetchContent)
FetchContent_Declare(ftxui FetchContent_Declare(ftxui
GIT_REPOSITORY https://github.com/ArthurSonzogni/ftxui GIT_REPOSITORY https://github.com/ArthurSonzogni/ftxui
GIT_TAG v6.1.1 GIT_TAG v6.1.2
) )
FetchContent_GetProperties(ftxui) FetchContent_GetProperties(ftxui)