Skip to content
Snippets Groups Projects
Unverified Commit aa6b78b8 authored by Arthur Sonzogni's avatar Arthur Sonzogni Committed by GitHub
Browse files

Upgrade version to 0.11.1 (#246)

A minor new version. Mostly for packaging the library in Release mode.
parent c0e47aec
No related branches found
No related tags found
No related merge requests found
......@@ -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
----
......
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)
......
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()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment