Skip to content

Commit 4294a47

Browse files
committed
Bump dart_bridge to 1.3.1 across all platform plugins
Regenerated via `dart run serious_python:gen_version_tables` after the python-build manifest at release 20260614 was updated to point at libdart_bridge 1.3.1 (https://github.com/flet-dev/dart-bridge/releases/tag/v1.3.1). 1.3.1 fixes: * `__android_log_write` is now resolved via explicit `-llog` linkage, unblocking Android Python 3.12 (whose libpython doesn't transitively pull in liblog like 3.13/3.14 do). Should unstick the previously failing bridge_example test on the Android-Py3.12 CI matrix entry. * `print(x)` no longer produces blank logcat / os_log entries after every real line — pure-whitespace writes that come from CPython's trailing-newline sub-call are now skipped on the native log branches. Desktop passthrough is unchanged. No code changes here; just the regenerated version tables.
1 parent befc364 commit 4294a47

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

src/serious_python/lib/src/python_versions.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const dartBridgeVersionEnvironmentVariable = "DART_BRIDGE_VERSION";
1111

1212
/// python-build release the bundled runtimes come from (YYYYMMDD).
1313
const pythonReleaseDate = "20260614";
14-
const dartBridgeVersion = "1.3.0";
14+
const dartBridgeVersion = "1.3.1";
1515
const defaultPythonVersion = "3.14";
1616

1717
class PythonRelease {

src/serious_python_android/android/python_versions.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# GENERATED by `dart run serious_python:gen_version_tables` from
22
# python-build manifest.json (release 20260614). Do not edit by hand.
33
default_python_version=3.14
4-
dart_bridge_version=1.3.0
4+
dart_bridge_version=1.3.1
55
python_build_release_date=20260614
66
3.12.full_version=3.12.13
77
3.13.full_version=3.13.14

src/serious_python_darwin/darwin/python_versions.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# GENERATED by `dart run serious_python:gen_version_tables` from
22
# python-build manifest.json (release 20260614). Do not edit by hand.
33
default_python_version=3.14
4-
dart_bridge_version=1.3.0
4+
dart_bridge_version=1.3.1
55
python_build_release_date=20260614
66
3.12.full_version=3.12.13
77
3.13.full_version=3.13.14

src/serious_python_linux/linux/python_versions.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# GENERATED by `dart run serious_python:gen_version_tables` from
22
# python-build manifest.json (release 20260614). Do not edit by hand.
33
default_python_version=3.14
4-
dart_bridge_version=1.3.0
4+
dart_bridge_version=1.3.1
55
python_build_release_date=20260614
66
3.12.full_version=3.12.13
77
3.13.full_version=3.13.14

src/serious_python_windows/windows/python_versions.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# GENERATED by `dart run serious_python:gen_version_tables` from
22
# python-build manifest.json (release 20260614). Do not edit by hand.
33
default_python_version=3.14
4-
dart_bridge_version=1.3.0
4+
dart_bridge_version=1.3.1
55
python_build_release_date=20260614
66
3.12.full_version=3.12.13
77
3.13.full_version=3.13.14

0 commit comments

Comments
 (0)