Skip to content

Commit

Permalink
4.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dtamayo committed Jun 25, 2024
1 parent 4b1377f commit 1f7aa1d
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 7 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.1.0-green.svg?style=flat
.. image:: https://img.shields.io/badge/REBOUNDx-v4.2.0-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
5 changes: 5 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

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.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.
* Improvements to unit tests (now regenerate simulationarchives each time)

### Version 4.1.0
* Fixed inneredge effect
* Updated documentation and github actions
Expand Down
4 changes: 2 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,9 +200,9 @@ def cleanline(line):
# built documents.
#
# The short X.Y version.
version = '4.1'
version = '4.2'
# The full version, including alpha/beta/rc tags.
release = '4.1.0'
release = '4.2.0'

# 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=3c90f8eac95aef924f2d3218c43505bd365f80ab" #GITHASHAUTOUPDATE
ghash_arg = "-DREBXGITHASH=4b1377fe3337271cdd67013199ae2fd792ed5601" #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.1.0',
version='4.2.0',
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.1.0"; // **VERSIONLINE** This line gets updated automatically. Do not edit manually.
const char* rebx_version_str = "4.2.0"; // **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.1.0
4.2.0

0 comments on commit 1f7aa1d

Please sign in to comment.