diff --git a/CHANGES.txt b/CHANGES.txt index 38263b07..dbec8f9a 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,4 +1,4 @@ -v2.3.9, 2022-03-28 -- bugfixes +v2.3.10, 2022-03-28 -- bugfixes v2.3.7, 2022-01-17 -- bugfixes v2.3.6, 2021-12-24 -- bugfixes v2.3.4, 2021-10-19 -- refactor of regression code, bugfixes diff --git a/README.md b/README.md index 13d1ef03..5cd1e7ef 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ using functional component analysis and regression. ### Installation ------------------------------------------------------------------------------ -v2.3.9 is on pip and can be installed using +v2.3.10 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 bbab323e..5d819f22 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -70,7 +70,7 @@ # The short X.Y version. version = '2.2' # The full version, including alpha/beta/rc tags. -release = '2.3.9' +release = '2.3.10' # 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 59af9863..370dd09a 100644 --- a/fdasrsf/__init__.py +++ b/fdasrsf/__init__.py @@ -9,7 +9,7 @@ "geometry", "pcr_regression", "tolerance", "boxplots", "curve_regression", "regression", "fPCA", "elastic_glm_regression", "curve_pcr_regression"] -__version__ = "2.3.9" +__version__ = "2.3.10" import sys diff --git a/pyproject.toml b/pyproject.toml index d305beac..0bcfd143 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "fdasrsf" -version = "2.3.9" +version = "2.3.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 2089fc52..f71e157a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,7 +1,7 @@ [build_sphinx] project = 'fdasrvf' version = 2.3 -release = 2.3.9 +release = 2.3.10 source-dir = doc/source build-dir = doc/build all_files = 1 diff --git a/setup.py b/setup.py index 4d3ec56b..23a05135 100644 --- a/setup.py +++ b/setup.py @@ -92,7 +92,7 @@ def run(self): cmdclass={'build_ext': build_ext, 'build_docs': build_docs}, ext_modules=extensions, name='fdasrsf', - version='2.3.9', + version='2.3.10', packages=['fdasrsf'], url='http://research.tetonedge.net', license='LICENSE.txt',