Skip to content

Commit

Permalink
new version
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewholman committed Nov 14, 2023
1 parent 5773c21 commit 3e560af
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![Version](https://img.shields.io/badge/assist-v1.1.6-green.svg?style=flat)](https://assist.readthedocs.org)
[![Version](https://img.shields.io/badge/assist-v1.1.7-green.svg?style=flat)](https://assist.readthedocs.org)
[![GPL](https://img.shields.io/badge/license-GPL-green.svg?style=flat)](https://github.com/matthewholman/blob/main/LICENSE)
[![Python unit tests)](https://github.com/matthewholman/assist/actions/workflows/python.yml/badge.svg)](https://github.com/matthewholman/assist/actions/workflows/python.yml)
[![C unit tests](https://github.com/matthewholman/assist/actions/workflows/c.yml/badge.svg)](https://github.com/matthewholman/assist/actions/workflows/c.yml)
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
ghash = subprocess.check_output(["git", "rev-parse", "HEAD"]).decode("ascii")
ghash_arg = "-DASSISTGITHASH="+ghash
except:
ghash_arg = "-DASSISTGITHASH=d0dc84c53f69111c9469f053ab642a85ad61d65f" #GITHASHAUTOUPDATE
ghash_arg = "-DASSISTGITHASH=5773c211d2bcbf63e5420ddd0e7b15e2d6d19a9b" #GITHASHAUTOUPDATE

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

setup(name='assist',
version='1.1.6',
version='1.1.7',
description='A library high accuracy ephemeris in REBOUND',
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down
2 changes: 1 addition & 1 deletion src/assist.c
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const int reb_max_messages_N = 10;
#define str(s) #s

const char* assist_build_str = __DATE__ " " __TIME__; // Date and time build string.
const char* assist_version_str = "1.1.6"; // **VERSIONLINE** This line gets updated automatically. Do not edit manually.
const char* assist_version_str = "1.1.7"; // **VERSIONLINE** This line gets updated automatically. Do not edit manually.
const char* assist_githash_str = STRINGIFY(ASSISTGITHASH);// 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,2 +1,2 @@
1.1.6
1.1.7

0 comments on commit 3e560af

Please sign in to comment.