Skip to content

Commit

Permalink
version bump for development
Browse files Browse the repository at this point in the history
  • Loading branch information
mkstoyanov committed Oct 21, 2024
1 parent 8604656 commit 24f18c8
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Changelog for version 8.2
--------------

* begin work on the next version

Changelog for version 8.1
--------------

Expand Down
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
cmake_minimum_required(VERSION 3.19)

cmake_policy(VERSION 3.19)
project(Tasmanian VERSION 8.1.0 LANGUAGES CXX)
set(Tasmanian_version_comment "") # e.g., " (release candidate)", " (development)", ""
project(Tasmanian VERSION 8.2.0 LANGUAGES CXX)
set(Tasmanian_version_comment " (development)") # 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)

########################################################################
Expand Down
2 changes: 1 addition & 1 deletion InterfacePython/PipInstaller/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
# call the actual package setup command
setup(
name='Tasmanian',
version='8.1',
version='8.2b1',
author='Miroslav Stoyanov',
author_email='[email protected]',
description='UQ library for sparse grids, optimization and Bayesian inference',
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ Tasmanian.py: libtasmaniancaddons.so
@echo " -- building the Python module"
cp ./InterfacePython/TasmanianConfig.in.py TasmanianConfig.py
sed -i -e 's|@Tasmanian_VERSION_MAJOR@|'8'|g' ./TasmanianConfig.py
sed -i -e 's|@Tasmanian_VERSION_MINOR@|'1'|g' ./TasmanianConfig.py
sed -i -e 's|@Tasmanian_VERSION_MINOR@|'2'|g' ./TasmanianConfig.py
sed -i -e 's|@Tasmanian_license@|'BSD\ 3-Clause\ with\ UT-Battelle\ disclaimer'|g' ./TasmanianConfig.py
sed -i -e 's|@Tasmanian_git_hash@|'Tasmanian\ git\ hash\ is\ not\ available\ here'|g' ./TasmanianConfig.py
sed -i -e 's|@Tasmanian_libsparsegrid_path@|'`pwd`/libtasmaniansparsegrid.so'|g' ./TasmanianConfig.py
Expand Down

0 comments on commit 24f18c8

Please sign in to comment.