From 512ba2a6e59dd01cfbbbf9d18790c5b86c5ac64a Mon Sep 17 00:00:00 2001 From: Miroslav Stoyanov Date: Fri, 15 Oct 2021 17:38:33 -0400 Subject: [PATCH 1/3] no need to have the version in the readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bb9127593..c5ab47940 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ The Toolkit for Adaptive Stochastic Modeling and Non-Intrusive ApproximatioN is Visit us at: [https://tasmanian.ornl.gov/](https://tasmanian.ornl.gov/) and [https://github.com/ORNL/Tasmanian](https://github.com/ORNL/Tasmanian) -[Documentation: v7.5 (latest stable)](https://ornl.github.io/TASMANIAN/stable/) +[Documentation: Latest Stable](https://ornl.github.io/TASMANIAN/stable/) [Documentation: development (rolling)](https://ornl.github.io/TASMANIAN/) From e89157ec9c27a923526cd5751c782657210a57ef Mon Sep 17 00:00:00 2001 From: Miroslav Stoyanov Date: Sat, 16 Oct 2021 11:42:31 -0400 Subject: [PATCH 2/3] fix GP tables for the gnu build system --- Config/AltBuildSystems/tasgridLogs.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Config/AltBuildSystems/tasgridLogs.hpp b/Config/AltBuildSystems/tasgridLogs.hpp index 0ed491c90..48852cd5d 100644 --- a/Config/AltBuildSystems/tasgridLogs.hpp +++ b/Config/AltBuildSystems/tasgridLogs.hpp @@ -31,8 +31,8 @@ #include #include -#define TasmanianGPTableBuild ./SparseGrids/GaussPattersonRule.table -#define TasmanianGPTableInstall ./SparseGrids/GaussPattersonRule.table +#define TasmanianGPTableBuild "./GaussPattersonRule.table" +#define TasmanianGPTableInstall "./SparseGrids/GaussPattersonRule.table" inline void show_log(){ std::cout << "Logs are not availeble with GNU Make" << std::endl; From c4593d49d00d94f739d50fd484f828483c338e22 Mon Sep 17 00:00:00 2001 From: Miroslav Stoyanov Date: Tue, 19 Oct 2021 16:55:07 -0400 Subject: [PATCH 3/3] mark release 7.7 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9d38b19b1..860846f8c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.10) cmake_policy(VERSION 3.10) project(Tasmanian VERSION 7.7.0 LANGUAGES CXX) -set(Tasmanian_version_comment " (release candidate)") # e.g., " (release candidate)", " (development)", "" +set(Tasmanian_version_comment "") # e.g., " (release candidate)", " (development)", "" set(Tasmanian_license "BSD 3-Clause with UT-Battelle disclaimer") # used in some headers and python modules (only human readable) ########################################################################