diff --git a/README.md b/README.md index 42fdea6af..0c8e78b40 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[![Version](https://img.shields.io/badge/rebound-v4.4.3-green.svg?style=flat)](https://rebound.readthedocs.org) +[![Version](https://img.shields.io/badge/rebound-v4.4.4-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) diff --git a/changelog.md b/changelog.md index 3da9e164d..dca4f01b8 100644 --- a/changelog.md +++ b/changelog.md @@ -4,6 +4,11 @@ This changelog only includes the most important changes in recent updates. For a ## Version 4.x +### Version 4.4.4 +* Fixed several memory leaks and other memory issues. It is unlikely that any of those bugs did affect an simulation. +* When converting units of a particle, the particle radius is now also converted. +* Added getter/setters for Pal coordinates to the particle structure in python. Syntax is `sim.particles[1].pal_h`, `sim.particles[1].pal_ix`, etc. + ### Version 4.4.3 * REBOUND now raises ImportError if it detects a size mismatch between the C and python Simulation structures. * Fixes a bug in the WHFast512 synchronization on non-AVX512 systems. diff --git a/setup.py b/setup.py index 6443cb273..554df6fcb 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ ghash = subprocess.check_output(["git", "rev-parse", "HEAD"]).decode("ascii") ghash_arg = "-DGITHASH="+ghash.strip() except: - ghash_arg = "-DGITHASH=a548a279c439c6ccdbb05e4ded8d5a284dad5df0" #GITHASHAUTOUPDATE + ghash_arg = "-DGITHASH=4cabad08374c46a96f2d2bdfdf3c6569cfb3de6b" #GITHASHAUTOUPDATE extra_link_args=[] if sys.platform == 'darwin': @@ -84,7 +84,7 @@ long_description = f.read() setup(name='rebound', - version='4.4.3', + version='4.4.4', description='An open-source multi-purpose N-body code', long_description=long_description, long_description_content_type="text/markdown", diff --git a/src/rebound.c b/src/rebound.c index 51ac9ef37..df0c125e4 100644 --- a/src/rebound.c +++ b/src/rebound.c @@ -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.3"; // **VERSIONLINE** This line gets updated automatically. Do not edit manually. +const char* reb_version_str = "4.4.4"; // **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); diff --git a/version.txt b/version.txt index 9e3a93350..cbe06cdbf 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -4.4.3 +4.4.4 diff --git a/web_client/shell_rebound.html b/web_client/shell_rebound.html index 440508cba..c7adbd2fc 100644 --- a/web_client/shell_rebound.html +++ b/web_client/shell_rebound.html @@ -135,7 +135,7 @@
- REBOUND v4.4.3 + REBOUND v4.4.4
diff --git a/web_client/shell_rebound_console.html b/web_client/shell_rebound_console.html index 74818d6e8..b996b5fcc 100644 --- a/web_client/shell_rebound_console.html +++ b/web_client/shell_rebound_console.html @@ -117,7 +117,7 @@
- REBOUND v4.4.3 + REBOUND v4.4.4
diff --git a/web_client/shell_rebound_webgl.html b/web_client/shell_rebound_webgl.html index 2b5f4b8a1..84848d13a 100644 --- a/web_client/shell_rebound_webgl.html +++ b/web_client/shell_rebound_webgl.html @@ -135,7 +135,7 @@
- REBOUND v4.4.3 + REBOUND v4.4.4