Skip to content

Commit 597e6ae

Browse files
authored
Merge pull request #794 from mkstoyanov/version_bump
begin development on version 8.3
2 parents b4b1431 + 3eb9aac commit 597e6ae

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
cmake_minimum_required(VERSION 3.19)
22

33
cmake_policy(VERSION 3.19)
4-
project(Tasmanian VERSION 8.2.0 LANGUAGES CXX)
5-
set(Tasmanian_version_comment "") # e.g., " (release candidate)", " (development)", ""
4+
project(Tasmanian VERSION 8.3.0 LANGUAGES CXX)
5+
set(Tasmanian_version_comment " (development)") # e.g., " (release candidate)", " (development)", ""
66
set(Tasmanian_license "BSD 3-Clause with UT-Battelle disclaimer") # used in some headers and python modules (only human readable)
77

88
include(GNUInstallDirs) # allows management of install paths

Config/AltBuildSystems/TasmanianConfig.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@
3232
#define __TASMANIAN_CONFIG_HPP
3333

3434
#define TASMANIAN_VERSION_MAJOR 8
35-
#define TASMANIAN_VERSION_MINOR 2
36-
#define TASMANIAN_VERSION_STRING "8.2"
35+
#define TASMANIAN_VERSION_MINOR 3
36+
#define TASMANIAN_VERSION_STRING "8.3"
3737
#define TASMANIAN_LICENSE "BSD 3-Clause with UT-Battelle disclaimer"
3838

3939
#define TASMANIAN_GIT_COMMIT_HASH "Tasmanian git hash is not available here"

InterfacePython/PipInstaller/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
# call the actual package setup command
6060
setup(
6161
name='Tasmanian',
62-
version='8.2',
62+
version='8.3b1',
6363
author='Miroslav Stoyanov',
6464
author_email='stoyanovmk@ornl.gov',
6565
description='UQ library for sparse grids, optimization and Bayesian inference',

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ Tasmanian.py: libtasmaniancaddons.so
101101
@echo " -- building the Python module"
102102
cp ./InterfacePython/TasmanianConfig.in.py TasmanianConfig.py
103103
sed -i -e 's|@Tasmanian_VERSION_MAJOR@|'8'|g' ./TasmanianConfig.py
104-
sed -i -e 's|@Tasmanian_VERSION_MINOR@|'2'|g' ./TasmanianConfig.py
104+
sed -i -e 's|@Tasmanian_VERSION_MINOR@|'3'|g' ./TasmanianConfig.py
105105
sed -i -e 's|@Tasmanian_license@|'BSD\ 3-Clause\ with\ UT-Battelle\ disclaimer'|g' ./TasmanianConfig.py
106106
sed -i -e 's|@Tasmanian_git_hash@|'Tasmanian\ git\ hash\ is\ not\ available\ here'|g' ./TasmanianConfig.py
107107
sed -i -e 's|@Tasmanian_libsparsegrid_path@|'`pwd`/libtasmaniansparsegrid.so'|g' ./TasmanianConfig.py

0 commit comments

Comments
 (0)