diff --git a/CHANGES.txt b/CHANGES.txt index 68a74c81..6dd60e38 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,4 @@ +v2.5.1, 2023-11-18 -- bugfixes v2.5.0, 2023-11-17 -- bugfixes, add elastic changepoint v2.4.3, 2023-08-21 -- bugfixes, expose lam in curve, add example v2.4.2, 2023-07-21 -- bugfixes and remove GPy dependency diff --git a/README.md b/README.md index 2101f688..4e533aec 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ using functional component analysis and regression. ### Installation ------------------------------------------------------------------------------ -v2.5.0 is on pip and can be installed using +v2.5.1 is on pip and can be installed using > `pip install fdasrsf` or conda diff --git a/doc/source/conf.py b/doc/source/conf.py index a5cd655d..e0f68f14 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -80,7 +80,7 @@ # The short X.Y version. version = '2.5' # The full version, including alpha/beta/rc tags. -release = '2.5.0' +release = '2.5.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pyproject.toml b/pyproject.toml index 4f972d4d..17ba1fb1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "fdasrsf" -version = "2.5.0" +version = "2.5.1" description = "functional data analysis using the square root slope framework" authors = [ {name = "J. Derek Tucker", email = "jdtuck@sandia.gov"} diff --git a/setup.cfg b/setup.cfg index 98eae1b1..72bb8055 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,7 +1,7 @@ [build_sphinx] project = 'fdasrvf' version = 2.5 -release = 2.5.0 +release = 2.5.1 source-dir = doc/source build-dir = doc/build all_files = 1 diff --git a/setup.py b/setup.py index fc2f957f..3951b340 100644 --- a/setup.py +++ b/setup.py @@ -97,7 +97,7 @@ def run(self): cmdclass={'build_ext': build_ext, 'build_docs': build_docs}, ext_modules=extensions, name='fdasrsf', - version='2.5.0', + version='2.5.1', packages=['fdasrsf'], url='http://research.tetonedge.net', license='LICENSE.txt',