diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 31900a99..3dc6bce2 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -17,7 +17,6 @@ on: secrets: PUBLISH_TOKEN: required: true - type: string jobs: publish: diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c791b21..b235644f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ Changelog Future release ------------ -6.1.2 (2025-05-01) +6.1.3 (2025-05-01) ------------------ ### Build @@ -15,7 +15,7 @@ Future release **MODULE.bazel** ```bazel - bazel_dep(name = "ftxui", version = "6.1.2") + bazel_dep(name = "ftxui", version = "6.1.3") ``` **BUILD.bazel** diff --git a/CMakeLists.txt b/CMakeLists.txt index 6e960a52..d15f5878 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.12) project(ftxui LANGUAGES CXX - VERSION 6.1.2 + VERSION 6.1.3 DESCRIPTION "C++ Functional Terminal User Interface." ) diff --git a/MODULE.bazel b/MODULE.bazel index c70c9f9a..b5c6807c 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -3,7 +3,7 @@ # the LICENSE file. # FTXUI Module. -module(name = "ftxui", version = "6.1.2") +module(name = "ftxui", version = "6.1.3") # Build deps. bazel_dep(name = "rules_cc", version = "0.1.1") diff --git a/README.md b/README.md index ebeecd8b..f618ddc3 100644 --- a/README.md +++ b/README.md @@ -372,7 +372,7 @@ include(FetchContent) FetchContent_Declare(ftxui GIT_REPOSITORY https://github.com/ArthurSonzogni/ftxui - GIT_TAG v6.1.2 + GIT_TAG v6.1.3 ) FetchContent_GetProperties(ftxui)