From 5fbcbf7c7c23b6dbc91d92d29a833347a1cfb6c6 Mon Sep 17 00:00:00 2001 From: Guro Bokum Date: Sun, 24 May 2026 17:16:07 +0300 Subject: [PATCH] release(liman_core_py): 0.1.1 --- .release-please-manifest.json | 2 +- python/packages/liman_core/CHANGELOG.md | 17 +++++++++++++++++ .../liman_core/src/liman_core/__init__.py | 2 +- 3 files changed, 19 insertions(+), 2 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 197912d..88b6ec1 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1 @@ -{"python/packages/liman_core":"0.1.0","python/packages/liman":"0.1.0-a4","python/packages/liman_openapi":"0.1.0"} +{"python/packages/liman_core":"0.1.1","python/packages/liman":"0.1.0-a4","python/packages/liman_openapi":"0.1.0"} diff --git a/python/packages/liman_core/CHANGELOG.md b/python/packages/liman_core/CHANGELOG.md index c321d84..8ce37b1 100644 --- a/python/packages/liman_core/CHANGELOG.md +++ b/python/packages/liman_core/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## [0.1.1](https://github.com/gurobokum/liman/compare/liman_core_py-v0.1.0...liman_core_py-v0.1.1) (2026-05-24) + + +### ✨ Features + +* **liman_core:** add structured output to LLMNode ([f007127](https://github.com/gurobokum/liman/commit/f00712700beaba65d6533df7208670d23b7a9ac9)) + + +### 🛠 Code Refactoring + +* **liman:** executor as stateful restorable entity ([d1913f5](https://github.com/gurobokum/liman/commit/d1913f5f740a4a952a9675c530b6896b6d991028)) + + +### 📚 Documentation + +* add PyPI badges ([ff9a235](https://github.com/gurobokum/liman/commit/ff9a235a05af3fa8025fc6750f7ecb455ca1cde2)) + ## [0.1.0](https://github.com/gurobokum/liman/compare/liman_core_py-v0.1.0-a3...liman_core_py-v0.1.0) (2026-05-03) diff --git a/python/packages/liman_core/src/liman_core/__init__.py b/python/packages/liman_core/src/liman_core/__init__.py index ee296a3..b74738b 100644 --- a/python/packages/liman_core/src/liman_core/__init__.py +++ b/python/packages/liman_core/src/liman_core/__init__.py @@ -11,6 +11,6 @@ from liman_core.registry import Registry # Don't update the version manually, it is set by the build system. -__version__ = "0.1.0" +__version__ = "0.1.1" __all__ = ["LLMNode", "ToolNode", "NodeActor", "Registry"]