Skip to content

Commit d56df67

Browse files
committed
Updating version to 4.5.0
1 parent f0da331 commit d56df67

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.11-green.svg?style=flat)](https://rebound.hanno-rein.de)
1+
[![Version](https://img.shields.io/badge/rebound-v4.5.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: 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.5.0
8+
* Added support for (Frequency) Modified Fourier Transforms. Heavily based on David Nesvorny's code. The new functions are `reb_frequency_analysis()` in C and `rebound.frequency_analysis()` in python. For usage, see C examples `secular_frequencies` and `frequency_analysis` as well as the iPython notebook `FrequencyAnalysis`.
9+
* Support for Jacobi coordinates added when using WHFast with OpenMP.
10+
* Allow negative periods when initializing hyperbolic orbits.
11+
712
### Version 4.4.11
813
* The collision resolve function now returns a type `enum REB_COLLISION_RESOLVE_OUTCOME`. The actual integer values remain unchanged.
914
* Bug in TRACE was fixed.

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=07d87703e65c2463e65214f593ba37de32c17a90" #GITHASHAUTOUPDATE
21+
ghash_arg = "-DGITHASH=f0da33101ea7c8d21c0822acf4e7dfbf1c707145" #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.4.11',
95+
version='4.5.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.4.11"; // **VERSIONLINE** This line gets updated automatically. Do not edit manually.
72+
const char* reb_version_str = "4.5.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.4.11
1+
4.5.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.4.11 <!-- VERSIONLINE -->
138+
REBOUND v4.5.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.4.11 <!-- VERSIONLINE -->
120+
REBOUND v4.5.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.4.11 <!-- VERSIONLINE -->
138+
REBOUND v4.5.0 <!-- VERSIONLINE -->
139139
</div>
140140
</div>
141141
<div id="overlay-help">

0 commit comments

Comments
 (0)