Skip to content

Commit e2d3a81

Browse files
authored
Merge branch 'main' into jb/aic-1628/readme-default-value-quickstart
2 parents 3b254bb + d9cac0a commit e2d3a81

7 files changed

Lines changed: 30 additions & 6 deletions

File tree

.release-please-manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"packages/sdk/server-ai": "0.15.0",
2+
"packages/sdk/server-ai": "0.16.0",
33
"packages/ai-providers/server-ai-langchain": "0.3.1",
4-
"packages/ai-providers/server-ai-openai": "0.1.1"
4+
"packages/ai-providers/server-ai-openai": "0.2.0"
55
}

packages/ai-providers/server-ai-openai/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## [0.2.0](https://github.com/launchdarkly/python-server-sdk-ai/compare/launchdarkly-server-sdk-ai-openai-0.1.1...launchdarkly-server-sdk-ai-openai-0.2.0) (2026-03-09)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* Rename default_value args to default
9+
10+
### Bug Fixes
11+
12+
* Make default optional with a disabled config default ([#97](https://github.com/launchdarkly/python-server-sdk-ai/issues/97)) ([39e09c6](https://github.com/launchdarkly/python-server-sdk-ai/commit/39e09c616bcb36af56983094039ee72a97bd1a19))
13+
* Rename default_value args to default ([39e09c6](https://github.com/launchdarkly/python-server-sdk-ai/commit/39e09c616bcb36af56983094039ee72a97bd1a19))
14+
315
## [0.1.1](https://github.com/launchdarkly/python-server-sdk-ai/compare/launchdarkly-server-sdk-ai-openai-0.1.0...launchdarkly-server-sdk-ai-openai-0.1.1) (2026-02-23)
416

517

packages/ai-providers/server-ai-openai/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "launchdarkly-server-sdk-ai-openai"
3-
version = "0.1.1"
3+
version = "0.2.0"
44
description = "LaunchDarkly AI SDK OpenAI Provider"
55
authors = ["LaunchDarkly <dev@launchdarkly.com>"]
66
license = "Apache-2.0"

packages/sdk/server-ai/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22

33
All notable changes to the LaunchDarkly Python AI package will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org).
44

5+
## [0.16.0](https://github.com/launchdarkly/python-server-sdk-ai/compare/launchdarkly-server-sdk-ai-0.15.0...launchdarkly-server-sdk-ai-0.16.0) (2026-03-09)
6+
7+
8+
### ⚠ BREAKING CHANGES
9+
10+
* Rename default_value args to default
11+
12+
### Bug Fixes
13+
14+
* Make default optional with a disabled config default ([#97](https://github.com/launchdarkly/python-server-sdk-ai/issues/97)) ([39e09c6](https://github.com/launchdarkly/python-server-sdk-ai/commit/39e09c616bcb36af56983094039ee72a97bd1a19))
15+
* Rename default_value args to default ([39e09c6](https://github.com/launchdarkly/python-server-sdk-ai/commit/39e09c616bcb36af56983094039ee72a97bd1a19))
16+
517
## [0.15.0](https://github.com/launchdarkly/python-server-sdk-ai/compare/launchdarkly-server-sdk-ai-0.14.2...launchdarkly-server-sdk-ai-0.15.0) (2026-03-02)
618

719

packages/sdk/server-ai/PROVENANCE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ To verify SLSA provenance attestations, we recommend using [slsa-verifier](https
1010

1111
```
1212
# Set the version of the library to verify
13-
VERSION=0.15.0
13+
VERSION=0.16.0
1414
```
1515

1616
<!-- x-release-please-end -->

packages/sdk/server-ai/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "launchdarkly-server-sdk-ai"
3-
version = "0.15.0"
3+
version = "0.16.0"
44
description = "LaunchDarkly SDK for AI"
55
authors = ["LaunchDarkly <dev@launchdarkly.com>"]
66
license = "Apache-2.0"

packages/sdk/server-ai/src/ldai/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.15.0" # x-release-please-version
1+
__version__ = "0.16.0" # x-release-please-version
22

33
from ldclient import log
44

0 commit comments

Comments
 (0)