Skip to content

Commit 7a8c583

Browse files
release: 0.2.0
1 parent 4f1a04e commit 7a8c583

File tree

4 files changed

+40
-3
lines changed

4 files changed

+40
-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.1.2"
2+
".": "0.2.0"
33
}

CHANGELOG.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# Changelog
2+
3+
## 0.2.0 (2025-08-07)
4+
5+
Full Changelog: [v0.1.2...v0.2.0](https://github.com/meta-llama/llama-api-python/compare/v0.1.2...v0.2.0)
6+
7+
### Features
8+
9+
* clean up environment call outs ([4afbd01](https://github.com/meta-llama/llama-api-python/commit/4afbd01ed735b93d8b4c8c282881f2b78673995c))
10+
* **client:** support file upload requests ([ec42e80](https://github.com/meta-llama/llama-api-python/commit/ec42e80b6249b3af1f3474ad4fba61d669ec0035))
11+
12+
13+
### Bug Fixes
14+
15+
* **api:** remove chat completion request model ([94c4e9f](https://github.com/meta-llama/llama-api-python/commit/94c4e9fd500502781a0f6e30715ecbd134d015db))
16+
* **client:** don't send Content-Type header on GET requests ([efec88a](https://github.com/meta-llama/llama-api-python/commit/efec88aa519948ea58ee629507cd91e9af90c1c8))
17+
* **parsing:** correctly handle nested discriminated unions ([b627686](https://github.com/meta-llama/llama-api-python/commit/b6276863bea64a7127cdb71b6fbb02534d2e762b))
18+
* **parsing:** ignore empty metadata ([d6ee851](https://github.com/meta-llama/llama-api-python/commit/d6ee85101e3e69c2768761e1187b8d33ee4e3762))
19+
* **parsing:** parse extra field types ([f03ca22](https://github.com/meta-llama/llama-api-python/commit/f03ca2286018699dd29b964e9cbc1a66699ef59e))
20+
21+
22+
### Chores
23+
24+
* add examples ([abfa065](https://github.com/meta-llama/llama-api-python/commit/abfa06572191caeaa33603c846d5953aa453521e))
25+
* **internal:** bump pinned h11 dep ([d40e1b1](https://github.com/meta-llama/llama-api-python/commit/d40e1b1d736ec5e5fe7e3c65ace9c5d65d038081))
26+
* **internal:** fix ruff target version ([c900ebc](https://github.com/meta-llama/llama-api-python/commit/c900ebc528a5f21e76f4742556577bbf33060f1c))
27+
* **package:** mark python 3.13 as supported ([ef5bc36](https://github.com/meta-llama/llama-api-python/commit/ef5bc36693fa419e3d865e97cae97e7f5df19b1a))
28+
* **project:** add settings file for vscode ([e310380](https://github.com/meta-llama/llama-api-python/commit/e3103801d608df4cff07da4e3eaae72df1391626))
29+
* **readme:** fix version rendering on pypi ([786f9fb](https://github.com/meta-llama/llama-api-python/commit/786f9fbdb75e54ceac9eaf00d4c4d7002ed97a94))
30+
* sync repo ([7e697f6](https://github.com/meta-llama/llama-api-python/commit/7e697f6550485728ee00d4fd18800a90fb3592ab))
31+
* update SDK settings ([de22c0e](https://github.com/meta-llama/llama-api-python/commit/de22c0ece778c938f75e4717baf3e628c7a45087))
32+
33+
34+
### Documentation
35+
36+
* code of conduct ([efe1af2](https://github.com/meta-llama/llama-api-python/commit/efe1af28fb893fa657394504dc8c513b20ac589a))
37+
* readme and license ([d53eafd](https://github.com/meta-llama/llama-api-python/commit/d53eafd104749e9483015676fba150091e754928))

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_api_client"
3-
version = "0.1.2"
3+
version = "0.2.0"
44
description = "The official Python library for the llama-api-client API"
55
dynamic = ["readme"]
66
license = "MIT"

src/llama_api_client/_version.py

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

33
__title__ = "llama_api_client"
4-
__version__ = "0.1.2" # x-release-please-version
4+
__version__ = "0.2.0" # x-release-please-version

0 commit comments

Comments
 (0)