Skip to content

Commit 81b669a

Browse files
committed
Updating version to 4.4.6
1 parent be46545 commit 81b669a

File tree

8 files changed

+13
-8
lines changed

8 files changed

+13
-8
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![Version](https://img.shields.io/badge/rebound-v4.4.5-green.svg?style=flat)](https://rebound.readthedocs.org)
1+
[![Version](https://img.shields.io/badge/rebound-v4.4.6-green.svg?style=flat)](https://rebound.readthedocs.org)
22
[![PyPI](https://badge.fury.io/py/rebound.svg)](https://badge.fury.io/py/rebound)
33
[![GPL](https://img.shields.io/badge/license-GPL-green.svg?style=flat)](https://github.com/hannorein/rebound/blob/main/LICENSE)
44
[![Paper](https://img.shields.io/badge/arXiv-1110.4876-green.svg?style=flat)](https://arxiv.org/abs/1110.4876)

changelog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ This changelog only includes the most important changes in recent updates. For a
44

55
## Version 4.x
66

7+
### Version 4.4.6
8+
* When initializing particles with "uniform" in python, REBOUND now uses its own `reb_random_uniform()` function. This avoids importing the "random" library and makes results reproducible as the random seed of the simulation is used when generating random numbers.
9+
* More cracefull interrupt handling. REBOUND now stop the integration after the next timestep when CTRL-C is pressed the first time. If CTRL-C s pressed twice, then long loops (during gravity, collision calculations) are terminated immediately. Continuing an integration after one CTRL-C press should be easier with this change as the simulation does not get corrupted.
10+
* Fixed typos in documentation.
11+
712
### Version 4.4.5
813
* Version updated to test github workflows
914

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
ghash = subprocess.check_output(["git", "rev-parse", "HEAD"]).decode("ascii")
1919
ghash_arg = "-DGITHASH="+ghash.strip()
2020
except:
21-
ghash_arg = "-DGITHASH=5d649b9125ed899b4cb25025712c3edf22be76a0" #GITHASHAUTOUPDATE
21+
ghash_arg = "-DGITHASH=be4654593929232c50cce49e27913af43a9db2b8" #GITHASHAUTOUPDATE
2222

2323
extra_link_args=[]
2424
if sys.platform == 'darwin':
@@ -84,7 +84,7 @@
8484
long_description = f.read()
8585

8686
setup(name='rebound',
87-
version='4.4.5',
87+
version='4.4.6',
8888
description='An open-source multi-purpose N-body code',
8989
long_description=long_description,
9090
long_description_content_type="text/markdown",

src/rebound.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ void usleep(__int64 usec);
6969
const int reb_max_messages_length = 1024; // needs to be constant expression for array size
7070
const int reb_N_max_messages = 10;
7171
const char* reb_build_str = __DATE__ " " __TIME__; // Date and time build string.
72-
const char* reb_version_str = "4.4.5"; // **VERSIONLINE** This line gets updated automatically. Do not edit manually.
72+
const char* reb_version_str = "4.4.6"; // **VERSIONLINE** This line gets updated automatically. Do not edit manually.
7373
const char* reb_githash_str = STRINGIFY(GITHASH); // This line gets updated automatically. Do not edit manually.
7474

7575
static int reb_simulation_error_message_waiting(struct reb_simulation* const r);

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.4.5
1+
4.4.6

web_client/shell_rebound.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@
135135
<div id="overlay" onclick="document.getElementById('overlay-toggle').innerHTML='1'; console.log('no');">
136136
<div id="overlaytext">
137137
<div class="reboundlogo"></div>
138-
REBOUND v4.4.5 <!-- VERSIONLINE -->
138+
REBOUND v4.4.6 <!-- VERSIONLINE -->
139139
</div>
140140
</div>
141141
<div id="overlay-help">

web_client/shell_rebound_console.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@
117117
<div id="overlay" onclick="document.getElementById('overlay-toggle').innerHTML='1'; console.log('no');">
118118
<div id="overlaytext">
119119
<div class="reboundlogo"></div>
120-
REBOUND v4.4.5 <!-- VERSIONLINE -->
120+
REBOUND v4.4.6 <!-- VERSIONLINE -->
121121
</div>
122122
</div>
123123
</div>

web_client/shell_rebound_webgl.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@
135135
<div id="overlay" onclick="document.getElementById('overlay-toggle').innerHTML='1'; console.log('no');">
136136
<div id="overlaytext">
137137
<div class="reboundlogo"></div>
138-
REBOUND v4.4.5 <!-- VERSIONLINE -->
138+
REBOUND v4.4.6 <!-- VERSIONLINE -->
139139
</div>
140140
</div>
141141
<div id="overlay-help">

0 commit comments

Comments
 (0)