Skip to content

Commit 1a3bf47

Browse files
author
semantic-release
committed
chore(release): v0.8.0
1 parent 2b80032 commit 1a3bf47

File tree

3 files changed

+24
-2
lines changed

3 files changed

+24
-2
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,28 @@
11
# CHANGELOG
22

33

4+
## v0.8.0 (2026-04-08)
5+
6+
### Features
7+
8+
- **hooks,reconciler**: Defer effects; add batching and use_reducer
9+
([`bf6bb57`](https://github.com/pythonnative/pythonnative/commit/bf6bb57b6f97c140820a902ea0eff6bf6a7ffdbc))
10+
11+
- **native_views,components**: Add flexbox-inspired layout system
12+
([`094d997`](https://github.com/pythonnative/pythonnative/commit/094d99786f7153a7286eb7db9775db0bb90abf1d))
13+
14+
- **navigation**: Add declarative navigation system
15+
([`828bbb0`](https://github.com/pythonnative/pythonnative/commit/828bbb0c83fba640a7055edf1237500f27493fd3))
16+
17+
- **navigation**: Add native tab bars and nested navigator forwarding
18+
([`2b80032`](https://github.com/pythonnative/pythonnative/commit/2b8003218267dd39b968c630b89bd5e212ea7254))
19+
20+
### Refactoring
21+
22+
- **native_views**: Split monolithic module into platform-specific package
23+
([`d0068fd`](https://github.com/pythonnative/pythonnative/commit/d0068fdbcceb4745b02d8043b03eade2b54dde66))
24+
25+
426
## v0.7.0 (2026-04-03)
527

628
### Features

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "pythonnative"
7-
version = "0.7.0"
7+
version = "0.8.0"
88
description = "Cross-platform native UI toolkit for Android and iOS"
99
authors = [
1010
{ name = "Owen Carey" }

src/pythonnative/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def App():
1414
)
1515
"""
1616

17-
__version__ = "0.7.0"
17+
__version__ = "0.8.0"
1818

1919
from .components import (
2020
ActivityIndicator,

0 commit comments

Comments
 (0)