Skip to content

Commit 3a1cbcb

Browse files
committed
Updating version to 4.4.10
1 parent f417596 commit 3a1cbcb

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.4.9-green.svg?style=flat)](https://rebound.readthedocs.org)
1+
[![Version](https://img.shields.io/badge/rebound-v4.4.10-green.svg?style=flat)](https://rebound.readthedocs.org)
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.4.10
8+
* Version bump to rerun github workflows for pypi uploads
9+
710
### Version 4.4.9
811
* Fixes a bug that affected collisions searches with a tree code.
912
* Support for mid-timestep add/remove of particles with TRACE.

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=2daefbd9d672a957c9617d55fe61387b77bc2529" #GITHASHAUTOUPDATE
21+
ghash_arg = "-DGITHASH=f417596a70600c166d7e5bcb423666392dbb106d" #GITHASHAUTOUPDATE
2222

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

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

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

0 commit comments

Comments
 (0)