Skip to content

Commit ea1e21c

Browse files
authored
Merge branch 'main' into jb/sdk-1401/remove-generic-generation-event
2 parents 6bd35ee + df8cc20 commit ea1e21c

14 files changed

+864
-129
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
strategy:
1818
matrix:
19-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
19+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
2020

2121
steps:
2222
- uses: actions/checkout@v4
@@ -46,7 +46,7 @@ jobs:
4646

4747
strategy:
4848
matrix:
49-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
49+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
5050

5151
steps:
5252
- uses: actions/checkout@v4

.github/workflows/manual-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
- uses: actions/setup-python@v5
2323
with:
24-
python-version: 3.8
24+
python-version: 3.9
2525

2626
- name: Install poetry
2727
uses: abatilo/actions-poetry@7b6d33e44b4f08d7021a1dee3c044e9c253d6439

.github/workflows/release-please.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- uses: actions/setup-python@v5
2828
if: ${{ steps.release.outputs.releases_created == 'true' }}
2929
with:
30-
python-version: 3.8
30+
python-version: 3.9
3131

3232
- name: Install poetry
3333
if: ${{ steps.release.outputs.releases_created == 'true' }}

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.8.1"
2+
".": "0.9.1"
33
}

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,24 @@
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.9.1](https://github.com/launchdarkly/python-server-sdk-ai/compare/0.9.0...0.9.1) (2025-06-26)
6+
7+
8+
### Bug Fixes
9+
10+
* Fix Bedrock response parsing ([#50](https://github.com/launchdarkly/python-server-sdk-ai/issues/50)) ([df90bc2](https://github.com/launchdarkly/python-server-sdk-ai/commit/df90bc24c98b5a57bf944225774989b689b65d93))
11+
12+
## [0.9.0](https://github.com/launchdarkly/python-server-sdk-ai/compare/0.8.1...0.9.0) (2025-06-26)
13+
14+
15+
### ⚠ BREAKING CHANGES
16+
17+
* Drop support for Python 3.8 (eol 2024-10-07) ([#48](https://github.com/launchdarkly/python-server-sdk-ai/issues/48))
18+
19+
### Features
20+
21+
* Drop support for Python 3.8 (eol 2024-10-07) ([#48](https://github.com/launchdarkly/python-server-sdk-ai/issues/48)) ([8f94da6](https://github.com/launchdarkly/python-server-sdk-ai/commit/8f94da65d9019e17fbabe1d1f5ce1168ace5957e))
22+
523
## [0.8.1](https://github.com/launchdarkly/python-server-sdk-ai/compare/0.8.0...0.8.1) (2025-04-03)
624

725

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ We encourage pull requests and other contributions from the community. Before su
1616

1717
This project is built using [poetry](https://python-poetry.org/). To learn more about the basics of working with this tool, read [Poetry's basic usage guide](https://python-poetry.org/docs/basic-usage/).
1818

19-
To begin development, active the poetry shell and ensure your dependencies are installed.
19+
To begin development, ensure your dependencies are installed and (optionally) activate the virtualenv.
2020

2121
```
22-
poetry shell
2322
poetry install
23+
eval $(poetry env activate)
2424
```
2525

2626
### Testing

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.8.1
13+
VERSION=0.9.1
1414
```
1515

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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
## Supported Python versions
1010

11-
This version of the library has a minimum Python version of 3.8.
11+
This version of the library has a minimum Python version of 3.9.
1212

1313
## Getting started
1414

ldai/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.8.1" # x-release-please-version
1+
__version__ = "0.9.1" # x-release-please-version

0 commit comments

Comments
 (0)