Skip to content

Commit 7a5923c

Browse files
author
semantic-release
committed
chore(release): v0.6.0
1 parent 7fbf9c0 commit 7a5923c

File tree

3 files changed

+47
-2
lines changed

3 files changed

+47
-2
lines changed

CHANGELOG.md

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

33

4+
## v0.6.0 (2026-04-03)
5+
6+
### Build System
7+
8+
- **deps**: Drop Python 3.9 support (EOL October 2025)
9+
([`552cd99`](https://github.com/pythonnative/pythonnative/commit/552cd9958c463a51af9e33f0e254dab18135130f))
10+
11+
### Code Style
12+
13+
- **cli**: Reformat pn.py for Black 2026 stable style
14+
([`298f884`](https://github.com/pythonnative/pythonnative/commit/298f884ce3e1c58a17c92484c5832ebae6f1beaa))
15+
16+
### Continuous Integration
17+
18+
- **workflows**: Add package build step to verify sdist and wheel before release
19+
([`7fbf9c0`](https://github.com/pythonnative/pythonnative/commit/7fbf9c07988d4c543253dec8ba28da42c38cc3a9))
20+
21+
- **workflows,cli**: Fix e2e workflow script chaining and GitHub API auth
22+
([`01d1968`](https://github.com/pythonnative/pythonnative/commit/01d19683f41a4b00048dfbce687e510bec2e2d31))
23+
24+
### Documentation
25+
26+
- Align branch prefixes with conventional commit types
27+
([`c6e0e08`](https://github.com/pythonnative/pythonnative/commit/c6e0e08cb0757dad6495c6fee36063699afba87a))
28+
29+
- **repo**: Align conventional commit scopes with module structure
30+
([`ecc39af`](https://github.com/pythonnative/pythonnative/commit/ecc39af78708bc5a83ba81501c7b65d985890de9))
31+
32+
- **repo**: Remove component table from README
33+
([`ab162c5`](https://github.com/pythonnative/pythonnative/commit/ab162c5b658b2367857ab998d3b3f750eca15b4a))
34+
35+
### Features
36+
37+
- Add function components, hooks, layout, styling, hot reload, native APIs, and new UI components
38+
([`3bd87de`](https://github.com/pythonnative/pythonnative/commit/3bd87de4a8775e23eb4f081a31b9125f9b20861c))
39+
40+
- **cli,templates**: Add pythonVersion config, fix Android build, and wire pip requirements
41+
([`a529834`](https://github.com/pythonnative/pythonnative/commit/a529834a7bfe817a51ef2a5846c97c2f4deee321))
42+
43+
### Testing
44+
45+
- Increase app startup wait for slow CI emulators
46+
([`4ff6b94`](https://github.com/pythonnative/pythonnative/commit/4ff6b9453a7687eeaf7777bf4a2ab542b32a7e25))
47+
48+
449
## v0.5.0 (2026-03-31)
550

651
### Continuous Integration

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.5.0"
7+
version = "0.6.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
@@ -26,7 +26,7 @@ def render(self):
2626
)
2727
"""
2828

29-
__version__ = "0.5.0"
29+
__version__ = "0.6.0"
3030

3131
from .components import (
3232
ActivityIndicator,

0 commit comments

Comments
 (0)