Skip to content

Commit

Permalink
compartment check added, ticking up version
Browse files Browse the repository at this point in the history
  • Loading branch information
ASinanSaglam committed Apr 25, 2022
1 parent a8d6e93 commit 3a1855c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# NFsim - the network free stochastic simulator, v1.2.1
# NFsim - the network free stochastic simulator, v1.2.2

[![NFsim build status](https://github.com/RuleWorld/nfsim/workflows/main-validation/badge.svg)](https://github.com/RuleWorld/nfsim/actions)
<a href="https://scan.coverity.com/projects/nfsim">
Expand Down Expand Up @@ -96,6 +96,12 @@ stable. Use at your own risk.

## Release Notes

### v1.2.2 April, 2022

(a) Bugfix: Disabled maxcputime option
(b) Bugfix: NFsim now checks for compartments and quits if it finds a compartments block
(c) Bugifx: Leftover debug statement was removed.

### v1.2.1 Feb, 2022

(a) Bugfix release. An accidentally leftover debug statement was removed.
Expand Down
4 changes: 2 additions & 2 deletions dist/changeFilename.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
import platform
import os

version = '1.2.1'
version = '1.2.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)
print('moving NFSIm to {0}\n'.format(destdir))
if platform.system() != 'Windows':
shutil.move('NFsim', os.path.join(destdir, 'NFsim'))
else:
Expand Down
2 changes: 1 addition & 1 deletion src/NFsim.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ int main(int argc, char *argv[])
// turned off for the general release code.
//if (!schedulerInterpreter(&argc, &argv)) return 0;

string versionNumber = "1.2.1";
string versionNumber = "1.2.2";
cout<<"starting NFsim v"+versionNumber+"..."<<endl<<endl;
clock_t start,finish;
double time;
Expand Down

0 comments on commit 3a1855c

Please sign in to comment.