Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
jdtuck committed Jul 7, 2024
1 parent 32ed1b3 commit 288b038
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 9 deletions.
3 changes: 2 additions & 1 deletion CHANGES.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion doc/_static/switcher.json
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = """
Expand All @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion fdasrsf/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"gp",
]

__version__ = "2.6.0"
__version__ = "2.6.1"

import sys

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 = "[email protected]"}
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 288b038

Please sign in to comment.