Skip to content

Commit fc09d11

Browse files
author
Matthias Zimmermann
committed
chore: prepare for 1.0.0a8 release
1 parent 5d18c02 commit fc09d11

File tree

5 files changed

+9
-15
lines changed

5 files changed

+9
-15
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [1.0.0a8] - 2025-11-14
11+
12+
### Changes
13+
- Breaking: rename extend_entity parameter number_of_blocks to extend_by (in seconds).
14+
1015
## [1.0.0a7] - 2025-11-13
1116

1217
### Added Features

PUBLISHING.md

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -217,13 +217,6 @@ git tag -a v1.0.0a5 -m "v1.0.0a5"
217217
git push origin v1.0.0a5
218218
```
219219

220-
# 11. Create GitHub release
221-
gh release create v1.0.0a2 \
222-
--title "Arkiv SDK v1.0.0a2" \
223-
--notes-file CHANGELOG.md \
224-
dist/*
225-
```
226-
227220
### Alternative: Manual Publishing (Advanced)
228221

229222
If you prefer manual control or need to customize the process:
@@ -259,11 +252,6 @@ python -c "from arkiv import Arkiv; print(Arkiv.__version__)"
259252
# 9. If all good, publish to PyPI
260253
uv publish --token $PYPI_TOKEN
261254
262-
# 10. Create GitHub release
263-
gh release create v1.0.0a1 \
264-
--title "Arkiv SDK v1.0.0a1" \
265-
--notes "Initial alpha release - see CHANGELOG.md" \
266-
dist/*
267255
```
268256

269257
### Environment Setup for Publishing

docs/GETTING_STARTED.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@ filter_extended = client.arkiv.watch_entity_extended(on_extended, from_block="la
126126
## Extend Proposal Lifetime
127127

128128
```python
129-
receipt = client.arkiv.extend_entity(proposal_key, number_of_blocks=2000)
129+
seconds = 2000
130+
receipt = client.arkiv.extend_entity(proposal_key, extend_by=seconds)
130131
print("Proposal extension receipt:", receipt.extensions)
131132
```

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.0a7"
3+
version = "1.0.0a8"
44
description = "Python SDK for Arkiv networks - Web3.py + Entities"
55
readme = "README.md"
66
requires-python = ">=3.10"

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)