Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.6.0"
".": "0.6.1"
}
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
9 changes: 7 additions & 2 deletions scripts/lint
Original file line number Diff line number Diff line change
Expand Up @@ -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'
2 changes: 1 addition & 1 deletion src/llama_api_client/_version.py
Original file line number Diff line number Diff line change
@@ -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