diff --git a/pyproject.toml b/pyproject.toml index 585e5f9b..68c6be05 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ [project] name = "lmnr" -version = "0.7.23a1" +version = "0.7.23a2" description = "Python SDK for Laminar" authors = [ { name = "lmnr.ai", email = "founders@lmnr.ai" } @@ -67,7 +67,7 @@ lmnr = "lmnr.cli:cli" alephalpha=["opentelemetry-instrumentation-alephalpha>=0.47.1"] bedrock=["opentelemetry-instrumentation-bedrock>=0.47.1"] chromadb=["opentelemetry-instrumentation-chromadb>=0.47.1"] -claude-agent-sdk=["lmnr-claude-code-proxy>=0.1.0a4"] +claude-agent-sdk=["lmnr-claude-code-proxy>=0.1.0a5"] cohere=["opentelemetry-instrumentation-cohere>=0.47.1"] crewai=["opentelemetry-instrumentation-crewai>=0.47.1"] haystack=["opentelemetry-instrumentation-haystack>=0.47.1"] diff --git a/src/lmnr/version.py b/src/lmnr/version.py index 3b63a9f6..da0b1dbe 100644 --- a/src/lmnr/version.py +++ b/src/lmnr/version.py @@ -3,7 +3,7 @@ from packaging import version -__version__ = "0.7.23a1" +__version__ = "0.7.23a2" PYTHON_VERSION = f"{sys.version_info.major}.{sys.version_info.minor}"