Skip to content

Commit de86cf7

Browse files
stainless-app[bot]cdoern
authored andcommitted
release: 0.5.0-alpha.1
Signed-off-by: Charlie Doern <cdoern@redhat.com>
1 parent ab99ad0 commit de86cf7

File tree

6 files changed

+33
-3
lines changed

6 files changed

+33
-3
lines changed

.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.15"
2+
".": "0.5.0-alpha.1"
33
}

CHANGELOG.md

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

3+
## 0.5.0-alpha.1 (2026-02-04)
4+
5+
Full Changelog: [v0.4.0-alpha.15...v0.5.0-alpha.1](https://github.com/llamastack/llama-stack-client-python/compare/v0.4.0-alpha.15...v0.5.0-alpha.1)
6+
7+
### Features
8+
9+
* **client:** add custom JSON encoder for extended type support ([ab99ad0](https://github.com/llamastack/llama-stack-client-python/commit/ab99ad06208995a0c6b8424d03023f6045c57cab))
10+
* **client:** add support for binary request streaming ([d17dede](https://github.com/llamastack/llama-stack-client-python/commit/d17dede18fa45e3433bea4923d4b280331257975))
11+
12+
13+
### Chores
14+
15+
* **ci:** upgrade `actions/github-script` ([b6d410f](https://github.com/llamastack/llama-stack-client-python/commit/b6d410fbaa61ade006142c755b8abff2639aa461))
16+
* **internal:** codegen related update ([a176b2e](https://github.com/llamastack/llama-stack-client-python/commit/a176b2e9501b6855ba31f420ea23f1e94170e7aa))
17+
* **internal:** codegen related update ([4cf153d](https://github.com/llamastack/llama-stack-client-python/commit/4cf153ddfbe68ce5966ec1d199e3c6fb69c1abe0))
18+
* **internal:** update `actions/checkout` version ([527e428](https://github.com/llamastack/llama-stack-client-python/commit/527e4289cbd3f696cfd3f4b288784683819317be))
19+
* **internal:** version bump ([580d0ff](https://github.com/llamastack/llama-stack-client-python/commit/580d0ffc4b0540294cf42bd28d6dd3254586133f))
20+
321
## 0.4.0-alpha.15 (2026-01-06)
422

523
Full Changelog: [v0.4.0-alpha.14...v0.4.0-alpha.15](https://github.com/llamastack/llama-stack-client-python/compare/v0.4.0-alpha.14...v0.4.0-alpha.15)

pyproject.toml

Lines changed: 1 addition & 1 deletion
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.15"
3+
version = "0.5.0-alpha.1"
44
description = "The official Python library for the llama-stack-client API"
55
dynamic = ["readme"]
66
license = "MIT"

src/llama_stack_client/_utils/_json.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# Copyright (c) Meta Platforms, Inc. and affiliates.
2+
# All rights reserved.
3+
#
4+
# This source code is licensed under the terms described in the LICENSE file in
5+
# the root directory of this source tree.
6+
17
import json
28
from typing import Any
39
from datetime import datetime

src/llama_stack_client/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
88

99
__title__ = "llama_stack_client"
10-
__version__ = "0.4.0-alpha.15" # x-release-please-version
10+
__version__ = "0.5.0-alpha.1" # x-release-please-version

tests/test_utils/test_json.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# Copyright (c) Meta Platforms, Inc. and affiliates.
2+
# All rights reserved.
3+
#
4+
# This source code is licensed under the terms described in the LICENSE file in
5+
# the root directory of this source tree.
6+
17
from __future__ import annotations
28

39
import datetime

0 commit comments

Comments
 (0)