Skip to content

Commit ccfa23a

Browse files
committed
Bump version: 0.5.6 -> 0.5.7
1 parent a46f7fb commit ccfa23a

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.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.6
2+
current_version = 0.5.7
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.6
1+
0.5.7

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.6"
3+
version = "0.5.7"
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.6"
16+
__version__ = "0.5.7"
1717

1818
__all__ = [
1919
"RecallrAI",

recallrai/utils/async_http_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ async def __aenter__(self):
5858
"X-Recallr-Project-Id": self.project_id,
5959
"Content-Type": "application/json",
6060
"Accept": "application/json",
61-
"User-Agent": "RecallrAI-Python-SDK/0.5.6",
61+
"User-Agent": "RecallrAI-Python-SDK/0.5.7",
6262
},
6363
)
6464
return self
@@ -85,7 +85,7 @@ async def _ensure_client(self):
8585
"X-Recallr-Project-Id": self.project_id,
8686
"Content-Type": "application/json",
8787
"Accept": "application/json",
88-
"User-Agent": f"RecallrAI-Python-SDK/0.5.6",
88+
"User-Agent": f"RecallrAI-Python-SDK/0.5.7",
8989
},
9090
)
9191

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": "RecallrAI-Python-SDK/0.5.6",
55+
"User-Agent": "RecallrAI-Python-SDK/0.5.7",
5656
},
5757
)
5858

0 commit comments

Comments
 (0)