From c2cd092f2b55136bb246a680ea3406db8b71f99f Mon Sep 17 00:00:00 2001 From: Samuel Li Date: Sat, 7 Oct 2023 12:03:25 -0600 Subject: [PATCH] bump version number to 0.7.1 --- CMakeLists.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1792a203..baa8ce42 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.14) -project(SPERR VERSION 0.7.0 DESCRIPTION "Lossy Scientific Compression with SPERR") +project(SPERR VERSION 0.7.1 DESCRIPTION "Lossy Scientific Compression with SPERR") # # specify the C++ standard @@ -12,7 +12,6 @@ project(SPERR VERSION 0.7.0 DESCRIPTION "Lossy Scientific Compression with SPERR set(CMAKE_CXX_STANDARD 20) if(NOT CMAKE_BUILD_TYPE) set(CMAKE_BUILD_TYPE "Release" CACHE STRING "Choose the type of build." FORCE) - # Set the possible values of build type for cmake-gui set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS "Debug" "Release" "RelWithDebInfo") endif()