From 96f226cf22cf22f034f756422366517b2dca1682 Mon Sep 17 00:00:00 2001 From: Aayush Kataria Date: Mon, 17 Aug 2026 15:56:52 -0700 Subject: [PATCH] Release 0.3.0b2 --- CHANGELOG.md | 2 +- azure.yaml | 2 +- function_app/requirements.txt | 2 +- pyproject.toml | 2 +- uv.lock | 4 +++- 5 files changed, 7 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4215adb..a6093eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ ## Release History -## [0.3.0b2] (Unreleased) +## [0.3.0b2] (2026-08-17) #### Features Added * Episodic memory is now a first-class memory type. Bounded experiences are segmented from the turn stream at idle-gap, topic-drift, and max-size boundaries, each captured as an `EpisodicRecord` with a summary, timeline events, an optional outcome, and first-class `lessons`. See [PR:#37](https://github.com/AzureCosmosDB/AgentMemoryToolkit/pull/37) diff --git a/azure.yaml b/azure.yaml index 6cf6f76..d20cffd 100644 --- a/azure.yaml +++ b/azure.yaml @@ -2,7 +2,7 @@ name: azure-cosmos-agent-memory metadata: - template: azure-cosmos-agent-memory@0.3.0b1 + template: azure-cosmos-agent-memory@0.3.0b2 infra: provider: bicep diff --git a/function_app/requirements.txt b/function_app/requirements.txt index 5cd9083..4b710f4 100644 --- a/function_app/requirements.txt +++ b/function_app/requirements.txt @@ -2,7 +2,7 @@ azure-functions azure-functions-durable -azure-cosmos-agent-memory==0.3.0b1 +azure-cosmos-agent-memory==0.3.0b2 azure-cosmos>=4.16.0 azure-identity>=1.20 diff --git a/pyproject.toml b/pyproject.toml index 2d353a1..8161568 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,7 @@ namespaces = true [project] name = "azure-cosmos-agent-memory" -version = "0.3.0b1" +version = "0.3.0b2" description = "Store, retrieve, and transform AI agent memories backed by Azure Cosmos DB" readme = "README.md" license = {file = "LICENSE"} diff --git a/uv.lock b/uv.lock index 529656a..cea8249 100644 --- a/uv.lock +++ b/uv.lock @@ -194,7 +194,7 @@ wheels = [ [[package]] name = "azure-cosmos-agent-memory" -version = "0.3.0b1" +version = "0.3.0b2" source = { editable = "." } dependencies = [ { name = "aiohttp" }, @@ -210,6 +210,7 @@ dependencies = [ [package.optional-dependencies] dev = [ + { name = "httpx" }, { name = "pytest" }, { name = "pytest-asyncio" }, { name = "pytest-cov" }, @@ -223,6 +224,7 @@ requires-dist = [ { name = "aiohttp", specifier = ">=3.10" }, { name = "azure-cosmos", specifier = ">=4.16.0" }, { name = "azure-identity", specifier = ">=1.20" }, + { name = "httpx", marker = "extra == 'dev'", specifier = ">=0.27" }, { name = "jinja2", specifier = ">=3.1.4" }, { name = "openai", specifier = ">=1.60" }, { name = "prompty", specifier = ">=2.0.0a9" },