From 0790b4a75d19363922f5dfef9e0b9ddc5a209063 Mon Sep 17 00:00:00 2001 From: mr2cents Date: Fri, 24 May 2024 11:03:34 -0400 Subject: [PATCH] Updating hardcoded version numbers and README --- README.md | 9 +++++++++ dist/changeFilename.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 51484c3b..192f3268 100644 --- a/README.md +++ b/README.md @@ -85,6 +85,15 @@ executable, you'll need to copy the the following DLLs along with it: ## Release Notes +### v1.14.2 May, 2024 + +(a) Bugfix: Fixed a segmentation fault resulting from having a species start with zero concentration. Two simple models were added to the validation process to catch this error. +(b) Changes to the validation process were made. Previously, 15 trajectories would be generated for each model before testing the differences of NFsim and SSA versus NFsim and ODE. Now only one trajectory would be tested and more would generate upon faliure until a model failed 15 times in a row. + +### v1.14.1 May, 2023 + +(a) Bugfix: Added a missing "\[" when no operations are present + ### v1.14.0 February, 2023 Relabeling the version number to follow previous scheme to avoid further confusion. diff --git a/dist/changeFilename.py b/dist/changeFilename.py index 4776f3f5..7c9e4c2e 100644 --- a/dist/changeFilename.py +++ b/dist/changeFilename.py @@ -2,7 +2,7 @@ import platform import os -version = '1.14.0' +version = '1.14.2' destdir = os.path.join(version, '{0}-{1}'.format(platform.system(), platform.architecture()[0])) os.makedirs(destdir) print('moving NFSIm to {0}\n'.format(destdir))