From 7c8f22bef11bec296562d21116d306bc5ca2dff2 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Thu, 31 Oct 2024 16:35:24 -0400 Subject: [PATCH] Update version to v0.1.6 and add sm.Plugin syntax sugar --- CHANGELOG.md | 2 +- docs/conf.py | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0a45167..f0e88da 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,7 @@ Release History ## 0.1.6 (2024-10-31) -- Add `Plugin` syntax sugar. +- Add `sm.Plugin` syntax sugar. - Improvements to Anthropic provider, related to max tokens. - General improvements. - Add tests for structured response. diff --git a/docs/conf.py b/docs/conf.py index fc21e82..30c9fd6 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -16,7 +16,7 @@ import simplemind project = "simplemind" copyright = "2024 Kenneth Reitz" author = "Kenneth Reitz" -release = "v0.1.5" +release = "v0.1.6" # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/pyproject.toml b/pyproject.toml index 93be072..6da1744 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "simplemind" -version = "0.1.5" +version = "0.1.6" 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.10"