Skip to content

Commit a4be286

Browse files
committed
chore(version): bump version to 0.1.10.7
1 parent 0039cf8 commit a4be286

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<p align="center">
66
<a href="https://pypi.org/project/reme-ai/"><img src="https://img.shields.io/badge/python-3.12+-blue" alt="Python Version"></a>
7-
<a href="https://pypi.org/project/reme-ai/"><img src="https://img.shields.io/badge/pypi-v0.1.10.6-blue?logo=pypi" alt="PyPI Version"></a>
7+
<a href="https://pypi.org/project/reme-ai/"><img src="https://img.shields.io/badge/pypi-v0.1.10.7-blue?logo=pypi" alt="PyPI Version"></a>
88
<a href="./LICENSE"><img src="https://img.shields.io/badge/license-Apache--2.0-black" alt="License"></a>
99
<a href="https://github.com/modelscope/ReMe"><img src="https://img.shields.io/github/stars/modelscope/ReMe?style=social" alt="GitHub Stars"></a>
1010
</p>
@@ -28,7 +28,7 @@ Personal memory helps "**understand user preferences**", task memory helps agent
2828

2929
## 📰 Latest Updates
3030

31-
- **[2025-10]** 🚀 ReMe v0.1.10.6 released! Core enhancement: direct Python import support. You can now use ReMe without starting an HTTP or MCP service - simply `from reme_ai import ReMeApp` and call methods directly in your Python code.
31+
- **[2025-10]** 🚀 ReMe v0.1.10.7 released! Core enhancement: direct Python import support. You can now use ReMe without starting an HTTP or MCP service - simply `from reme_ai import ReMeApp` and call methods directly in your Python code.
3232
- **[2025-10]** 🔧 Tool Memory support is now available! Enables data-driven tool selection and parameter optimization through historical performance tracking. Check out the [Tool Memory Guide](docs/tool_memory/tool_memory.md) and [benchmark results](docs/tool_memory/tool_bench.md).
3333
- **[2025-09]** 🎉 ReMe v0.1.9 has been officially released, adding support for asynchronous operations. It has also been
3434
integrated into the memory service of agentscope-runtime.

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ kernelspec:
1717

1818
<div class="flex justify-center space-x-3">
1919
<a href="https://pypi.org/project/reme-ai/"><img src="https://img.shields.io/badge/python-3.12+-blue" alt="Python Version"></a>
20-
<a href="https://pypi.org/project/reme-ai/"><img src="https://img.shields.io/badge/pypi-v0.1.10.6-blue?logo=pypi" alt="PyPI Version"></a>
20+
<a href="https://pypi.org/project/reme-ai/"><img src="https://img.shields.io/badge/pypi-v0.1.10.7-blue?logo=pypi" alt="PyPI Version"></a>
2121
<a href="./LICENSE"><img src="https://img.shields.io/badge/license-Apache--2.0-black" alt="License"></a>
2222
<a href="https://github.com/modelscope/ReMe"><img src="https://img.shields.io/github/stars/modelscope/ReMe?style=social" alt="GitHub Stars"></a>
2323
</div>

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "reme_ai"
7-
version = "0.1.10.6"
7+
version = "0.1.10.7"
88
description = "Remember me"
99
authors = [
1010
{ name = "jinli.yl", email = "[email protected]" },
@@ -24,7 +24,7 @@ classifiers = [
2424
keywords = ["llm", "memory", "experience", "memoryscope", "ai", "mcp", "http"]
2525

2626
dependencies = [
27-
"flowllm[reme]>=0.1.11.5",
27+
"flowllm[reme]>=0.1.11.6",
2828
]
2929

3030
[project.optional-dependencies]

reme_ai/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
os.environ["FLOW_APP_NAME"] = "ReMe"
44

5-
__version__ = "0.1.10.6"
5+
__version__ = "0.1.10.7"
66

77
from reme_ai.app import ReMeApp
88
from . import agent

0 commit comments

Comments
 (0)