Skip to content

Commit

Permalink
Release 0.6.0 (#151)
Browse files Browse the repository at this point in the history
  • Loading branch information
vitusortner authored Jun 17, 2019
1 parent fc5136d commit 502dae3
Show file tree
Hide file tree
Showing 9 changed files with 32 additions and 7 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

# 0.6.0

### 🚀 Features

* Add support for IN clauses in query statements
* Enable compound primary keys

# 0.5.0

### Changes
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ This package is still in an early phase and the API will likely change.
dependencies:
flutter:
sdk: flutter
floor: ^0.5.0
floor: ^0.6.0

dev_dependencies:
floor_generator: ^0.5.0
Expand Down Expand Up @@ -400,7 +400,7 @@ final migration1to2 = Migration(1, 2, (database) {
database.execute('ALTER TABLE person ADD COLUMN nickname TEXT');
});
final database = await $Floor
final database = await $FloorAppDatabase
.databaseBuilder('app_database.db')
.addMigrations([migration1to2])
.build();
Expand Down
7 changes: 7 additions & 0 deletions floor/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

# 0.6.0

### 🚀 Features

* Add support for IN clauses in query statements
* Enable compound primary keys

# 0.5.0

### Changes
Expand Down
4 changes: 2 additions & 2 deletions floor/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ This package is still in an early phase and the API will likely change.
dependencies:
flutter:
sdk: flutter
floor: ^0.5.0
floor: ^0.6.0

dev_dependencies:
floor_generator: ^0.5.0
Expand Down Expand Up @@ -400,7 +400,7 @@ final migration1to2 = Migration(1, 2, (database) {
database.execute('ALTER TABLE person ADD COLUMN nickname TEXT');
});
final database = await $Floor
final database = await $FloorAppDatabase
.databaseBuilder('app_database.db')
.addMigrations([migration1to2])
.build();
Expand Down
2 changes: 1 addition & 1 deletion floor/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: floor
description: >
A supportive SQLite abstraction for your Flutter applications.
This library is the runtime dependency.
version: 0.5.0
version: 0.6.0
homepage: https://github.com/vitusortner/floor
author: Vitus Ortner <vitusortner.dev@gmail.com>

Expand Down
4 changes: 4 additions & 0 deletions floor_annotation/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

# 0.4.0

* Add primary key field to @Entity annotation

# 0.3.1

### Changes
Expand Down
2 changes: 1 addition & 1 deletion floor_annotation/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: floor_annotation
description: >
A supportive SQLite abstraction for your Flutter applications.
Don't use this package. Import the floor package.
version: 0.3.1
version: 0.4.0
homepage: https://github.com/vitusortner/floor
author: Vitus Ortner <vitusortner.dev@gmail.com>

Expand Down
7 changes: 7 additions & 0 deletions floor_generator/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

# 0.6.0

### 🚀 Features

* Add support for IN clauses in query statements
* Enable compound primary keys

# 0.5.0

### Changes
Expand Down
2 changes: 1 addition & 1 deletion floor_generator/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: floor_generator
description: >
A supportive SQLite abstraction for your Flutter applications.
This library is the dev dependency.
version: 0.5.0
version: 0.6.0
homepage: https://github.com/vitusortner/floor
author: Vitus Ortner <vitusortner.dev@gmail.com>

Expand Down

0 comments on commit 502dae3

Please sign in to comment.