Skip to content

Commit a3c6972

Browse files
committed
feat: release v0.4.18 to fix IndentationError in v0.4.17
- Bump version to 0.4.18 across all version files - Add comprehensive changelog documenting the fix for 0.4.17 issues - Skip broken 0.4.17 release due to codegen-introduced syntax errors - Restore working functionality for users affected by IndentationError - Update release-please manifest for proper automation This release fixes the critical IndentationError in openai.py that was introduced in v0.4.17 and was breaking agent deployments.
1 parent fe79466 commit a3c6972

File tree

4 files changed

+19
-3
lines changed

4 files changed

+19
-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.16"
2+
".": "0.4.18"
33
}

CHANGELOG.md

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

3+
## 0.4.18 (2025-09-29)
4+
5+
Full Changelog: [v0.4.16...v0.4.18](https://github.com/scaleapi/agentex-python/compare/v0.4.16...v0.4.18)
6+
7+
### Bug Fixes
8+
9+
* **openai.py:** Fix IndentationError that was introduced in 0.4.17 breaking agent deployments
10+
* Skip broken 0.4.17 release and jump directly to 0.4.18 with fixes
11+
* Resolve syntax errors in OpenAI provider that prevented module imports
12+
13+
### Notes
14+
15+
* Version 0.4.17 contained broken codegen changes that caused `IndentationError: unexpected indent`
16+
* This release restores working functionality for users affected by the broken 0.4.17 release
17+
* Users should upgrade directly from 0.4.16 to 0.4.18, skipping 0.4.17
18+
319
## 0.4.16 (2025-09-16)
420

521
Full Changelog: [v0.4.15...v0.4.16](https://github.com/scaleapi/agentex-python/compare/v0.4.15...v0.4.16)

pyproject.toml

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

src/agentex/_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__ = "agentex"
4-
__version__ = "0.4.16" # x-release-please-version
4+
__version__ = "0.4.18" # x-release-please-version

0 commit comments

Comments
 (0)