Skip to content

Commit 355de25

Browse files
release: 0.4.0-alpha.13 (#309)
Automated Release PR --- ## 0.4.0-alpha.13 (2025-12-15) Full Changelog: [v0.4.0-alpha.12...v0.4.0-alpha.13](v0.4.0-alpha.12...v0.4.0-alpha.13) ### Bug Fixes * **ci:** restore push triggers for Stainless preview builds ([71c9874](71c9874)) ### Chores * add license header on all files ([#308](#308)) ([8fe2baf](8fe2baf)) * update uv.lock ([4665b4f](4665b4f)) --- This pull request is managed by Stainless's [GitHub App](https://github.com/apps/stainless-app). The [semver version number](https://semver.org/#semantic-versioning-specification-semver) is based on included [commit messages](https://www.conventionalcommits.org/en/v1.0.0/). Alternatively, you can manually set the version number in the title of this pull request. For a better experience, it is recommended to use either rebase-merge or squash-merge when merging this pull request. 🔗 Stainless [website](https://www.stainlessapi.com) 📚 Read the [docs](https://app.stainlessapi.com/docs) 🙋 [Reach out](mailto:support@stainlessapi.com) for help or questions --------- Signed-off-by: Charlie Doern <cdoern@redhat.com> Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com> Co-authored-by: Charlie Doern <cdoern@redhat.com>
1 parent 8fe2baf commit 355de25

File tree

6 files changed

+1124
-761
lines changed

6 files changed

+1124
-761
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
name: CI
22
on:
3-
workflow_dispatch:
3+
push:
4+
branches-ignore:
5+
- 'generated'
6+
- 'codegen/**'
7+
- 'integrated/**'
8+
- 'stl-preview-head/**'
9+
- 'stl-preview-base/**'
10+
pull_request:
11+
branches-ignore:
12+
- 'stl-preview-head/**'
13+
- 'stl-preview-base/**'
14+
workflow_dispatch:
415

516
jobs:
617
lint:

.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.4.0-alpha.12"
2+
".": "0.4.0-alpha.13"
33
}

CHANGELOG.md

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

3+
## 0.4.0-alpha.13 (2025-12-15)
4+
5+
Full Changelog: [v0.4.0-alpha.12...v0.4.0-alpha.13](https://github.com/llamastack/llama-stack-client-python/compare/v0.4.0-alpha.12...v0.4.0-alpha.13)
6+
7+
### Bug Fixes
8+
9+
* **ci:** restore push triggers for Stainless preview builds ([71c9874](https://github.com/llamastack/llama-stack-client-python/commit/71c9874d1106f12de11abcf4254f13af6533d58c))
10+
11+
12+
### Chores
13+
14+
* add license header on all files ([#308](https://github.com/llamastack/llama-stack-client-python/issues/308)) ([8fe2baf](https://github.com/llamastack/llama-stack-client-python/commit/8fe2baf1d53aacdb41f3e47aee91a1a8ea094a90))
15+
* update uv.lock ([4665b4f](https://github.com/llamastack/llama-stack-client-python/commit/4665b4f708ddf4f96a031edc80bb226da8b0ec37))
16+
317
## 0.4.0-alpha.12 (2025-11-19)
418

519
Full Changelog: [v0.4.0-alpha.11...v0.4.0-alpha.12](https://github.com/llamastack/llama-stack-client-python/compare/v0.4.0-alpha.11...v0.4.0-alpha.12)

pyproject.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "llama_stack_client"
3-
version = "0.4.0-alpha.12"
3+
version = "0.4.0-alpha.13"
44
description = "The official Python library for the llama-stack-client API"
55
dynamic = ["readme"]
66
license = "MIT"
@@ -27,6 +27,7 @@ classifiers = [
2727
"Typing :: Typed",
2828
"Intended Audience :: Developers",
2929
"Programming Language :: Python :: 3.12",
30+
"Programming Language :: Python :: 3.14",
3031
"Operating System :: OS Independent",
3132
"Operating System :: POSIX",
3233
"Operating System :: MacOS",
@@ -74,7 +75,8 @@ pydantic-v1 = [
7475
"pydantic>=1.9.0,<2",
7576
]
7677
pydantic-v2 = [
77-
"pydantic>=2,<3",
78+
"pydantic~=2.0 ; python_full_version < '3.14'",
79+
"pydantic~=2.12 ; python_full_version >= '3.14'",
7880
]
7981

8082

requirements-dev.lock

Lines changed: 129 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,66 +1,159 @@
11
# This file was autogenerated by uv via the following command:
22
# uv export -o requirements-dev.lock --no-hashes
33
-e .
4-
annotated-types==0.7.0 ; extra == 'group-18-llama-stack-client-pydantic-v2' or extra != 'group-18-llama-stack-client-pydantic-v1'
5-
anyio==4.8.0
6-
black==25.9.0
7-
certifi==2024.12.14
8-
cfgv==3.4.0
4+
annotated-types==0.7.0
5+
# via pydantic
6+
anyio==4.11.0
7+
# via
8+
# httpx
9+
# llama-stack-client
10+
black==25.11.0
11+
certifi==2025.11.12
12+
# via
13+
# httpcore
14+
# httpx
15+
# requests
16+
cfgv==3.5.0
17+
# via pre-commit
918
charset-normalizer==3.4.4
10-
click==8.3.0
11-
colorama==0.4.6 ; sys_platform == 'win32' or (extra == 'group-18-llama-stack-client-pydantic-v1' and extra == 'group-18-llama-stack-client-pydantic-v2')
12-
dirty-equals==0.9.0
19+
# via requests
20+
click==8.3.1
21+
# via
22+
# black
23+
# llama-stack-client
24+
colorama==0.4.6 ; sys_platform == 'win32'
25+
# via
26+
# click
27+
# pytest
28+
# tqdm
29+
dirty-equals==0.11
1330
distlib==0.4.0
31+
# via virtualenv
1432
distro==1.9.0
15-
execnet==2.1.1
33+
# via llama-stack-client
34+
execnet==2.1.2
35+
# via pytest-xdist
1636
filelock==3.20.0
37+
# via virtualenv
1738
fire==0.7.1
39+
# via llama-stack-client
1840
h11==0.16.0
41+
# via httpcore
1942
httpcore==1.0.9
43+
# via httpx
2044
httpx==0.28.1
45+
# via
46+
# llama-stack-client
47+
# respx
2148
identify==2.6.15
22-
idna==3.10
23-
importlib-metadata==8.6.1
24-
iniconfig==2.0.0
25-
markdown-it-py==3.0.0
49+
# via pre-commit
50+
idna==3.11
51+
# via
52+
# anyio
53+
# httpx
54+
# requests
55+
importlib-metadata==8.7.0
56+
iniconfig==2.3.0
57+
# via pytest
58+
markdown-it-py==4.0.0
59+
# via rich
2660
mdurl==0.1.2
27-
mypy==1.14.1
28-
mypy-extensions==1.0.0
61+
# via markdown-it-py
62+
mypy==1.18.2
63+
mypy-extensions==1.1.0
64+
# via
65+
# black
66+
# mypy
2967
nodeenv==1.9.1
30-
numpy==2.3.4
31-
packaging==24.2
68+
# via
69+
# pre-commit
70+
# pyright
71+
numpy==2.3.5
72+
# via pandas
73+
packaging==25.0
74+
# via
75+
# black
76+
# pytest
3277
pandas==2.3.3
78+
# via llama-stack-client
3379
pathspec==0.12.1
80+
# via
81+
# black
82+
# mypy
3483
platformdirs==4.5.0
35-
pluggy==1.5.0
36-
pre-commit==4.3.0
84+
# via
85+
# black
86+
# virtualenv
87+
pluggy==1.6.0
88+
# via pytest
89+
pre-commit==4.5.0
3790
prompt-toolkit==3.0.52
91+
# via llama-stack-client
3892
pyaml==25.7.0
39-
pydantic==1.10.23 ; extra == 'group-18-llama-stack-client-pydantic-v1'
40-
pydantic==2.11.9 ; extra == 'group-18-llama-stack-client-pydantic-v2' or extra != 'group-18-llama-stack-client-pydantic-v1'
41-
pydantic-core==2.33.2 ; extra == 'group-18-llama-stack-client-pydantic-v2' or extra != 'group-18-llama-stack-client-pydantic-v1'
42-
pygments==2.19.1
93+
# via llama-stack-client
94+
pydantic==2.12.4
95+
# via llama-stack-client
96+
pydantic-core==2.41.5
97+
# via pydantic
98+
pygments==2.19.2
99+
# via
100+
# pytest
101+
# rich
43102
pyright==1.1.399
44-
pytest==8.4.1
45-
pytest-asyncio==0.24.0
46-
pytest-xdist==3.7.0
103+
pytest==9.0.1
104+
# via
105+
# pytest-asyncio
106+
# pytest-xdist
107+
pytest-asyncio==1.3.0
108+
pytest-xdist==3.8.0
47109
python-dateutil==2.9.0.post0
48-
pytokens==0.2.0
49-
pytz==2024.2
110+
# via pandas
111+
pytokens==0.3.0
112+
# via black
113+
pytz==2025.2
114+
# via pandas
50115
pyyaml==6.0.3
116+
# via
117+
# pre-commit
118+
# pyaml
51119
requests==2.32.5
120+
# via llama-stack-client
52121
respx==0.22.0
53-
rich==13.9.4
54-
ruff==0.9.4
122+
rich==14.2.0
123+
# via llama-stack-client
124+
ruff==0.14.6
55125
six==1.17.0
126+
# via python-dateutil
56127
sniffio==1.3.1
57-
termcolor==3.1.0
58-
time-machine==2.16.0
128+
# via
129+
# anyio
130+
# llama-stack-client
131+
termcolor==3.2.0
132+
# via
133+
# fire
134+
# llama-stack-client
135+
time-machine==3.1.0
59136
tqdm==4.67.1
60-
typing-extensions==4.12.2
61-
typing-inspection==0.4.1 ; extra == 'group-18-llama-stack-client-pydantic-v2' or extra != 'group-18-llama-stack-client-pydantic-v1'
137+
# via llama-stack-client
138+
typing-extensions==4.15.0
139+
# via
140+
# anyio
141+
# llama-stack-client
142+
# mypy
143+
# pydantic
144+
# pydantic-core
145+
# pyright
146+
# pytest-asyncio
147+
# typing-inspection
148+
typing-inspection==0.4.2
149+
# via pydantic
62150
tzdata==2025.2
151+
# via pandas
63152
urllib3==2.5.0
64-
virtualenv==20.35.3
153+
# via requests
154+
virtualenv==20.35.4
155+
# via pre-commit
65156
wcwidth==0.2.14
66-
zipp==3.21.0
157+
# via prompt-toolkit
158+
zipp==3.23.0
159+
# via importlib-metadata

0 commit comments

Comments
 (0)