diff --git a/docs/source/conf.py b/docs/source/conf.py index d13e86741..fe1049d07 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -6,13 +6,17 @@ import os import sys +# AXJ, Version +sys.path.insert(0, os.path.abspath("../..")) +from mentat import __version__ # noqa: E402 + # -- Project information ----------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information project = "Mentat" copyright = "2024, Abante AI" author = "Multiple Authors" -release = "1.0.7" +release = __version__ # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration @@ -36,7 +40,3 @@ html_theme = "sphinx_rtd_theme" html_static_path = ["_static"] - - -# AXJ -sys.path.insert(0, os.path.abspath("../..")) diff --git a/mentat/__init__.py b/mentat/__init__.py index 9ae47cfd8..c0dfd6fec 100644 --- a/mentat/__init__.py +++ b/mentat/__init__.py @@ -1,2 +1,2 @@ # Make sure to bump this on Release x.y.z PR's! -__version__ = "1.0.8" +__version__ = "1.0.9"