diff --git a/docs/indexes/pinecone-sync-routes.ipynb b/docs/indexes/pinecone-sync-routes.ipynb index ed46b99188b3e7fb1474a57433ab5a8fc3f075d7..6f2c5c48939530963195847fbf89300ee08bb12b 100644 --- a/docs/indexes/pinecone-sync-routes.ipynb +++ b/docs/indexes/pinecone-sync-routes.ipynb @@ -6,7 +6,7 @@ "metadata": {}, "outputs": [], "source": [ - "#!pip install -qU \"semantic-router[pinecone]==0.1.0\"" + "#!pip install -qU \"semantic-router[pinecone]==0.1.0-alpha.1\"" ] }, { diff --git a/docs/source/conf.py b/docs/source/conf.py index b28e57ff185130a310b371de9129c15ac4b3afcf..82f6d4d0b72f271dc278c34a958538c0d5b8d3dd 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" +release = "0.1.0-alpha.1" # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/pyproject.toml b/pyproject.toml index 69a48874c42aae4351d1dd7eb9df9e8120cfe136..d263e5af16c0b56ef4597a40bc00dd4fa7ff8d02 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "semantic-router" -version = "0.1.0" +version = "0.1.0-alpha.1" 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 7c0af45debf253ee28c2c264807c71b6f60bafc8..3b0f70cdbebf14948617a46be5b0f42845a56799 100644 --- a/semantic_router/__init__.py +++ b/semantic_router/__init__.py @@ -4,4 +4,4 @@ from semantic_router.route import Route __all__ = ["RouteLayer", "HybridRouteLayer", "Route", "LayerConfig"] -__version__ = "0.1.0" +__version__ = "0.1.0-alpha.1"