diff --git a/docs/source/conf.py b/docs/source/conf.py index f7912551889e25c84bb42a3854055d0fe21ccd07..a16c1325337ff130dc52e8600f424db4e04a86b9 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 = "2025, Aurelio AI" author = "Aurelio AI" -release = "0.1.0.dev9" +release = "0.1.0.dev10" # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/pyproject.toml b/pyproject.toml index 9f6fb0efab0b37f1837bd31364ceb230a26a035b..2904fb376ee8e63d804e921fa2127789180fe686 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "semantic-router" -version = "0.1.0.dev9" +version = "0.1.0.dev10" 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 1074546f1eb83b2f7f7650b4f35bdeb47d30a143..d9d8cba5af2fe6fdb0da5080315fc59915e9744f 100644 --- a/semantic_router/__init__.py +++ b/semantic_router/__init__.py @@ -3,4 +3,4 @@ from semantic_router.routers import HybridRouter, RouterConfig, SemanticRouter __all__ = ["SemanticRouter", "HybridRouter", "Route", "RouterConfig"] -__version__ = "0.1.0.dev9" +__version__ = "0.1.0.dev10"