Skip to content

Commit 39ac947

Browse files
committed
Bump versions
1 parent 4b657a0 commit 39ac947

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

agent-memory-client/agent_memory_client/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
memory management capabilities for AI agents and applications.
66
"""
77

8-
__version__ = "0.9.0b6"
8+
__version__ = "0.9.0b7"
99

1010
from .client import MemoryAPIClient, MemoryClientConfig, create_memory_client
1111
from .exceptions import (

agent_memory_server/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Redis Agent Memory Server - A memory system for conversational AI."""
22

3-
__version__ = "0.9.0b6"
3+
__version__ = "0.9.0b7"

agent_memory_server/cli.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
import click
1212
import uvicorn
1313

14+
from agent_memory_server import __version__
1415
from agent_memory_server.config import settings
1516
from agent_memory_server.logging import configure_logging, get_logger
1617
from agent_memory_server.migrations import (
@@ -24,7 +25,7 @@
2425
configure_logging()
2526
logger = get_logger(__name__)
2627

27-
VERSION = "0.2.0"
28+
VERSION = __version__
2829

2930

3031
@click.group()

0 commit comments

Comments
 (0)