diff --git a/CHANGES.txt b/CHANGES.txt index 9982933..ba64637 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,4 +1,5 @@ -v2.6.00, 2024-07-05 -- version compatible with numpy 2.0 +v2.6.1, 2024-07-06 -- update plots +v2.6.0, 2024-07-05 -- version compatible with numpy 2.0 v2.5.14, 2024-07-04 -- bugfixes for new scipy v2.5.13, 2024-06-20 -- bugfixes v2.5.11, 2024-05-26 -- bugfixes and joint fpca with h diff --git a/README.md b/README.md index a692da8..9828673 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ using functional component analysis and regression. ### Installation ------------------------------------------------------------------------------ -v2.6.0 is on pip and can be installed using +v2.6.1 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 88e3b70..07106a1 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.6.0 (stable)", + "name": "2.6.1 (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 e455487..bee6688 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.6.0" + switcher_version = "2.6.1" nbsphinx_prolog = """ @@ -110,7 +110,7 @@ # The short X.Y version. version = "2.6" # The full version, including alpha/beta/rc tags. -release = "2.6.0" +release = "2.6.1" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/fdasrsf/__init__.py b/fdasrsf/__init__.py index a193fd6..68471fe 100644 --- a/fdasrsf/__init__.py +++ b/fdasrsf/__init__.py @@ -28,7 +28,7 @@ "gp", ] -__version__ = "2.6.0" +__version__ = "2.6.1" import sys diff --git a/pyproject.toml b/pyproject.toml index 74af825..87ba4b0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "fdasrsf" -version = "2.6.0" +version = "2.6.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 ad9a591..2f30ec9 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,7 +1,7 @@ [build_sphinx] project = 'fdasrvf' version = 2.5 -release = 2.6.0 +release = 2.6.1 source-dir = doc/source build-dir = doc/build all_files = 1 diff --git a/setup.py b/setup.py index a078d77..f38fb00 100644 --- a/setup.py +++ b/setup.py @@ -126,7 +126,7 @@ def run(self): cmdclass={"build_ext": build_ext_with_blas, "build_docs": build_docs}, ext_modules=extensions, name="fdasrsf", - version="2.6.0", + version="2.6.1", packages=["fdasrsf"], url="http://research.tetonedge.net", license="LICENSE.txt",