Skip to content

Commit

Permalink
Updating version to 4.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
hannorein committed Jan 5, 2024
1 parent fb5088a commit a0e9a42
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
@@ -1,4 +1,4 @@
[![Version](https://img.shields.io/badge/rebound-v4.0.2-green.svg?style=flat)](https://rebound.readthedocs.org)
[![Version](https://img.shields.io/badge/rebound-v4.0.3-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
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -18,7 +18,7 @@
ghash = subprocess.check_output(["git", "rev-parse", "HEAD"]).decode("ascii")
ghash_arg = "-DGITHASH="+ghash.strip()
except:
ghash_arg = "-DGITHASH=8532f9cf49eff9758bf6ed829201a2308e3b2100" #GITHASHAUTOUPDATE
ghash_arg = "-DGITHASH=fb5088af9c5867f720815c4ac42b2d674f6a311b" #GITHASHAUTOUPDATE

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

setup(name='rebound',
version='4.0.2',
version='4.0.3',
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
Expand Up @@ -66,7 +66,7 @@ void usleep(__int64 usec);
const int reb_max_messages_length = 1024; // needs to be constant expression for array size
const int reb_N_max_messages = 10;
const char* reb_build_str = __DATE__ " " __TIME__; // Date and time build string.
const char* reb_version_str = "4.0.2"; // **VERSIONLINE** This line gets updated automatically. Do not edit manually.
const char* reb_version_str = "4.0.3"; // **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_simulation_error_message_waiting(struct reb_simulation* const r);
Expand Down
2 changes: 1 addition & 1 deletion version.txt
@@ -1 +1 @@
4.0.2
4.0.3
2 changes: 1 addition & 1 deletion web_client/shell_rebound.html
Expand Up @@ -135,7 +135,7 @@
<div id="overlay" onclick="document.getElementById('overlay-toggle').innerHTML='1'; console.log('no');">
<div id="overlaytext">
<div class="reboundlogo"></div>
REBOUND v4.0.2 <!-- VERSIONLINE -->
REBOUND v4.0.3 <!-- VERSIONLINE -->
</div>
</div>
<div id="overlay-help">
Expand Down
2 changes: 1 addition & 1 deletion web_client/shell_rebound_console.html
Expand Up @@ -117,7 +117,7 @@
<div id="overlay" onclick="document.getElementById('overlay-toggle').innerHTML='1'; console.log('no');">
<div id="overlaytext">
<div class="reboundlogo"></div>
REBOUND v4.0.2 <!-- VERSIONLINE -->
REBOUND v4.0.3 <!-- VERSIONLINE -->
</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion web_client/shell_rebound_webgl.html
Expand Up @@ -135,7 +135,7 @@
<div id="overlay" onclick="document.getElementById('overlay-toggle').innerHTML='1'; console.log('no');">
<div id="overlaytext">
<div class="reboundlogo"></div>
REBOUND v4.0.2 <!-- VERSIONLINE -->
REBOUND v4.0.3 <!-- VERSIONLINE -->
</div>
</div>
<div id="overlay-help">
Expand Down

0 comments on commit a0e9a42

Please sign in to comment.