mirror of https://github.com/AMT-Cheif/drift.git
Release version 1.1
This commit is contained in:
parent
62db5ef29c
commit
8fe350219c
|
@ -30,15 +30,14 @@ API that will deliver auto-updating streams for your queries.
|
|||
|
||||
## Getting started
|
||||
### Adding the dependency
|
||||
First, let's add moor to your project's `pubspec.yaml`. The library is not yet
|
||||
out on pub, so you'll need to use the git repository for now:
|
||||
First, let's add moor to your project's `pubspec.yaml`.
|
||||
```yaml
|
||||
dependencies:
|
||||
moor_flutter: ^1.0.0
|
||||
moor_flutter:
|
||||
|
||||
dev_dependencies:
|
||||
moor_generator: ^1.0.0
|
||||
build_runner: ^1.2.0
|
||||
moor_generator:
|
||||
build_runner:
|
||||
```
|
||||
We're going to use the `moor_flutter` library to specify tables and access the database. The
|
||||
`moor_generator` library will take care of generating the necessary code so the
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
name: moor
|
||||
description: Moor is a safe and reactive persistence library for Dart applications
|
||||
version: 1.1.0
|
||||
version: 1.1.1
|
||||
homepage: https://github.com/simolus3/moor
|
||||
authors:
|
||||
- Simon Binder <simolus3@gmail.com>
|
||||
|
@ -13,7 +13,7 @@ dependencies:
|
|||
meta: '>= 1.0.0 <2.0.0'
|
||||
|
||||
dev_dependencies:
|
||||
moor_generator: ^1.0.0
|
||||
moor_generator: ^1.1.1
|
||||
build_runner: ^1.2.0
|
||||
build_test: ^0.10.6
|
||||
test: ^1.5.3
|
||||
|
|
|
@ -30,15 +30,14 @@ API that will deliver auto-updating streams for your queries.
|
|||
|
||||
## Getting started
|
||||
### Adding the dependency
|
||||
First, let's add moor to your project's `pubspec.yaml`. The library is not yet
|
||||
out on pub, so you'll need to use the git repository for now:
|
||||
First, let's add moor to your project's `pubspec.yaml`.
|
||||
```yaml
|
||||
dependencies:
|
||||
moor_flutter: ^1.0.0
|
||||
moor_flutter:
|
||||
|
||||
dev_dependencies:
|
||||
moor_generator: ^1.0.0
|
||||
build_runner: ^1.2.0
|
||||
moor_generator:
|
||||
build_runner:
|
||||
```
|
||||
We're going to use the `moor_flutter` library to specify tables and access the database. The
|
||||
`moor_generator` library will take care of generating the necessary code so the
|
||||
|
|
|
@ -12,11 +12,11 @@ dependencies:
|
|||
intl:
|
||||
cupertino_icons: ^0.1.2
|
||||
rxdart: 0.20.0
|
||||
moor_flutter: ^1.0.0
|
||||
moor_flutter: ^1.1.0
|
||||
|
||||
dev_dependencies:
|
||||
build_runner:
|
||||
moor_generator: ^1.0.0
|
||||
moor_generator: ^1.1.0
|
||||
flutter_test:
|
||||
sdk: flutter
|
||||
|
||||
|
|
|
@ -59,7 +59,7 @@ packages:
|
|||
path: "../moor"
|
||||
relative: true
|
||||
source: path
|
||||
version: "1.0.0"
|
||||
version: "1.1.1"
|
||||
path:
|
||||
dependency: "direct main"
|
||||
description:
|
||||
|
|
|
@ -10,7 +10,7 @@ environment:
|
|||
sdk: ">=2.0.0-dev.68.0 <3.0.0"
|
||||
|
||||
dependencies:
|
||||
moor: ^1.0.0
|
||||
moor: ^1.1.1
|
||||
sqflite: ^1.1.0
|
||||
meta: '>=1.0.0 <1.2.0'
|
||||
path: '>=1.0.0 <2.0.0'
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
name: moor_generator
|
||||
description: Dev-dependency to generate table and dataclasses together with the moor package.
|
||||
version: 1.1.0
|
||||
version: 1.1.1
|
||||
homepage: https://github.com/simolus3/moor
|
||||
authors:
|
||||
- Simon Binder <simolus3@gmail.com>
|
||||
|
@ -17,7 +17,7 @@ dependencies:
|
|||
build: ^1.1.0
|
||||
build_runner: '>=1.1.0 <1.3.0'
|
||||
build_config: ^0.3.1
|
||||
moor: ^1.0.0
|
||||
moor: ^1.1.1
|
||||
|
||||
dev_dependencies:
|
||||
test: ^1.0.0
|
||||
|
|
Loading…
Reference in New Issue