diff --git a/examples/flutter_with_orm/ios/Podfile.lock b/examples/flutter_with_orm/ios/Podfile.lock index 7c59f9ff..bf734206 100644 --- a/examples/flutter_with_orm/ios/Podfile.lock +++ b/examples/flutter_with_orm/ios/Podfile.lock @@ -1,6 +1,6 @@ PODS: - Flutter (1.0.0) - - orm_flutter_ios (0.0.1): + - orm_flutter_ios (0.0.3): - Flutter - path_provider_foundation (0.0.1): - Flutter @@ -21,7 +21,7 @@ EXTERNAL SOURCES: SPEC CHECKSUMS: Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7 - orm_flutter_ios: a5a6382a845a5cf5f0887f67c2aa4a9d712e3a5a + orm_flutter_ios: a86280da5be8ad09f28571bdab395ad0cb022b82 path_provider_foundation: 2b6b4c569c0fb62ec74538f866245ac84301af46 PODFILE CHECKSUM: 819463e6a0290f5a72f145ba7cde16e8b6ef0796 diff --git a/examples/flutter_with_orm/pubspec.yaml b/examples/flutter_with_orm/pubspec.yaml index 6e28c754..b43e3ea2 100644 --- a/examples/flutter_with_orm/pubspec.yaml +++ b/examples/flutter_with_orm/pubspec.yaml @@ -39,7 +39,7 @@ dependencies: path: ../../packages/orm orm_flutter: path: ../../packages/orm_flutter - path_provider: ^2.1.4 + path_provider: ^2.1.5 path: ^1.9.0 dev_dependencies: diff --git a/packages/orm_flutter_android/CHANGELOG.md b/packages/orm_flutter_android/CHANGELOG.md index 827907d2..c98b6fc1 100644 --- a/packages/orm_flutter_android/CHANGELOG.md +++ b/packages/orm_flutter_android/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.0.2 + +* Upgrade Prisma CABI engine to `v6.0.0`. + ## 0.0.1 * Export dynamic library for Prisma query engine (CABI) diff --git a/packages/orm_flutter_android/android/build.gradle b/packages/orm_flutter_android/android/build.gradle index d205ff46..94114399 100644 --- a/packages/orm_flutter_android/android/build.gradle +++ b/packages/orm_flutter_android/android/build.gradle @@ -1,7 +1,7 @@ // The Android Gradle Plugin builds the native code with the Android NDK. -group = "com.example.orm_flutter_android" -version = "1.0" +group = "dev.odroe.orm_flutter_android" +version = "0.0.2" buildscript { repositories { @@ -26,7 +26,7 @@ apply plugin: "com.android.library" android { if (project.android.hasProperty("namespace")) { - namespace = "com.example.orm_flutter_android" + namespace = "dev.odroe.orm_flutter_android" } // Bumping the plugin compileSdk version requires all clients of this plugin diff --git a/packages/orm_flutter_android/android/src/main/AndroidManifest.xml b/packages/orm_flutter_android/android/src/main/AndroidManifest.xml index 2315fdcd..d3f1654b 100644 --- a/packages/orm_flutter_android/android/src/main/AndroidManifest.xml +++ b/packages/orm_flutter_android/android/src/main/AndroidManifest.xml @@ -1,3 +1,3 @@ + package="dev.odroe.orm_flutter_android"> diff --git a/packages/orm_flutter_android/pubspec.yaml b/packages/orm_flutter_android/pubspec.yaml index 091f8c9e..a1d95959 100644 --- a/packages/orm_flutter_android/pubspec.yaml +++ b/packages/orm_flutter_android/pubspec.yaml @@ -3,7 +3,7 @@ description: "Dynamic library implementation library for Prisma Dart and Flutter homepage: https://prisma.pub resolution: workspace -version: 0.0.1 +version: 0.0.2 funding: - https://github.com/sponsors/medz diff --git a/packages/orm_flutter_android/src/CMakeLists.txt b/packages/orm_flutter_android/src/CMakeLists.txt index 1ac8178f..914326b7 100644 --- a/packages/orm_flutter_android/src/CMakeLists.txt +++ b/packages/orm_flutter_android/src/CMakeLists.txt @@ -3,7 +3,7 @@ # the plugin to fail to compile for some customers of the plugin. cmake_minimum_required(VERSION 3.10) -project(orm_flutter_android_library VERSION 0.0.1 LANGUAGES C) +project(orm_flutter_android_library VERSION 0.0.2 LANGUAGES C) add_library(orm_flutter_android SHARED "query_engine_bridge/bridge.c" diff --git a/packages/orm_flutter_android/src/jniLibs/arm64-v8a/libquery_engine.a b/packages/orm_flutter_android/src/jniLibs/arm64-v8a/libquery_engine.a index 59e2dec9..d75646de 100644 Binary files a/packages/orm_flutter_android/src/jniLibs/arm64-v8a/libquery_engine.a and b/packages/orm_flutter_android/src/jniLibs/arm64-v8a/libquery_engine.a differ diff --git a/packages/orm_flutter_android/src/jniLibs/armeabi-v7a/libquery_engine.a b/packages/orm_flutter_android/src/jniLibs/armeabi-v7a/libquery_engine.a index 4e3bdbbb..e77ccbde 100644 Binary files a/packages/orm_flutter_android/src/jniLibs/armeabi-v7a/libquery_engine.a and b/packages/orm_flutter_android/src/jniLibs/armeabi-v7a/libquery_engine.a differ diff --git a/packages/orm_flutter_android/src/jniLibs/x86/libquery_engine.a b/packages/orm_flutter_android/src/jniLibs/x86/libquery_engine.a index 1985296e..3e1060fb 100644 Binary files a/packages/orm_flutter_android/src/jniLibs/x86/libquery_engine.a and b/packages/orm_flutter_android/src/jniLibs/x86/libquery_engine.a differ diff --git a/packages/orm_flutter_android/src/jniLibs/x86_64/libquery_engine.a b/packages/orm_flutter_android/src/jniLibs/x86_64/libquery_engine.a index 4ca2abea..ab08a27c 100644 Binary files a/packages/orm_flutter_android/src/jniLibs/x86_64/libquery_engine.a and b/packages/orm_flutter_android/src/jniLibs/x86_64/libquery_engine.a differ diff --git a/packages/orm_flutter_ios/CHANGELOG.md b/packages/orm_flutter_ios/CHANGELOG.md index 2be9d1da..0bf0cfd9 100644 --- a/packages/orm_flutter_ios/CHANGELOG.md +++ b/packages/orm_flutter_ios/CHANGELOG.md @@ -1,3 +1,7 @@ +## v0.0.3 + +* Upgrade Prisma CABI engine to `v6.0.0`. + ## v0.0.2 2024-11-03 diff --git a/packages/orm_flutter_ios/ios/orm_flutter_ios/Frameworks/QueryEngine.xcframework/ios-arm64/libquery_engine.a b/packages/orm_flutter_ios/ios/orm_flutter_ios/Frameworks/QueryEngine.xcframework/ios-arm64/libquery_engine.a index 01e47fde..dc3a4ccb 100644 Binary files a/packages/orm_flutter_ios/ios/orm_flutter_ios/Frameworks/QueryEngine.xcframework/ios-arm64/libquery_engine.a and b/packages/orm_flutter_ios/ios/orm_flutter_ios/Frameworks/QueryEngine.xcframework/ios-arm64/libquery_engine.a differ diff --git a/packages/orm_flutter_ios/ios/orm_flutter_ios/Frameworks/QueryEngine.xcframework/ios-arm64_x86_64-simulator/libquery_engine.a b/packages/orm_flutter_ios/ios/orm_flutter_ios/Frameworks/QueryEngine.xcframework/ios-arm64_x86_64-simulator/libquery_engine.a index 743150f0..577e4580 100644 Binary files a/packages/orm_flutter_ios/ios/orm_flutter_ios/Frameworks/QueryEngine.xcframework/ios-arm64_x86_64-simulator/libquery_engine.a and b/packages/orm_flutter_ios/ios/orm_flutter_ios/Frameworks/QueryEngine.xcframework/ios-arm64_x86_64-simulator/libquery_engine.a differ diff --git a/packages/orm_flutter_ios/pubspec.yaml b/packages/orm_flutter_ios/pubspec.yaml index 425e0f70..1bbf4a25 100644 --- a/packages/orm_flutter_ios/pubspec.yaml +++ b/packages/orm_flutter_ios/pubspec.yaml @@ -3,7 +3,7 @@ description: "Dynamic library implementation library for Prisma Dart and Flutter homepage: https://prisma.pub resolution: workspace -version: 0.0.2 +version: 0.0.3 funding: - https://github.com/sponsors/medz