Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -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.0","python/packages/liman":"0.1.0","python/packages/liman_openapi":"0.1.0"}
25 changes: 25 additions & 0 deletions python/packages/liman/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
# Changelog

## [0.1.0](https://github.com/gurobokum/liman/compare/liman_py-v0.1.0-a4...liman_py-v0.1.0) (2026-05-25)


### ✨ Features

* **liman:** provide context during execution ([8902054](https://github.com/gurobokum/liman/commit/8902054ede2a6d82d019fb7b50ce7c365a4be2ba))


### πŸ›  Code Refactoring

* **liman:** drop aprefix method for StateStorage ([92d20c7](https://github.com/gurobokum/liman/commit/92d20c7a197f0ca36e4c3e06089056fe22d4e3e1))
* **liman:** executor as stateful restorable entity ([d1913f5](https://github.com/gurobokum/liman/commit/d1913f5f740a4a952a9675c530b6896b6d991028))
* **liman:** rename node_full_name to node_fullname ([b34b284](https://github.com/gurobokum/liman/commit/b34b2842e5c730418e14a9f6c582f07be05baa1f))


### πŸ“š Documentation

* **liman:** add codecov badge ([6a0a561](https://github.com/gurobokum/liman/commit/6a0a561942cf711d4b9c68d69c19c2ade8747154))


### ♻️ Tests

* **liman:** add tests for Agent ([11df3dc](https://github.com/gurobokum/liman/commit/11df3dc38a4d895604fe12ec389bfcad00ee41ea))
* **liman:** add tests for storage ([7fabc26](https://github.com/gurobokum/liman/commit/7fabc26f4ddfd85bcc99047deeb3229979e3235b))

## [0.1.0-a4](https://github.com/gurobokum/liman/compare/liman_py-v0.1.0-a3...liman_py-v0.1.0-a4) (2025-08-19)


Expand Down
2 changes: 1 addition & 1 deletion python/packages/liman/src/liman/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from liman.state import InMemoryStateStorage, StateStorage

# Don't update the version manually, it is set by the build system.
__version__ = "0.1.0-a4"
__version__ = "0.1.0"

__all__ = [
"Agent",
Expand Down
Loading