From 3fa4f35edd2761e2748c604514d914d30391d87f Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 18 Dec 2025 20:32:51 +0000 Subject: [PATCH 1/3] codegen metadata --- .stats.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.stats.yml b/.stats.yml index 737a29d..9112a62 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 7 openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/meta%2Fllama-api-edf0a308dd29bea2feb29f2e7f04eec4dbfb130ffe52511641783958168f60a4.yml openapi_spec_hash: 23af966c58151516aaef00e0af602c01 -config_hash: 416c3d950e58dbdb47588eaf29fa9fa5 +config_hash: 9993369435d908fb9a44071f4ce884b2 From 4ce638727e94b36a5619357b7243d36f384bf62e Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 18 Dec 2025 21:55:35 +0000 Subject: [PATCH 2/3] chore(internal): add `--fix` argument to lint script --- scripts/lint | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/scripts/lint b/scripts/lint index c9b2d29..362fe3e 100755 --- a/scripts/lint +++ b/scripts/lint @@ -4,8 +4,13 @@ set -e cd "$(dirname "$0")/.." -echo "==> Running lints" -rye run lint +if [ "$1" = "--fix" ]; then + echo "==> Running lints with --fix" + rye run fix:ruff +else + echo "==> Running lints" + rye run lint +fi echo "==> Making sure it imports" rye run python -c 'import llama_api_client' From 335ddc140e467ae153a6a7e7ef073e9947f0b314 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 18 Dec 2025 21:55:54 +0000 Subject: [PATCH 3/3] release: 0.6.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ pyproject.toml | 2 +- src/llama_api_client/_version.py | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 4208b5c..ac03171 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.6.0" + ".": "0.6.1" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 4724323..b1bec3a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.6.1 (2025-12-18) + +Full Changelog: [v0.6.0...v0.6.1](https://github.com/meta-llama/llama-api-python/compare/v0.6.0...v0.6.1) + +### Chores + +* **internal:** add `--fix` argument to lint script ([4ce6387](https://github.com/meta-llama/llama-api-python/commit/4ce638727e94b36a5619357b7243d36f384bf62e)) + ## 0.6.0 (2025-12-18) Full Changelog: [v0.5.0...v0.6.0](https://github.com/meta-llama/llama-api-python/compare/v0.5.0...v0.6.0) diff --git a/pyproject.toml b/pyproject.toml index 936914d..d6ee065 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "llama_api_client" -version = "0.6.0" +version = "0.6.1" description = "The official Python library for the llama-api-client API" dynamic = ["readme"] license = "MIT" diff --git a/src/llama_api_client/_version.py b/src/llama_api_client/_version.py index 662b89a..bd449e3 100644 --- a/src/llama_api_client/_version.py +++ b/src/llama_api_client/_version.py @@ -1,4 +1,4 @@ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. __title__ = "llama_api_client" -__version__ = "0.6.0" # x-release-please-version +__version__ = "0.6.1" # x-release-please-version