From 524869668d14cd41d0320ab2989015e49f2a9359 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Wed, 30 Oct 2024 18:33:30 -0400 Subject: [PATCH] Bump version to 0.1.4 and update CHANGELOG to introduce Session class for managing multiple conversations --- CHANGELOG.md | 4 ++++ pyproject.toml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cc074ba..2769751 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ Release History =============== +## 0.1.4 (2024-10-30) + +- Introduce `Session` class to manage multiple conversations. +- General improvements. ## 0.1.3 (2024-10-30) diff --git a/pyproject.toml b/pyproject.toml index f23f7e8..c86f0c2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "simplemind" -version = "0.1.3" +version = "0.1.4" description = "An experimental client for AI providers that intends to replace LangChain and LangGraph for most common use cases." readme = "README.md" requires-python = ">=3.11"