Skip to content

Commit 64d7c1c

Browse files
committed
chore(repo,core,mkdocs): bump version to 0.3.0
1 parent caf6993 commit 64d7c1c

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

docs/api/pythonnative.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
API reference will be generated here via mkdocstrings.
44

5-
Key flags and helpers (0.2.0):
5+
Key flags and helpers:
66

77
- `pythonnative.utils.IS_ANDROID`: platform flag with robust detection for Chaquopy/Android.
88
- `pythonnative.utils.get_android_context()`: returns the current Android Activity/Context when running on Android.

docs/concepts/components.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
High-level overview of PythonNative components and how they map to native UI.
44

5-
## Constructor pattern (0.2.0)
5+
## Constructor pattern
66

77
- All core components share a consistent, contextless constructor on both platforms.
88
- On Android, a `Context` is acquired implicitly from the current `Activity` set by `pn.Page`.
@@ -30,7 +30,7 @@ Notes:
3030
- `pn.Page` stores the Android `Activity` so components like `pn.Button()` and `pn.Label()` can construct their native counterparts.
3131
- If you construct views before the `Page` is created on Android, a runtime error will be raised because no `Context` is available.
3232

33-
## Core components (0.2.0)
33+
## Core components
3434

3535
Stabilized with contextless constructors on both platforms:
3636

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.2.0"
7+
version = "0.3.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
@@ -1,7 +1,7 @@
11
from importlib import import_module
22
from typing import Any, Dict
33

4-
__version__ = "0.2.0"
4+
__version__ = "0.3.0"
55

66
__all__ = [
77
"ActivityIndicatorView",

0 commit comments

Comments
 (0)