diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 84871671e5..bfb9409d9c 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -7,5 +7,5 @@ "libs/partners/modal": "0.0.3", "libs/partners/runloop": "0.0.4", "libs/partners/quickjs": "0.1.2", - "libs/repl": "0.0.1" + "libs/repl": "0.0.2" } diff --git a/libs/evals/uv.lock b/libs/evals/uv.lock index 6a26a056fc..ef051b4bc9 100644 --- a/libs/evals/uv.lock +++ b/libs/evals/uv.lock @@ -1576,7 +1576,7 @@ test = [ [[package]] name = "langchain-repl" -version = "0.0.1" +version = "0.0.2" source = { editable = "../repl" } dependencies = [ { name = "deepagents", marker = "(platform_machine == 'arm64' and sys_platform == 'darwin') or (platform_machine == 'x86_64' and sys_platform == 'linux')" }, diff --git a/libs/repl/CHANGELOG.md b/libs/repl/CHANGELOG.md index 8040d7822f..05af5e576a 100644 --- a/libs/repl/CHANGELOG.md +++ b/libs/repl/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## [0.0.2](https://github.com/mayflower/deepagents/compare/langchain-repl==0.0.1...langchain-repl==0.0.2) (2026-05-12) + + +### Features + +* **repl:** add simple foreign object interface, add `+/-` operators ([#2725](https://github.com/mayflower/deepagents/issues/2725)) ([b00e16c](https://github.com/mayflower/deepagents/commit/b00e16c8d76397cb1851277b6beca3dfb17ad824)) +* **repl:** add tool runtime support to sync funcs ([#2726](https://github.com/mayflower/deepagents/issues/2726)) ([44ae33a](https://github.com/mayflower/deepagents/commit/44ae33a3191a22ea48ae4b262ca37364c99b691f)) + +## Changelog + --- ## Prior Releases diff --git a/libs/repl/langchain_repl/__init__.py b/libs/repl/langchain_repl/__init__.py index 502b8fa459..eb94ccd811 100644 --- a/libs/repl/langchain_repl/__init__.py +++ b/libs/repl/langchain_repl/__init__.py @@ -3,6 +3,6 @@ from langchain_repl.interpreter import ForeignObjectInterface, Interpreter from langchain_repl.middleware import ReplMiddleware -__version__ = "0.0.1" +__version__ = "0.0.2" __all__ = ["ForeignObjectInterface", "Interpreter", "ReplMiddleware", "__version__"] diff --git a/libs/repl/langchain_repl/_version.py b/libs/repl/langchain_repl/_version.py index 873fa0eea9..ca08c20cd3 100644 --- a/libs/repl/langchain_repl/_version.py +++ b/libs/repl/langchain_repl/_version.py @@ -1,3 +1,3 @@ """Version information for `langchain-repl`.""" -__version__ = "0.0.1" # x-release-please-version +__version__ = "0.0.2" # x-release-please-version diff --git a/libs/repl/pyproject.toml b/libs/repl/pyproject.toml index 6d73c579de..6e92cd5965 100644 --- a/libs/repl/pyproject.toml +++ b/libs/repl/pyproject.toml @@ -19,7 +19,7 @@ classifiers = [ "Topic :: Scientific/Engineering :: Artificial Intelligence", ] -version = "0.0.1" +version = "0.0.2" requires-python = ">=3.11,<4.0" dependencies = [ "deepagents", diff --git a/libs/repl/uv.lock b/libs/repl/uv.lock index 459cc7523c..14db245b8b 100644 --- a/libs/repl/uv.lock +++ b/libs/repl/uv.lock @@ -853,7 +853,7 @@ wheels = [ [[package]] name = "langchain-repl" -version = "0.0.1" +version = "0.0.2" source = { editable = "." } dependencies = [ { name = "deepagents" },