From 0c0038e54f42334a1ae54b3db1d0474c6787e2d5 Mon Sep 17 00:00:00 2001 From: Drew Stone Date: Thu, 30 Jul 2026 17:51:51 -0600 Subject: [PATCH] chore(release): complete the 0.138.0 version lock The release bump covered package.json and pyproject.toml but missed the two other pinned sites verify-package-exports checks: the PyPI fallback __version__ and the uv.lock package record. All four now say 0.138.0; pnpm verify:package passes locally. --- clients/python/src/agent_eval_rpc/__init__.py | 2 +- clients/python/uv.lock | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/clients/python/src/agent_eval_rpc/__init__.py b/clients/python/src/agent_eval_rpc/__init__.py index 6c0d8f8f..976adb75 100644 --- a/clients/python/src/agent_eval_rpc/__init__.py +++ b/clients/python/src/agent_eval_rpc/__init__.py @@ -53,7 +53,7 @@ try: __version__ = version("agent-eval-rpc") except PackageNotFoundError: - __version__ = "0.137.0" + __version__ = "0.138.0" __all__ = [ "Client", diff --git a/clients/python/uv.lock b/clients/python/uv.lock index 5e67694e..e347a1d6 100644 --- a/clients/python/uv.lock +++ b/clients/python/uv.lock @@ -34,7 +34,7 @@ conflicts = [[ [[package]] name = "agent-eval-rpc" -version = "0.137.0" +version = "0.138.0" source = { editable = "." } dependencies = [ { name = "filelock" },