Skip to content

Commit 64d8a7e

Browse files
committed
Bump version: 0.6.2 -> 0.6.3
1 parent 7484c63 commit 64d8a7e

6 files changed

Lines changed: 7 additions & 7 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.6.2
2+
current_version = 0.6.3
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.6.2
1+
0.6.3

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.6.2"
3+
version = "0.6.3"
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.6.2"
16+
__version__ = "0.6.3"
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
@@ -76,7 +76,7 @@ async def __aenter__(self):
7676
"X-Recallr-Project-Id": self.project_id,
7777
"Content-Type": "application/json",
7878
"Accept": "application/json",
79-
"User-Agent": "RecallrAI-Python-SDK/0.6.2",
79+
"User-Agent": "RecallrAI-Python-SDK/0.6.3",
8080
},
8181
)
8282
return self
@@ -103,7 +103,7 @@ async def _ensure_client(self):
103103
"X-Recallr-Project-Id": self.project_id,
104104
"Content-Type": "application/json",
105105
"Accept": "application/json",
106-
"User-Agent": "RecallrAI-Python-SDK/0.6.2",
106+
"User-Agent": "RecallrAI-Python-SDK/0.6.3",
107107
},
108108
)
109109

recallrai/utils/http_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def __init__(
5454
"X-Recallr-Project-Id": self.project_id,
5555
"Content-Type": "application/json",
5656
"Accept": "application/json",
57-
"User-Agent": "RecallrAI-Python-SDK/0.6.2",
57+
"User-Agent": "RecallrAI-Python-SDK/0.6.3",
5858
},
5959
)
6060
self._system_prompt_cache: Optional[str] = None

0 commit comments

Comments
 (0)