From 8d16b1b4f2d6c6ec9bb436310564e49ee9d789ea Mon Sep 17 00:00:00 2001 From: blueloveTH Date: Thu, 2 Feb 2023 20:35:17 +0800 Subject: [PATCH] up Update CHANGELOG.md --- plugins/flutter/CHANGELOG.md | 2 +- plugins/flutter/lib/common.dart | 3 ++- plugins/flutter/lib/pocketpy.dart | 3 ++- plugins/flutter/pubspec.yaml | 4 ++-- 4 files changed, 7 insertions(+), 5 deletions(-) diff --git a/plugins/flutter/CHANGELOG.md b/plugins/flutter/CHANGELOG.md index b2a5782e..3a099b29 100644 --- a/plugins/flutter/CHANGELOG.md +++ b/plugins/flutter/CHANGELOG.md @@ -1,4 +1,4 @@ -## 0.8.0+1 +## 0.8.0+2 + add complete reflection (exec/eval/getattr/setattr/hasattr) + fix a bug of raw string diff --git a/plugins/flutter/lib/common.dart b/plugins/flutter/lib/common.dart index e368e3d8..9ba4f628 100644 --- a/plugins/flutter/lib/common.dart +++ b/plugins/flutter/lib/common.dart @@ -4,5 +4,6 @@ class PyOutput { PyOutput(this.stdout, this.stderr); PyOutput.fromJson(Map json) - : stdout = json['stdout'], stderr = json['stderr']; + : stdout = json['stdout'], + stderr = json['stderr']; } diff --git a/plugins/flutter/lib/pocketpy.dart b/plugins/flutter/lib/pocketpy.dart index 9b52a027..fc64c546 100644 --- a/plugins/flutter/lib/pocketpy.dart +++ b/plugins/flutter/lib/pocketpy.dart @@ -1,3 +1,4 @@ library pocketpy; + export 'common.dart'; -export 'no_web.dart' if (dart.library.html) 'web.dart'; \ No newline at end of file +export 'no_web.dart' if (dart.library.html) 'web.dart'; diff --git a/plugins/flutter/pubspec.yaml b/plugins/flutter/pubspec.yaml index 7ce2bb51..148cd8f0 100644 --- a/plugins/flutter/pubspec.yaml +++ b/plugins/flutter/pubspec.yaml @@ -1,6 +1,6 @@ name: pocketpy -description: A lightweight Python interpreter for game engines. -version: 0.8.0+1 +description: A lightweight Python interpreter for game engines. It supports Android/iOS/Web. +version: 0.8.0+2 homepage: https://pocketpy.dev repository: https://github.com/blueloveth/pocketpy