Skip to content

Commit

Permalink
Updating version to 3.25.1
Browse files Browse the repository at this point in the history
  • Loading branch information
hannorein committed Jun 8, 2023
1 parent 2a8f0c0 commit 93592d8
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![Version](https://img.shields.io/badge/rebound-v3.25.0-green.svg?style=flat)](https://rebound.readthedocs.org)
[![Version](https://img.shields.io/badge/rebound-v3.25.1-green.svg?style=flat)](https://rebound.readthedocs.org)
[![PyPI](https://badge.fury.io/py/rebound.svg)](https://badge.fury.io/py/rebound)
[![GPL](https://img.shields.io/badge/license-GPL-green.svg?style=flat)](https://github.com/hannorein/rebound/blob/main/LICENSE)
[![Paper](https://img.shields.io/badge/arXiv-1110.4876-green.svg?style=flat)](https://arxiv.org/abs/1110.4876)
Expand Down
3 changes: 3 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ This changelog only includes the most important changes in recent updates. For a

## Version 3.x

### Version 3.25.1
* Bug fixed that prevented the installation via PyPi

### Version 3.25.0
* MPI parts updated and unit tests added
* Fixed machine independence bug in TES.
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
ghash = subprocess.check_output(["git", "rev-parse", "HEAD"]).decode("ascii")
ghash_arg = "-DGITHASH="+ghash.strip()
except:
ghash_arg = "-DGITHASH=5ae5b8250e83f71dc5f4d1569e2b032114d14939" #GITHASHAUTOUPDATE
ghash_arg = "-DGITHASH=2a8f0c05527e195cc83a1bc8b0a439b0bf2a4192" #GITHASHAUTOUPDATE

extra_link_args=[]
if sys.platform == 'darwin':
Expand Down Expand Up @@ -66,7 +66,7 @@
long_description = f.read()

setup(name='rebound',
version='3.25.0',
version='3.25.1',
description='An open-source multi-purpose N-body code',
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down
2 changes: 1 addition & 1 deletion src/rebound.c
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
const int reb_max_messages_length = 1024; // needs to be constant expression for array size
const int reb_max_messages_N = 10;
const char* reb_build_str = __DATE__ " " __TIME__; // Date and time build string.
const char* reb_version_str = "3.25.0"; // **VERSIONLINE** This line gets updated automatically. Do not edit manually.
const char* reb_version_str = "3.25.1"; // **VERSIONLINE** This line gets updated automatically. Do not edit manually.
const char* reb_githash_str = STRINGIFY(GITHASH); // This line gets updated automatically. Do not edit manually.

static int reb_error_message_waiting(struct reb_simulation* const r);
Expand Down
2 changes: 2 additions & 0 deletions src/tools.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@
#include "tools.h"
#include "tree.h"
#include "boundary.h"
#ifdef MPI
#include "communication_mpi.h"
#endif // MPI
#define MAX(a, b) ((a) > (b) ? (a) : (b)) ///< Returns the maximum of a and b


Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.25.0
3.25.1

0 comments on commit 93592d8

Please sign in to comment.