Skip to content

Commit

Permalink
4.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dtamayo committed Jun 28, 2024
1 parent 5a8389b commit 988bb98
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.. image:: https://img.shields.io/badge/REBOUNDx-v4.2.0-green.svg?style=flat
.. image:: https://img.shields.io/badge/REBOUNDx-v4.2.1-green.svg?style=flat
:target: https://reboundx.readthedocs.org
.. image:: https://badge.fury.io/py/reboundx.svg
:target: https://badge.fury.io/py/reboundx
Expand Down
3 changes: 3 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

This changelog only includes the most important changes in recent updates. For a full log of all changes, please refer to git.

### Version 4.2.1
* Fixed clang error, remove commented code

### Version 4.2.0
* Removed wheels. Installation is now from source to avoid conflicts with different versions of REBOUND
* Fixed gr\_full errors when Simulation was not in center of mass frame. Convergence was also improved and effect is now a bit faster.
Expand Down
2 changes: 1 addition & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ def cleanline(line):
# The short X.Y version.
version = '4.2'
# The full version, including alpha/beta/rc tags.
release = '4.2.0'
release = '4.2.1'

# General information about the project.
project = u"REBOUNDx ({0})".format(release)
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
ghash = subprocess.check_output(["git", "rev-parse", "HEAD"]).decode("ascii")
ghash_arg = "-DREBXGITHASH="+ghash.strip()
except:
ghash_arg = "-DREBXGITHASH=4b1377fe3337271cdd67013199ae2fd792ed5601" #GITHASHAUTOUPDATE
ghash_arg = "-DREBXGITHASH=5a8389b9c1181ddaea318ade8f0b3f7bebeab699" #GITHASHAUTOUPDATE

class build_ext(_build_ext):
def finalize_options(self):
Expand Down Expand Up @@ -87,7 +87,7 @@ def finalize_options(self):
long_description = f.read()

setup(name='reboundx',
version='4.2.0',
version='4.2.1',
description='A library for including additional forces in REBOUND',
long_description=long_description,
url='https://github.com/dtamayo/reboundx',
Expand Down
2 changes: 1 addition & 1 deletion src/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
#define str(s) #s

const char* rebx_build_str = __DATE__ " " __TIME__; // Date and time build string.
const char* rebx_version_str = "4.2.0"; // **VERSIONLINE** This line gets updated automatically. Do not edit manually.
const char* rebx_version_str = "4.2.1"; // **VERSIONLINE** This line gets updated automatically. Do not edit manually.
const char* rebx_githash_str = STRINGIFY(REBXGITHASH); // This line gets updated automatically. Do not edit manually.


Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.2.0
4.2.1

0 comments on commit 988bb98

Please sign in to comment.