From 79dda6dbaedccf3f02bc113da0df71ec7cb55d72 Mon Sep 17 00:00:00 2001 From: Pranav Srinivas Kumar Date: Mon, 25 May 2020 10:24:03 -0500 Subject: [PATCH] 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 --- CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c395b7a..965a6ce 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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")