diff --git a/docs/source/conf.py b/docs/source/conf.py index 7442f48048719f225117198522b748facbe6d98e..36f85ca79750be8ab53314f0f524109958b67c36 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -15,7 +15,7 @@ sys.path.insert(0, os.path.abspath("../..")) # Source code dir relative to this project = "Semantic Router" copyright = "2024, Aurelio AI" author = "Aurelio AI" -release = "0.1.0.dev4" +release = "0.1.0.dev5" # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/pyproject.toml b/pyproject.toml index e246a21d93e1765038ddb8a661bb6af061b4520e..d9216d4687cb587a19efb16bffb5fa713e7933cf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "semantic-router" -version = "0.1.0.dev4" +version = "0.1.0.dev5" description = "Super fast semantic router for AI decision making" authors = ["Aurelio AI <hello@aurelio.ai>"] readme = "README.md" diff --git a/semantic_router/__init__.py b/semantic_router/__init__.py index 5cac23dcb572d29331937ab8baa657d41e3bbed1..50e24234dafda74d45c11b0ea4a2a450eb23457f 100644 --- a/semantic_router/__init__.py +++ b/semantic_router/__init__.py @@ -3,4 +3,4 @@ from semantic_router.route import Route __all__ = ["SemanticRouter", "HybridRouter", "Route", "RouterConfig"] -__version__ = "0.1.0.dev4" +__version__ = "0.1.0.dev5"