Skip to content

Commit 7d8622c

Browse files
committed
Version bump to 2.2.6
1 parent 755480b commit 7d8622c

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "rigging"
3-
version = "2.2.5"
3+
version = "2.2.6"
44
description = "LLM Interaction Framework"
55
authors = ["Nick Landers <monoxgas@gmail.com>"]
66
license = "MIT"

rigging/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from rigging.util import await_
2020

2121
# TODO: Migrate to importlib for this
22-
__version__ = "2.2.5"
22+
__version__ = "2.2.6"
2323

2424
__all__ = [
2525
"get_generator",

rigging/prompt.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -453,6 +453,7 @@ def __post_init__(self) -> None:
453453
self.output = parse_output(signature.return_annotation, error_name)
454454

455455
self.__signature__ = signature
456+
self.__name__ = self.func.__name__
456457

457458
@property
458459
def docstring(self) -> str:

0 commit comments

Comments
 (0)