mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2024-11-22 10:40:00 +08:00
Upgrade version to 0.11.1 (#246)
A minor new version. Mostly for packaging the library in Release mode.
This commit is contained in:
parent
c0e47aecb2
commit
aa6b78b8ad
10
CHANGELOG.md
10
CHANGELOG.md
@ -4,9 +4,15 @@ Changelog
|
||||
unreleased (development)
|
||||
------------------------
|
||||
|
||||
# Bug:
|
||||
- Check the selected element are within bounds for Dropdown.
|
||||
0.11.1
|
||||
------
|
||||
|
||||
# Component
|
||||
- Feature: Support for PageUp/PageDown/Home/End buttons.
|
||||
- Bugfix: Check the selected element are within bounds for Dropdown.
|
||||
|
||||
# Build
|
||||
- Bugfix: Package library using the "Release config". Not debug.
|
||||
|
||||
0.11
|
||||
----
|
||||
|
@ -1,10 +1,8 @@
|
||||
cmake_minimum_required(VERSION 3.11)
|
||||
|
||||
include(cmake/ftxui_git_version.cmake)
|
||||
|
||||
project(ftxui
|
||||
LANGUAGES CXX
|
||||
VERSION 0.11.${git_version}
|
||||
VERSION 0.11.1
|
||||
)
|
||||
|
||||
option(FTXUI_BUILD_DOCS "Set to ON to build tests" ON)
|
||||
|
@ -1,13 +0,0 @@
|
||||
find_package(Git QUIET)
|
||||
if (Git_FOUND AND EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/.git")
|
||||
message("git found")
|
||||
execute_process(
|
||||
COMMAND ${GIT_EXECUTABLE} rev-list --count HEAD
|
||||
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
|
||||
OUTPUT_VARIABLE git_version
|
||||
OUTPUT_STRIP_TRAILING_WHITESPACE
|
||||
)
|
||||
else()
|
||||
set(git_version 0)
|
||||
endif()
|
||||
|
Loading…
Reference in New Issue
Block a user