Skip to content

Commit

Permalink
[sqflite] 2.3.2-2
Browse files Browse the repository at this point in the history
  • Loading branch information
alextekartik committed Jan 27, 2024
1 parent be0b6b7 commit cffe6a5
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
2 changes: 1 addition & 1 deletion sqflite/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 2.3.2-1
## 2.3.2-2

* Shared iOS/MacOS darwin implementation
* Remove FMDB podspec dependency
Expand Down
4 changes: 2 additions & 2 deletions sqflite/example/tool/create_project_ios.dart
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import 'package:process_run/shell.dart';

Future<void> main() async {
await createProjectMacos();
await createProjectIos();
}

Future<void> createProjectMacos() async {
Future<void> createProjectIos() async {
final shell = Shell();
await shell.run('flutter create --platforms ios .');
}
10 changes: 10 additions & 0 deletions sqflite/example/tool/create_project_ios_objc.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import 'package:process_run/shell.dart';

Future<void> main() async {
await createProjectIosObjc();
}

Future<void> createProjectIosObjc() async {
final shell = Shell();
await shell.run('flutter create --platforms ios -i objc .');
}
2 changes: 1 addition & 1 deletion sqflite/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit cffe6a5

Please sign in to comment.