From cffe6a55e39a9d00668573eb3dd837e86f9a1dd5 Mon Sep 17 00:00:00 2001 From: alex Date: Sat, 27 Jan 2024 16:11:23 +0100 Subject: [PATCH] [sqflite] 2.3.2-2 --- sqflite/CHANGELOG.md | 2 +- sqflite/example/tool/create_project_ios.dart | 4 ++-- sqflite/example/tool/create_project_ios_objc.dart | 10 ++++++++++ sqflite/pubspec.yaml | 2 +- 4 files changed, 14 insertions(+), 4 deletions(-) create mode 100644 sqflite/example/tool/create_project_ios_objc.dart diff --git a/sqflite/CHANGELOG.md b/sqflite/CHANGELOG.md index 0121a182..b89a1f4e 100644 --- a/sqflite/CHANGELOG.md +++ b/sqflite/CHANGELOG.md @@ -1,4 +1,4 @@ -## 2.3.2-1 +## 2.3.2-2 * Shared iOS/MacOS darwin implementation * Remove FMDB podspec dependency diff --git a/sqflite/example/tool/create_project_ios.dart b/sqflite/example/tool/create_project_ios.dart index e3a6e999..fe57390e 100644 --- a/sqflite/example/tool/create_project_ios.dart +++ b/sqflite/example/tool/create_project_ios.dart @@ -1,10 +1,10 @@ import 'package:process_run/shell.dart'; Future main() async { - await createProjectMacos(); + await createProjectIos(); } -Future createProjectMacos() async { +Future createProjectIos() async { final shell = Shell(); await shell.run('flutter create --platforms ios .'); } diff --git a/sqflite/example/tool/create_project_ios_objc.dart b/sqflite/example/tool/create_project_ios_objc.dart new file mode 100644 index 00000000..b4864414 --- /dev/null +++ b/sqflite/example/tool/create_project_ios_objc.dart @@ -0,0 +1,10 @@ +import 'package:process_run/shell.dart'; + +Future main() async { + await createProjectIosObjc(); +} + +Future createProjectIosObjc() async { + final shell = Shell(); + await shell.run('flutter create --platforms ios -i objc .'); +} diff --git a/sqflite/pubspec.yaml b/sqflite/pubspec.yaml index 74d73d96..079e6665 100644 --- a/sqflite/pubspec.yaml +++ b/sqflite/pubspec.yaml @@ -3,7 +3,7 @@ repository: https://github.com/tekartik/sqflite/tree/master/sqflite issue_tracker: https://github.com/tekartik/sqflite/issues description: Flutter plugin for SQLite, a self-contained, high-reliability, embedded, SQL database engine. -version: 2.3.2-1 +version: 2.3.2-2 # This package supports all platforms listed below. platforms: