diff --git a/HISTORY.rst b/HISTORY.rst index 2e944a3..65e9bff 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,8 @@ ======= History ======= +1.1.0 (2023-10-22) Adds Bayes factor calculations. + 1.0.2 (2022-07-19) Fixes a delimiter bug for pulling in priors.txt. 1.0.1 (2021-10-21) Fixes a bug that did not allow parameter dictionary I/O in HyperModelCores diff --git a/la_forge/__init__.py b/la_forge/__init__.py index 9b6b472..7bd1235 100644 --- a/la_forge/__init__.py +++ b/la_forge/__init__.py @@ -3,7 +3,7 @@ __author__ = """Jeffrey Shafiq Hazbboun""" __email__ = 'jeffrey.hazboun@gmail.com' -__version__ = '1.0.2' +__version__ = '1.1.0' # # from .rednoise import plot_rednoise_spectrum # from . import utils diff --git a/setup.cfg b/setup.cfg index fd834d9..2176edc 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.2 +current_version = 1.1.0 commit = True tag = True diff --git a/setup.py b/setup.py index 8efd054..0809594 100644 --- a/setup.py +++ b/setup.py @@ -47,6 +47,6 @@ test_suite='tests', tests_require=test_requirements, url='https://github.com/Hazboun6/la_forge', - version='1.0.2', + version='1.1.0', zip_safe=False, )