Skip to content

Commit

Permalink
Updating version to 4.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
hannorein committed Nov 14, 2023
1 parent 4df2b46 commit 111bcd5
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
@@ -1,4 +1,4 @@
[![Version](https://img.shields.io/badge/rebound-v4.0.0-green.svg?style=flat)](https://rebound.readthedocs.org)
[![Version](https://img.shields.io/badge/rebound-v4.0.1-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)
Expand Down
3 changes: 3 additions & 0 deletions changelog.md
Expand Up @@ -4,6 +4,9 @@ This changelog only includes the most important changes in recent updates. For a

## Version 4.x

### Version 4.0.1
* Include missing python packages

### Version 4.0.0
* Major API changes and new features! If you have used a previous version of REBOUND, then you will need to update your code. If you have trouble with the migration, open a GitHub issue!
* Many function and variable names have changed. They now follow a coherent naming convention. See the naming convention section in the documentation for more information.
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Expand Up @@ -18,7 +18,7 @@
ghash = subprocess.check_output(["git", "rev-parse", "HEAD"]).decode("ascii")
ghash_arg = "-DGITHASH="+ghash.strip()
except:
ghash_arg = "-DGITHASH=4a39e0d97a4df8bd8e0db53b25d5b3d03630b245" #GITHASHAUTOUPDATE
ghash_arg = "-DGITHASH=4df2b4603058e7d767aee9c26b586b55a5f4de65" #GITHASHAUTOUPDATE

extra_link_args=[]
if sys.platform == 'darwin':
Expand Down Expand Up @@ -83,7 +83,7 @@
long_description = f.read()

setup(name='rebound',
version='4.0.0',
version='4.0.1',
description='An open-source multi-purpose N-body code',
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down Expand Up @@ -113,7 +113,7 @@
'Programming Language :: Python :: 3',
],
keywords='astronomy astrophysics nbody integrator symplectic wisdom-holman',
packages=['rebound'],
packages=['rebound', 'rebound.integrators'],
package_data = {'rebound':['rebound.h']},
install_requires=[],
tests_require=["numpy","matplotlib"],
Expand Down
2 changes: 1 addition & 1 deletion src/rebound.c
Expand Up @@ -66,7 +66,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.0.0"; // **VERSIONLINE** This line gets updated automatically. Do not edit manually.
const char* reb_version_str = "4.0.1"; // **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);
Expand Down
2 changes: 1 addition & 1 deletion version.txt
@@ -1 +1 @@
4.0.0
4.0.1
2 changes: 1 addition & 1 deletion web_client/shell_console_rebound.html
Expand Up @@ -93,7 +93,7 @@
<div id="overlay" onclick="document.getElementById('overlay-toggle').innerHTML='1'; console.log('no');">
<div id="overlaytext">
<div class="reboundlogo"></div>
REBOUND v4.0.0 <!-- VERSIONLINE -->
REBOUND v4.0.1 <!-- VERSIONLINE -->
</div>
</div>
</div>
Expand Down

0 comments on commit 111bcd5

Please sign in to comment.