Skip to content

Commit 6f20bc8

Browse files
committed
Bump version: 0.5.5 -> 0.5.6
1 parent df582d9 commit 6f20bc8

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.5.5
2+
current_version = 0.5.6
33
commit = True
44
tag = True
55
tag_name = v{new_version}

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.5.5
1+
0.5.6

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 = "recallrai"
3-
version = "0.5.5"
3+
version = "0.5.6"
44
description = "Official Python SDK for RecallrAI - Revolutionary contextual memory system that enables AI assistants to form meaningful connections between conversations, just like human memory."
55
authors = ["Devasheesh Mishra <devasheesh@recallrai.com>"]
66
license = "MIT License"

recallrai/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
from .async_session import AsyncSession
1414
from .async_merge_conflict import AsyncMergeConflict
1515

16-
__version__ = "0.5.5"
16+
__version__ = "0.5.6"
1717

1818
__all__ = [
1919
"RecallrAI",

recallrai/utils/async_http_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ async def _ensure_client(self):
8686
"X-Recallr-Project-Id": self.project_id,
8787
"Content-Type": "application/json",
8888
"Accept": "application/json",
89-
"User-Agent": f"RecallrAI-Python-SDK/0.5.5",
89+
"User-Agent": f"RecallrAI-Python-SDK/0.5.6",
9090
},
9191
)
9292

recallrai/utils/http_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def __init__(
5252
"X-Recallr-Project-Id": self.project_id,
5353
"Content-Type": "application/json",
5454
"Accept": "application/json",
55-
"User-Agent": f"RecallrAI-Python-SDK/0.5.5",
55+
"User-Agent": f"RecallrAI-Python-SDK/0.5.6",
5656
},
5757
)
5858

0 commit comments

Comments
 (0)