Skip to content

Commit

Permalink
Updating version to 1.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
shadden committed Jul 23, 2024
1 parent 485554c commit 59e96d2
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## Version 1.x

### Version 1.5.2
* Minor bug fixes.

### Version 1.5.1
* Made lambidfy_kwargs an attribute of the celmech.Hamiltonian. This can be
useful when creating Hamiltonians that involve special functions.
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
ghash = subprocess.check_output(["git", "rev-parse", "HEAD"]).decode("ascii")
ghash_arg = "-DCELMECHGITHASH="+ghash.strip()
except:
ghash_arg = "-DCELMECHGITHASH=48c20bb9c60201a271e4de1f7d26b21117cbaa30" #GITHASHAUTOUPDATE
ghash_arg = "-DCELMECHGITHASH=485554c96625e8d3f90d5dd7cfac3e6a29eea763" #GITHASHAUTOUPDATE

extra_link_args=[]
if sys.platform == 'darwin':
Expand Down Expand Up @@ -49,7 +49,7 @@
install_requires = packages

setup(name='celmech',
version='1.5.1',
version='1.5.2',
description='Open source tools for celestial mechanics',
url='http://github.com/shadden/celmech',
author='Dan Tamayo, Sam Hadden',
Expand Down
2 changes: 1 addition & 1 deletion src/disturbing_function.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#define str(s) #s

const char* celmech_build_str = __DATE__ " " __TIME__; // Date and time build string.
const char* celmech_version_str = "1.5.1"; // **VERSIONLINE** This line gets updated automatically. Do not edit manually.
const char* celmech_version_str = "1.5.2"; // **VERSIONLINE** This line gets updated automatically. Do not edit manually.
const char* celmech_githash_str = STRINGIFY(CELMECHGITHASH); // This line gets updated automatically. Do not edit manually.

double laplace(double s, int i, int j, double a);
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.5.1
1.5.2

0 comments on commit 59e96d2

Please sign in to comment.