Skip to content

Commit

Permalink
4.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
dtamayo committed Jul 2, 2024
1 parent 35f8ee6 commit 8d6f771
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.1-green.svg?style=flat
.. image:: https://img.shields.io/badge/REBOUNDx-v4.2.2-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.2
* Set path to local REBOUND installation when installing in editable mode

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

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.1'
release = '4.2.2'

# 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 @@ -42,7 +42,7 @@ def get_reb_paths(sitepackagesdir):
ghash = subprocess.check_output(["git", "rev-parse", "HEAD"]).decode("ascii")
ghash_arg = "-DREBXGITHASH="+ghash.strip()
except:
ghash_arg = "-DREBXGITHASH=5a8389b9c1181ddaea318ade8f0b3f7bebeab699" #GITHASHAUTOUPDATE
ghash_arg = "-DREBXGITHASH=35f8ee6cb2a3ef6960530d26e3aa6f494fb656d2" #GITHASHAUTOUPDATE

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

setup(name='reboundx',
version='4.2.1',
version='4.2.2',
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.1"; // **VERSIONLINE** This line gets updated automatically. Do not edit manually.
const char* rebx_version_str = "4.2.2"; // **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.1
4.2.2

0 comments on commit 8d6f771

Please sign in to comment.