From 362c757b9cc656a5f5b2b8a3f3d1e12326317e4b Mon Sep 17 00:00:00 2001 From: Tim Paine <3105306+timkpaine@users.noreply.github.com> Date: Sun, 19 Nov 2023 19:28:19 -0500 Subject: [PATCH] Bump to 0.3.8 --- docs/source/conf.py | 2 +- ffn/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 35944616..a5d46a0f 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -69,7 +69,7 @@ # built documents. # # The short X.Y version. -version = ".".join(str(x) for x in ffn.__version__) +version = ffn.__version__ # The full version, including alpha/beta/rc tags. release = version diff --git a/ffn/__init__.py b/ffn/__init__.py index 9b9dcfdb..49fd1e42 100644 --- a/ffn/__init__.py +++ b/ffn/__init__.py @@ -8,4 +8,4 @@ core.extend_pandas() -__version__ = (0, 3, 7) +__version__ = "0.3.8" diff --git a/pyproject.toml b/pyproject.toml index a9bc1e0c..acbd2e0e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ requires = ["setuptools", "wheel"] [project] name = "ffn" description = "Financial functions for Python" -version = "0.3.7" +version = "0.3.8" readme = "README.md" license = { file = "LICENSE.txt" } requires-python = ">=3.8"