Skip to content

Commit aa2df05

Browse files
author
Matthias Zimmermann
committed
chore: prepare for 1.0.0a10 release
1 parent 460cf35 commit aa2df05

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.0.0a10] - 2025-11-29
11+
12+
### Added Features
13+
- Add `timeout()` to `ProviderBuilder`,
14+
15+
### Changes
16+
- Add AGENTS.md
17+
- Minor cleanups/test additions
18+
1019
## [1.0.0a9] - 2025-11-18
1120

1221
### Changes
@@ -25,7 +34,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2534
- Add multi-attribute sorting with priority-based ordering
2635
- Add `to_seconds()` and `to_blocks()` utility methods to (Async)Arkiv for time/block conversions
2736

28-
### Other Changes
37+
### Other Changes
2938
- Breaking: Changed expires_in parameter from blocks to seconds across all entity operations
3039
- Migrated from `btl` (blocks to live) to `expires_in` (seconds) for clearer, more intuitive API
3140
- Consolidated configuration constants (BLOCK_TIME_SECONDS, EXPIRES_IN_DEFAULT, CONTENT_TYPE_DEFAULT) to ArkivModuleBase

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "arkiv-sdk"
3-
version = "1.0.0a9"
3+
version = "1.0.0a10"
44
description = "Python SDK for Arkiv networks - Web3.py + Entities"
55
readme = "README.md"
66
requires-python = ">=3.10"

src/arkiv/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ async def _disconnect_provider(self) -> None:
322322

323323
if hasattr(provider, "disconnect"):
324324
try:
325-
await provider.disconnect() # type: ignore[func-returns-value]
325+
await provider.disconnect()
326326
except Exception:
327327
logger.exception("Error while disconnecting async provider")
328328

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)