Skip to content

Commit

Permalink
Release version 1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
simolus3 committed Mar 10, 2019
1 parent 62db5ef commit 8fe3502
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 18 deletions.
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions moor/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>
Expand All @@ -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
Expand Down
9 changes: 4 additions & 5 deletions moor_flutter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions moor_flutter/example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion moor_flutter/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ packages:
path: "../moor"
relative: true
source: path
version: "1.0.0"
version: "1.1.1"
path:
dependency: "direct main"
description:
Expand Down
2 changes: 1 addition & 1 deletion moor_flutter/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
4 changes: 2 additions & 2 deletions moor_generator/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>
Expand All @@ -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
Expand Down

0 comments on commit 8fe3502

Please sign in to comment.