Skip to content

Commit b3303a0

Browse files
release: 0.5.1
1 parent 07cd970 commit b3303a0

File tree

4 files changed

+33
-3
lines changed

4 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.5.0"
2+
".": "0.5.1"
33
}

CHANGELOG.md

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

3+
## 0.5.1 (2025-12-20)
4+
5+
Full Changelog: [v0.5.0...v0.5.1](https://github.com/AgentbaseHQ/agentbase-python/compare/v0.5.0...v0.5.1)
6+
7+
### Bug Fixes
8+
9+
* compat with Python 3.14 ([506a48f](https://github.com/AgentbaseHQ/agentbase-python/commit/506a48fb364425c839e712fda2c6232a547c04a7))
10+
* **compat:** update signatures of `model_dump` and `model_dump_json` for Pydantic v1 ([26fcf8c](https://github.com/AgentbaseHQ/agentbase-python/commit/26fcf8cfaa707947604b7f21770e375bdd8f2505))
11+
* ensure streams are always closed ([a5fbe1f](https://github.com/AgentbaseHQ/agentbase-python/commit/a5fbe1ff1cdb9577f78959979e26cbf051349a41))
12+
* **types:** allow pyright to infer TypedDict types within SequenceNotStr ([c8e85dc](https://github.com/AgentbaseHQ/agentbase-python/commit/c8e85dcadbd1c87e7eb467da4d5907d4be5ba067))
13+
* use async_to_httpx_files in patch method ([15b8a78](https://github.com/AgentbaseHQ/agentbase-python/commit/15b8a78b1702ab6b3b5f81e5ffd7620f35b4666a))
14+
15+
16+
### Chores
17+
18+
* add missing docstrings ([7f81914](https://github.com/AgentbaseHQ/agentbase-python/commit/7f81914d3ad703d6e516c4207af8be9b29639e62))
19+
* add Python 3.14 classifier and testing ([e277845](https://github.com/AgentbaseHQ/agentbase-python/commit/e277845b95c046a36a261d5e541c3b834b9e6060))
20+
* **deps:** mypy 1.18.1 has a regression, pin to 1.17 ([62a2800](https://github.com/AgentbaseHQ/agentbase-python/commit/62a2800278f735e3a60478f2f5bf073247f26df4))
21+
* **docs:** use environment variables for authentication in code snippets ([6153b3a](https://github.com/AgentbaseHQ/agentbase-python/commit/6153b3ade4267a47d7e5c9f04f7df087736f14a9))
22+
* **internal:** add `--fix` argument to lint script ([40a5771](https://github.com/AgentbaseHQ/agentbase-python/commit/40a57716ebac55d0f9474861c4a2fc6e4c30531e))
23+
* **internal:** add missing files argument to base client ([fa1bf74](https://github.com/AgentbaseHQ/agentbase-python/commit/fa1bf74ee8af58a559cded1f9b3bdeab2bc9353b))
24+
* **package:** drop Python 3.8 support ([27398f4](https://github.com/AgentbaseHQ/agentbase-python/commit/27398f431d61623cf51afd80eb96fa29a8d0bb17))
25+
* speedup initial import ([ae80104](https://github.com/AgentbaseHQ/agentbase-python/commit/ae801043676a3027715757600d99416925b8e32f))
26+
* update lockfile ([c45d94f](https://github.com/AgentbaseHQ/agentbase-python/commit/c45d94f06694f09c807bff2c994a9207b2e5568e))
27+
28+
29+
### Documentation
30+
31+
* add more examples ([07cd970](https://github.com/AgentbaseHQ/agentbase-python/commit/07cd9702f78069d1480235504de363aa26008bd8))
32+
333
## 0.5.0 (2025-11-06)
434

535
Full Changelog: [v0.4.0...v0.5.0](https://github.com/AgentbaseHQ/agentbase-python/compare/v0.4.0...v0.5.0)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "agentbase-sdk"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
description = "The official Python library for the agentbase API"
55
dynamic = ["readme"]
66
license = "Apache-2.0"

src/agentbase/_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__ = "agentbase"
4-
__version__ = "0.5.0" # x-release-please-version
4+
__version__ = "0.5.1" # x-release-please-version

0 commit comments

Comments
 (0)