Skip to content

Commit

Permalink
Merge pull request #79 from pynbody/bug-append-id
Browse files Browse the repository at this point in the history
Version number -> 1.1.1
  • Loading branch information
apontzen authored Oct 24, 2020
2 parents ded95f2 + c88deef commit c3f38ef
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ GenetIC is a code to generate initial conditions for cosmological simulations, e
* The main code is written in C++ and can be found (with build instructions and a test suite) in the subfolder `genetIC`.
* The code is also available as [docker](http://docker.io) image `apontzen/genetic` (see the user manual for further information)
* A set of python tools for development and testing is provided in `tools`.
* If you wish to use the code for science, we recommend adopting a particular version. The current release is v1.1.0 and can be downloaded at https://github.com/pynbody/genetIC/releases/tag/v1.1.0
* Documentation can be found in the form of a PDF user manual, also at https://github.com/pynbody/genetIC/releases/tag/v1.1.0
* If you wish to use the code for science, we recommend adopting a particular version. The current release is v1.1.1 and can be downloaded at https://github.com/pynbody/genetIC/releases/tag/v1.1.1
* Documentation can be found in the form of a PDF user manual, also at https://github.com/pynbody/genetIC/releases/tag/v1.1.1
* The technical underpinnings of the code are described in a release paper at https://arxiv.org/abs/2006.01841

License and acknowledgement policy
Expand Down
2 changes: 1 addition & 1 deletion genetIC/src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ void setup_parser(tools::ClassDispatch<ICf, void> &dispatch) {
}

void header(ostream &outf, std::string prefix="") {
outf << prefix << "genetIC v1.1.0, compiled: " << __DATE__ << ", " << __TIME__ << endl;
outf << prefix << "genetIC v1.1.1, compiled: " << __DATE__ << ", " << __TIME__ << endl;
time_t now = time(0);
struct tm tstruct;
char buf[80];
Expand Down

0 comments on commit c3f38ef

Please sign in to comment.