diff --git a/README.rst b/README.rst index 52c41196..6a74da6a 100644 --- a/README.rst +++ b/README.rst @@ -1,4 +1,4 @@ -.. image:: https://img.shields.io/badge/REBOUNDx-v4.4.0-green.svg?style=flat +.. image:: https://img.shields.io/badge/REBOUNDx-v4.4.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 diff --git a/changelog.md b/changelog.md index 2fd27d2a..7e6f942b 100644 --- a/changelog.md +++ b/changelog.md @@ -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.4.1 +* Added support for uv installation + ### Version 4.4.0 * Added the ability to set the spin axis orientation to the gravitational harmonics (J2/J4) effect diff --git a/doc/conf.py b/doc/conf.py index 79aa13ed..81ef8005 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -202,7 +202,7 @@ def cleanline(line): # The short X.Y version. version = '4.4' # The full version, including alpha/beta/rc tags. -release = '4.4.0' +release = '4.4.1' # General information about the project. project = u"REBOUNDx ({0})".format(release) diff --git a/setup.py b/setup.py index 6dc131f5..0e52788b 100644 --- a/setup.py +++ b/setup.py @@ -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=2be3046ccc969e4e46eaf44dea733e6ad50212e3" #GITHASHAUTOUPDATE + ghash_arg = "-DREBXGITHASH=ecc53659ede5ab6ebcb37c70deb3c11970992cef" #GITHASHAUTOUPDATE class build_ext(_build_ext): def finalize_options(self): @@ -105,7 +105,7 @@ def finalize_options(self): long_description = f.read() setup(name='reboundx', - version='4.4.0', + version='4.4.1', description='A library for including additional forces in REBOUND', long_description=long_description, url='https://github.com/dtamayo/reboundx', diff --git a/src/core.c b/src/core.c index b655fbb3..7720378f 100644 --- a/src/core.c +++ b/src/core.c @@ -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.4.0"; // **VERSIONLINE** This line gets updated automatically. Do not edit manually. +const char* rebx_version_str = "4.4.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. diff --git a/version.txt b/version.txt index fdc66988..cca25a93 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -4.4.0 +4.4.1