Skip to content

Commit fdd7322

Browse files
committed
Bump version: 0.3.0 → 0.3.1
1 parent 50d80b0 commit fdd7322

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
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.3.0
2+
current_version = 0.3.1
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.3.0
1+
0.3.1

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.3.0"
3+
version = "0.3.1"
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 <devasheeshmishra4@gmail.com>"]
66
license = "MIT License"

recallrai/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from .user import User
99
from .session import Session
1010

11-
__version__ = "0.3.0"
11+
__version__ = "0.3.1"
1212

1313
__all__ = [
1414
"RecallrAI",

recallrai/utils/http_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def __init__(
4444
"X-Recallr-Project-Id": self.project_id,
4545
"Content-Type": "application/json",
4646
"Accept": "application/json",
47-
"User-Agent": f"RecallrAI-Python-SDK/0.3.0",
47+
"User-Agent": f"RecallrAI-Python-SDK/0.3.1",
4848
},
4949
)
5050

0 commit comments

Comments
 (0)