diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 30b6d45..78e7f27 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.10.1" + ".": "0.11.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index f8fb704..36dbfb9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to the LaunchDarkly Python AI package will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org). +## [0.11.0](https://github.com/launchdarkly/python-server-sdk-ai/compare/0.10.1...0.11.0) (2025-12-17) + + +### Features + +* Add Chat and Judge supporting methods ([#64](https://github.com/launchdarkly/python-server-sdk-ai/issues/64)) ([b63dbb5](https://github.com/launchdarkly/python-server-sdk-ai/commit/b63dbb5e3ccd6d2024d5c2b2761e04fcb7e86079)) + ## [0.10.1](https://github.com/launchdarkly/python-server-sdk-ai/compare/0.10.0...0.10.1) (2025-08-28) diff --git a/PROVENANCE.md b/PROVENANCE.md index 73d317c..690bd47 100644 --- a/PROVENANCE.md +++ b/PROVENANCE.md @@ -10,7 +10,7 @@ To verify SLSA provenance attestations, we recommend using [slsa-verifier](https ``` # Set the version of the library to verify -VERSION=0.10.1 +VERSION=0.11.0 ``` diff --git a/ldai/__init__.py b/ldai/__init__.py index d017cad..eb8c9e5 100644 --- a/ldai/__init__.py +++ b/ldai/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.10.1" # x-release-please-version +__version__ = "0.11.0" # x-release-please-version # Export main client # Export chat diff --git a/pyproject.toml b/pyproject.toml index 9c1f44a..6c2596f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "launchdarkly-server-sdk-ai" -version = "0.10.1" +version = "0.11.0" description = "LaunchDarkly SDK for AI" authors = ["LaunchDarkly "] license = "Apache-2.0"