Skip to content

Commit

Permalink
4.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dtamayo committed Jan 30, 2024
1 parent 3c90f8e commit 20ae409
Show file tree
Hide file tree
Showing 6 changed files with 11 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.0.0-green.svg?style=flat
.. image:: https://img.shields.io/badge/REBOUNDx-v4.1.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
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

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

### Version 4.1.0
* Fixed inneredge effect
* Updated documentation and github actions

### Version 4.0.0
* Added support for REBOUND version 4.0.0

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.0'
version = '4.1'
# The full version, including alpha/beta/rc tags.
release = '4.0.0'
release = '4.1.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=da728893dc1fb3fd06fa5545d7475190ef9de523" #GITHASHAUTOUPDATE
ghash_arg = "-DREBXGITHASH=3c90f8eac95aef924f2d3218c43505bd365f80ab" #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.0.0',
version='4.1.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.0.0"; // **VERSIONLINE** This line gets updated automatically. Do not edit manually.
const char* rebx_version_str = "4.1.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.0.0
4.1.0

0 comments on commit 20ae409

Please sign in to comment.