Skip to content

Commit

Permalink
Updating version to 4.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
hannorein committed Jul 15, 2024
1 parent bbe22f9 commit d055f4b
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 8 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-v4.4.1-green.svg?style=flat)](https://rebound.readthedocs.org)
[![Version](https://img.shields.io/badge/rebound-v4.4.2-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
6 changes: 6 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ This changelog only includes the most important changes in recent updates. For a

## Version 4.x

### Version 4.4.2
* Fixed bug in TRACE when adding particles.
* Added WHFast fallback for synchronizing WHFast512 simulations with `N_systems` > 1.
* Output version number used to create Simulationarchive if there is a version mismatch.
* Added C example `simulationarchive_fields` which outputs all fields in a simulationarchive for debugging purposes.

### Version 4.4.1
* Fixed bug in TRACE for FULL PERI modes.

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
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=c37b61b309d5e937af93fb885afb78a6d8b48c8f" #GITHASHAUTOUPDATE
ghash_arg = "-DGITHASH=bbe22f90e0bc18d2ac5802235f452d8441814687" #GITHASHAUTOUPDATE

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

setup(name='rebound',
version='4.4.1',
version='4.4.2',
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 @@ -69,7 +69,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.4.1"; // **VERSIONLINE** This line gets updated automatically. Do not edit manually.
const char* reb_version_str = "4.4.2"; // **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
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.4.1
4.4.2
2 changes: 1 addition & 1 deletion web_client/shell_rebound.html
Original file line number Diff line number Diff line change
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.4.1 <!-- VERSIONLINE -->
REBOUND v4.4.2 <!-- VERSIONLINE -->
</div>
</div>
<div id="overlay-help">
Expand Down
2 changes: 1 addition & 1 deletion web_client/shell_rebound_console.html
Original file line number Diff line number Diff line change
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.4.1 <!-- VERSIONLINE -->
REBOUND v4.4.2 <!-- VERSIONLINE -->
</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion web_client/shell_rebound_webgl.html
Original file line number Diff line number Diff line change
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.4.1 <!-- VERSIONLINE -->
REBOUND v4.4.2 <!-- VERSIONLINE -->
</div>
</div>
<div id="overlay-help">
Expand Down

0 comments on commit d055f4b

Please sign in to comment.