Skip to content

Commit

Permalink
Release 0.4.0 (#124)
Browse files Browse the repository at this point in the history
  • Loading branch information
vitusortner authored Apr 14, 2019
1 parent 982c100 commit 47ab4c8
Show file tree
Hide file tree
Showing 6 changed files with 71 additions and 42 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ This package is still in an early phase and the API will likely change.
dependencies:
flutter:
sdk: flutter
floor: ^0.3.0
floor: ^0.4.0

dev_dependencies:
floor_generator: ^0.3.0
floor_generator: ^0.4.0
build_runner: ^1.3.1
````

Expand Down
50 changes: 32 additions & 18 deletions floor/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

# 0.4.0

### Changes

* Enable coverage report
* Simplify type assertions and add tests

### 🚀 Features

* Allow more convenient database initialization

### 🐛 Bug Fixes

* Use query argument binding instead of manual binding

# 0.3.0

### Changes
Expand All @@ -18,7 +33,6 @@
* Correct mapper instance name referenced by generated query methods
* Fix adapter instances naming


# 0.2.0

### Changes
Expand All @@ -42,20 +56,20 @@

### 🚀 Features

* Support conflict strategies when inserting and updating records (#67) @vitusortner
* Add support for running queries that return void (#61) @vitusortner
* Add support for foreign keys (#59) @vitusortner
* Add parameter verification for query methods (#57) @vitusortner
* Return deleted row count on delete (#53) @vitusortner
* Return updated rows count on update (#52) @vitusortner
* Return ID/s of inserted item/s (#51) @vitusortner
* Add support for transactions (#49) @vitusortner
* Add support for changing (insert, update, delete) lists (#42) @vitusortner
* Support custom entity name (#41) @vitusortner
* Enable NOT NULL columns (#40) @vitusortner
* Enable custom column name mapping (#39) @vitusortner
* Add delete methods code generation and fix update methods (#22) @vitusortner
* Add update methods code generation (#21) @vitusortner
* Add insert methods code generation (#20) @vitusortner
* Add code generator for query methods (#17) @vitusortner
* Code generation for database creation (#13) @vitusortner
* Support conflict strategies when inserting and updating records
* Add support for running queries that return void
* Add support for foreign keys
* Add parameter verification for query methods
* Return deleted row count on delete
* Return updated rows count on update
* Return ID/s of inserted item/s
* Add support for transactions
* Add support for changing (insert, update, delete) lists
* Support custom entity name
* Enable NOT NULL columns
* Enable custom column name mapping
* Add delete methods code generation and fix update methods
* Add update methods code generation
* Add insert methods code generation
* Add code generator for query methods
* Code generation for database creation
4 changes: 2 additions & 2 deletions floor/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ This package is still in an early phase and the API will likely change.
dependencies:
flutter:
sdk: flutter
floor: ^0.3.0
floor: ^0.4.0

dev_dependencies:
floor_generator: ^0.3.0
floor_generator: ^0.4.0
build_runner: ^1.3.1
````

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.3.0
version: 0.4.0
homepage: https://github.com/vitusortner/floor
author: Vitus Ortner <vitusortner.dev@gmail.com>

Expand Down
50 changes: 32 additions & 18 deletions floor_generator/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

# 0.4.0

### Changes

* Enable coverage report
* Simplify type assertions and add tests

### 🚀 Features

* Allow more convenient database initialization

### 🐛 Bug Fixes

* Use query argument binding instead of manual binding

# 0.3.0

### Changes
Expand All @@ -18,7 +33,6 @@
* Correct mapper instance name referenced by generated query methods
* Fix adapter instances naming


# 0.2.0

### Changes
Expand All @@ -42,20 +56,20 @@

### 🚀 Features

* Support conflict strategies when inserting and updating records (#67) @vitusortner
* Add support for running queries that return void (#61) @vitusortner
* Add support for foreign keys (#59) @vitusortner
* Add parameter verification for query methods (#57) @vitusortner
* Return deleted row count on delete (#53) @vitusortner
* Return updated rows count on update (#52) @vitusortner
* Return ID/s of inserted item/s (#51) @vitusortner
* Add support for transactions (#49) @vitusortner
* Add support for changing (insert, update, delete) lists (#42) @vitusortner
* Support custom entity name (#41) @vitusortner
* Enable NOT NULL columns (#40) @vitusortner
* Enable custom column name mapping (#39) @vitusortner
* Add delete methods code generation and fix update methods (#22) @vitusortner
* Add update methods code generation (#21) @vitusortner
* Add insert methods code generation (#20) @vitusortner
* Add code generator for query methods (#17) @vitusortner
* Code generation for database creation (#13) @vitusortner
* Support conflict strategies when inserting and updating records
* Add support for running queries that return void
* Add support for foreign keys
* Add parameter verification for query methods
* Return deleted row count on delete
* Return updated rows count on update
* Return ID/s of inserted item/s
* Add support for transactions
* Add support for changing (insert, update, delete) lists
* Support custom entity name
* Enable NOT NULL columns
* Enable custom column name mapping
* Add delete methods code generation and fix update methods
* Add update methods code generation
* Add insert methods code generation
* Add code generator for query methods
* Code generation for database creation
3 changes: 2 additions & 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.3.0
version: 0.4.0
homepage: https://github.com/vitusortner/floor
author: Vitus Ortner <vitusortner.dev@gmail.com>

Expand All @@ -16,6 +16,7 @@ dependencies:
meta: ^1.1.6
source_gen: ^0.9.4+2
build_config: ^0.3.1+4
collection: ^1.14.11
floor_annotation:
path: ../floor_annotation/

Expand Down

0 comments on commit 47ab4c8

Please sign in to comment.