Skip to content

Commit e3b07aa

Browse files
committed
Updating version to 4.6.0
1 parent e853676 commit e3b07aa

File tree

8 files changed

+11
-8
lines changed

8 files changed

+11
-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.5.1-green.svg?style=flat)](https://rebound.hanno-rein.de)
1+
[![Version](https://img.shields.io/badge/rebound-v4.6.0-green.svg?style=flat)](https://rebound.hanno-rein.de)
22
[![codecov](https://codecov.io/github/hannorein/rebound/graph/badge.svg?token=Zmynoi99Vl)](https://codecov.io/github/hannorein/rebound)
33
[![PyPI](https://badge.fury.io/py/rebound.svg)](https://badge.fury.io/py/rebound)
44
[![GPL](https://img.shields.io/badge/license-GPL-green.svg?style=flat)](https://github.com/hannorein/rebound/blob/main/LICENSE)

changelog.md

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

55
## Version 4.x
66

7+
### Version 4.6.0
8+
* Merged the part1() and part2() functions of all integerators into a single step() function. Integrators are now responsible for updating accelerations when needed. Although a big change under the hood, this should not affect users.
9+
710
### Version 4.5.1
811
* Added leapfrog integrators of order 4, 6, and 8. Order can be set with `r->ri_leapfrog->order`.
912
* Heartbeat function is now also called when using `reb_simulation_steps()`.

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=ffad73aeaabd740234299bc523bd3569f4a314f7" #GITHASHAUTOUPDATE
21+
ghash_arg = "-DGITHASH=e853676f202355b7c3e62f96501fb2c2d3c8c862" #GITHASHAUTOUPDATE
2222

2323
extra_link_args=[]
2424
if sys.platform == 'darwin':
@@ -92,7 +92,7 @@
9292
long_description = f.read()
9393

9494
setup(name='rebound',
95-
version='4.5.1',
95+
version='4.6.0',
9696
description='An open-source multi-purpose N-body code',
9797
long_description=long_description,
9898
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.5.1"; // **VERSIONLINE** This line gets updated automatically. Do not edit manually.
72+
const char* reb_version_str = "4.6.0"; // **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.5.1
1+
4.6.0

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.5.1 <!-- VERSIONLINE -->
138+
REBOUND v4.6.0 <!-- 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.5.1 <!-- VERSIONLINE -->
120+
REBOUND v4.6.0 <!-- 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.5.1 <!-- VERSIONLINE -->
138+
REBOUND v4.6.0 <!-- VERSIONLINE -->
139139
</div>
140140
</div>
141141
<div id="overlay-help">

0 commit comments

Comments
 (0)