axio-context-sqlite 0.5.1__tar.gz → 0.6.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: axio-context-sqlite
3
- Version: 0.5.1
3
+ Version: 0.6.0
4
4
  Summary: SQLite-backed context store for Axio
5
5
  Project-URL: Homepage, https://github.com/axio-agent/monorepo
6
6
  Project-URL: Repository, https://github.com/axio-agent/monorepo
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "axio-context-sqlite"
3
- version = "0.5.1"
3
+ version = "0.6.0"
4
4
  description = "SQLite-backed context store for Axio"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.12"
@@ -185,6 +185,9 @@ class SQLiteContextStore(ContextStore):
185
185
  return 0, 0
186
186
  return int(row[0]), int(row[1])
187
187
 
188
+ async def close(self) -> None:
189
+ """No-op: the caller owns the connection."""
190
+
188
191
  async def list_sessions(self) -> list[SessionInfo]:
189
192
  """List all sessions for a project, newest first."""
190
193
  async with self._conn.execute(