Skip to content

Commit

Permalink
chore: *
Browse files Browse the repository at this point in the history
  • Loading branch information
medz committed Sep 15, 2024
1 parent 0108efd commit f307af7
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 21 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.DS_Store
.idea/
node_modules/
dev/
2 changes: 1 addition & 1 deletion examples/flutter_with_orm/ios/Runner/AppDelegate.swift
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Flutter
import UIKit

@UIApplicationMain
@main
@objc class AppDelegate: FlutterAppDelegate {
override func application(
_ application: UIApplication,
Expand Down
20 changes: 10 additions & 10 deletions examples/flutter_with_orm/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -141,10 +141,10 @@ packages:
dependency: transitive
description:
name: ffi
sha256: "493f37e7df1804778ff3a53bd691d8692ddf69702cf4c1c1096a2e41b4779e21"
sha256: "16ed7b077ef01ad6170a3d0c57caa4a112a38d7a2ed5602e0aca9ca6f3d98da6"
url: "https://pub.dev"
source: hosted
version: "2.1.2"
version: "2.1.3"
file:
dependency: transitive
description:
Expand Down Expand Up @@ -273,14 +273,14 @@ packages:
path: "../../packages/orm"
relative: true
source: path
version: "5.0.4"
version: "5.0.7"
orm_flutter:
dependency: "direct main"
description:
path: "../../packages/orm_flutter"
relative: true
source: path
version: "0.1.2"
version: "0.2.0"
package_config:
dependency: transitive
description:
Expand All @@ -301,10 +301,10 @@ packages:
dependency: "direct main"
description:
name: path_provider
sha256: c9e7d3a4cd1410877472158bee69963a4579f78b68c65a2b7d40d1a7a88bb161
sha256: fec0d61223fba3154d87759e3cc27fe2c8dc498f6386c6d6fc80d1afdd1bf378
url: "https://pub.dev"
source: hosted
version: "2.1.3"
version: "2.1.4"
path_provider_android:
dependency: transitive
description:
Expand Down Expand Up @@ -482,18 +482,18 @@ packages:
dependency: transitive
description:
name: web
sha256: "97da13628db363c635202ad97068d47c5b8aa555808e7a9411963c533b449b27"
sha256: d43c1d6b787bf0afad444700ae7f4db8827f701bc61c255ac8d328c6f4d52062
url: "https://pub.dev"
source: hosted
version: "0.5.1"
version: "1.0.0"
webfetch:
dependency: transitive
description:
name: webfetch
sha256: ad651c7ab3829c653732facf3eefa03ef6e023575ee8172b8b60bbdf117cdfd9
sha256: "2724933db80e1622baec57d5096b9ae5b1f0a396e047679a91ffeb60bcd5c0f2"
url: "https://pub.dev"
source: hosted
version: "0.0.17"
version: "0.1.0"
win32:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion examples/flutter_with_orm/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ dependencies:
path: ../../packages/orm
orm_flutter:
path: ../../packages/orm_flutter
path_provider: ^2.1.3
path_provider: ^2.1.4
path: ^1.9.0

dependency_overrides:
Expand Down
10 changes: 7 additions & 3 deletions packages/orm_flutter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
## v0.2.0-WIP

To install Prisma ORM for Dart v5.1.0 run this command
To install Prisma Flutter Integration v0.2.0 run this command

```bash
dart pub add orm:^5.1.0
dart pub add orm_flutter:^0.2.0
```

Or update your `pubspec.yaml` file:

```yaml
dependencies:
orm: ^5.1.0
orm_flutter: ^0.2.0
```
### What's Changed
- **deps**: Upgrade the `webfetch` to `^0.1.0` version.
11 changes: 5 additions & 6 deletions packages/orm_flutter/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: orm_flutter
description: "The engine of Prisma ORM for Flutter, Library for binding Prisma's C-Abi engine with Flutter."
version: 0.1.2
version: 0.2.0
homepage: https://prisma.pub/getting-started/flutter.html
repository: https://github.com/medz/prisma-dart
funding:
Expand All @@ -12,15 +12,14 @@ environment:
flutter: ">=3.3.0"

dependencies:
ffi: ^2.1.2
flutter:
sdk: flutter
orm: ^5.0.1
ffi: ^2.1.3
orm: ">= 5.0.0 < 5.2.0"
package_config: ^2.1.0
path: ^1.9.0
path_provider: ^2.1.3
plugin_platform_interface: ^2.0.2
webfetch: ">=0.0.17 <0.2.0"
path_provider: ^2.1.4
webfetch: ^0.1.0

dev_dependencies:
ffigen: ^13.0.0
Expand Down

0 comments on commit f307af7

Please sign in to comment.