diff --git a/CHANGES.txt b/CHANGES.txt index 1948160..941ff7c 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,4 @@ +v2.5.10, 2024-04-01 -- bugfixes and add h transformation for gamma v2.5.9, 2024-02-26 -- bugfixes v2.5.7, 2024-01-16 -- bugfixes v2.5.6, 2023-12-27 -- bugfixes diff --git a/README.md b/README.md index 465ab10..a1d5db3 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ using functional component analysis and regression. ### Installation ------------------------------------------------------------------------------ -v2.5.9 is on pip and can be installed using +v2.5.10 is on pip and can be installed using > `pip install fdasrsf` or conda diff --git a/doc/_static/switcher.json b/doc/_static/switcher.json index b47d3b7..03195ad 100644 --- a/doc/_static/switcher.json +++ b/doc/_static/switcher.json @@ -5,7 +5,7 @@ "url": "https://fdasrsf-python.readthedocs.io/en/latest/" }, { - "name": "2.5.9 (stable)", + "name": "2.5.10 (stable)", "version": "stable", "url": "https://fdasrsf-python.readthedocs.io/en/stable/", "preferred": true diff --git a/doc/source/conf.py b/doc/source/conf.py index c522bf1..d6b2ca5 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -84,7 +84,7 @@ if switcher_version == "latest": switcher_version = "dev" elif rtd_version_type not in {"branch", "tag"}: - switcher_version = "2.5.9" + switcher_version = "2.5.10" nbsphinx_prolog = """ @@ -110,7 +110,7 @@ # The short X.Y version. version = "2.5" # The full version, including alpha/beta/rc tags. -release = "2.5.9" +release = "2.5.10" # 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 31a5dcb..22ce0a1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "fdasrsf" -version = "2.5.9" +version = "2.5.10" 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 cbc7662..267e675 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,7 +1,7 @@ [build_sphinx] project = 'fdasrvf' version = 2.5 -release = 2.5.9 +release = 2.5.10 source-dir = doc/source build-dir = doc/build all_files = 1 diff --git a/setup.py b/setup.py index 876474f..5d932da 100644 --- a/setup.py +++ b/setup.py @@ -127,7 +127,7 @@ def run(self): cmdclass={"build_ext": build_ext_with_blas, "build_docs": build_docs}, ext_modules=extensions, name="fdasrsf", - version="2.5.9", + version="2.5.10", packages=["fdasrsf"], url="http://research.tetonedge.net", license="LICENSE.txt",