Skip to content

Commit e6052ea

Browse files
authored
Merge pull request #21 from hanzoai/release-please--branches--main--changes--next
release: 2.0.2
2 parents 1c7f7d4 + 6b356de commit e6052ea

File tree

6 files changed

+13
-6
lines changed

6 files changed

+13
-6
lines changed

.release-please-manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "2.0.1"
2+
".": "2.0.2"
33
}

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## 2.0.2 (2025-04-04)
4+
5+
Full Changelog: [v2.0.1...v2.0.2](https://github.com/hanzoai/python-sdk/compare/v2.0.1...v2.0.2)
6+
7+
### Chores
8+
9+
* **internal:** minor test fixes ([#20](https://github.com/hanzoai/python-sdk/issues/20)) ([da1ba8f](https://github.com/hanzoai/python-sdk/commit/da1ba8fe0fdc7bb73c401b28c8535c3f6d564ede))
10+
* **internal:** remove trailing character ([#22](https://github.com/hanzoai/python-sdk/issues/22)) ([572b121](https://github.com/hanzoai/python-sdk/commit/572b12185e2a7bd746163243314618021be6f1be))
11+
312
## 2.0.1 (2025-03-28)
413

514
Full Changelog: [v2.0.0...v2.0.1](https://github.com/hanzoai/python-sdk/compare/v2.0.0...v2.0.1)

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "hanzoai"
3-
version = "2.0.1"
3+
version = "2.0.2"
44
description = "The official Python library for the Hanzo API"
55
dynamic = ["readme"]
66
license = "Apache-2.0"

src/hanzoai/_version.py

+1-1
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__ = "hanzoai"
4-
__version__ = "2.0.1" # x-release-please-version
4+
__version__ = "2.0.2" # x-release-please-version

tests/api_resources/test_key.py

-2
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,6 @@ def test_path_params_regenerate_by_key(self, client: Hanzo) -> None:
384384
with pytest.raises(ValueError, match=r"Expected a non-empty value for `path_key` but received ''"):
385385
client.key.with_raw_response.regenerate_by_key(
386386
path_key="",
387-
body_key="",
388387
)
389388

390389
@pytest.mark.skip()
@@ -831,7 +830,6 @@ async def test_path_params_regenerate_by_key(self, async_client: AsyncHanzo) ->
831830
with pytest.raises(ValueError, match=r"Expected a non-empty value for `path_key` but received ''"):
832831
await async_client.key.with_raw_response.regenerate_by_key(
833832
path_key="",
834-
body_key="",
835833
)
836834

837835
@pytest.mark.skip()

tests/test_client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1599,7 +1599,7 @@ def test_get_platform(self) -> None:
15991599
import threading
16001600
16011601
from hanzoai._utils import asyncify
1602-
from hanzoai._base_client import get_platform
1602+
from hanzoai._base_client import get_platform
16031603
16041604
async def test_main() -> None:
16051605
result = await asyncify(get_platform)()

0 commit comments

Comments
 (0)