Bumped version to v1.9

* Fixed build issues in g++ caused by missing header #54
* Using terminal width to fill the remainder of the progress bar with empty spaces #56
* Previously this was hard-coded to 10 spaces
* Fixed multiple definitions in helper functions, e.g., cursor control #58
* Implemented option::ProgressType which can be incremental or decremental - Provides an easy interface to implement decremental progress (a regressing bar) #59
* Updated to latest version of termcolor #60
This commit is contained in:
Pranav Srinivas Kumar
2020-05-25 10:24:03 -05:00
parent be24a3ab48
commit 79dda6dbae

View File

@@ -5,14 +5,14 @@ if(DEFINED PROJECT_NAME)
endif()
if(CMAKE_VERSION VERSION_GREATER_EQUAL "3.12")
project(indicators VERSION 1.8.0 LANGUAGES CXX
project(indicators VERSION 1.9.0 LANGUAGES CXX
HOMEPAGE_URL "https://github.com/p-ranav/indicators"
DESCRIPTION "Activity Indicators for Modern C++")
elseif(CMAKE_VERSION VERSION_GREATER_EQUAL "3.9")
project(indicators VERSION 1.8.0 LANGUAGES CXX
project(indicators VERSION 1.9.0 LANGUAGES CXX
DESCRIPTION "Activity Indicators for Modern C++")
else()
project(indicators VERSION 1.8.0 LANGUAGES CXX)
project(indicators VERSION 1.9.0 LANGUAGES CXX)
endif()
if(EXISTS "${CMAKE_BINARY_DIR}/conanbuildinfo.cmake")