Skip to content

Commit d3f8d31

Browse files
committed
chore(repo,core,mkdocs): bump version to 0.2.0
1 parent 64ab266 commit d3f8d31

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

docs/meta/roadmap.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ title: Roadmap
77
This roadmap focuses on transforming PythonNative into a workable, React Native / Expo-like framework from a developer-experience and simplicity standpoint. Releases are incremental and designed to be shippable, with DX-first improvements balanced with platform capability.
88

99
Assumptions
10-
- Current version: 0.1.0
1110
- Scope: Android (Chaquopy/Java bridge) and iOS (Rubicon-ObjC), Python 3.9–3.12
1211
- Goals: Zero-config templates, one CLI, fast iteration loop, portable component API, and a curated subset of native capabilities with room to expand.
1312

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.1.0"
7+
version = "0.2.0"
88
description = "Cross-platform native UI toolkit for Android and iOS"
99
authors = [
1010
{ name = "Owen Carey" }

src/pythonnative/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
from importlib import import_module
22
from typing import Any, Dict
33

4+
__version__ = "0.2.0"
5+
46
__all__ = [
57
"ActivityIndicatorView",
68
"Button",

0 commit comments

Comments
 (0)