diff --git a/HISTORY.txt b/HISTORY.txt index f6f60e3..0ae1098 100644 --- a/HISTORY.txt +++ b/HISTORY.txt @@ -1,4 +1,4 @@ -v0.0.10, 2019-05-24 -- added `prune` keyword to `mesa.load_history` to force a +v0.0.10, 2019-08-01 -- added `prune` keyword to `mesa.load_history` to force a strictly increasing model number by only taking last model of any given model number -- added function to convert AMDL back into FGONG diff --git a/docs/conf.py b/docs/conf.py index 5b6de17..a437b2c 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -62,7 +62,7 @@ # The short X.Y version. version = '0.0.10' # The full version, including alpha/beta/rc tags. -release = '0.0.10a' +release = '0.0.10' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 9e27cbc..1da8cf9 100644 --- a/setup.py +++ b/setup.py @@ -3,14 +3,14 @@ setup( name = 'tomso', packages = ['tomso'], - version = '0.0.10a', + version = '0.0.10', description = 'Tools for Modelling Stars and their Oscillations', long_description=open('README.md').read(), long_description_content_type='text/markdown', author = 'Warrick Ball', author_email = 'W.H.Ball@bham.ac.uk', url = 'https://github.com/warrickball/tomso', - download_url = 'https://github.com/warrickball/tomso/archive/v0.0.10a.tar.gz', + download_url = 'https://github.com/warrickball/tomso/archive/v0.0.10.tar.gz', install_requires=['numpy'], keywords = [], classifiers = [], diff --git a/tomso/__init__.py b/tomso/__init__.py index ebc8c5c..829b86b 100644 --- a/tomso/__init__.py +++ b/tomso/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.0.10a" +__version__ = "0.0.10" __all__ = [ 'adipls',