Skip to content

Commit

Permalink
Release 1.1.0 (#554)
Browse files Browse the repository at this point in the history
  • Loading branch information
vitusortner authored Apr 27, 2021
1 parent 0e0836a commit 41f148d
Show file tree
Hide file tree
Showing 9 changed files with 109 additions and 56 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
![Floor](https://raw.githubusercontent.com/vitusortner/floor/develop/img/floor.png)

**See the [project's website](https://vitusortner.github.io/floor/) for the full documentation.**
**[Vote for our domain name 🗳](https://github.com/vitusortner/floor/discussions/546)**

Floor provides a neat SQLite abstraction for your Flutter applications inspired by the [Room persistence library](https://developer.android.com/topic/libraries/architecture/room).
It comes with automatic mapping between in-memory objects and database rows while still offering full control of the database with the use of SQL.
Expand Down Expand Up @@ -37,10 +38,10 @@ The third dependency is `build_runner` which has to be included as a dev depende
dependencies:
flutter:
sdk: flutter
floor: ^1.0.1
floor: ^1.1.0

dev_dependencies:
floor_generator: ^1.0.1
floor_generator: ^1.1.0
build_runner: ^2.0.0
```
Expand Down
18 changes: 18 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Changelog

## 1.1.0

All credits for this release go to mqus.

### Changes

* Update deps
* Increase test coverage
* Bump locked floor_generator version to 1.0.1

### 🚀 Features

* Add onConfigure callback

### 🐛 Bug Fixes

* Retain index ordering

## 1.0.1

### Changes
Expand Down
4 changes: 2 additions & 2 deletions docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ The third dependency is `build_runner` which has to be included as a dev depende
dependencies:
flutter:
sdk: flutter
floor: ^1.0.1
floor: ^1.1.0

dev_dependencies:
floor_generator: ^1.0.1
floor_generator: ^1.1.0
build_runner: ^2.0.0
```
Expand Down
64 changes: 41 additions & 23 deletions floor/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,24 @@
# Changelog

# 1.0.1
## 1.1.0

All credits for this release go to mqus.

### Changes

* Update deps
* Increase test coverage
* Bump locked floor_generator version to 1.0.1

### 🚀 Features

* Add onConfigure callback

### 🐛 Bug Fixes

* Retain index ordering

## 1.0.1

### Changes

Expand All @@ -11,7 +29,7 @@

* Improved Parameter mapping for query methods

# 1.0.0
## 1.0.0

### Changes

Expand All @@ -21,13 +39,13 @@

* Make floor null-safe

# 0.19.1
## 0.19.1

### Changes

* Remove floor example to pass static analysis

# 0.19.0
## 0.19.0

### Changes

Expand All @@ -53,7 +71,7 @@

* Fix desktop database path retrieval

# 0.18.0
## 0.18.0

* Documentation update on DateTimeConverter sample
* Change ForeignKeyAction to enum in the generator
Expand All @@ -67,20 +85,20 @@

* More tolerant query with list parameter parsing

# 0.17.0
## 0.17.0

### 🐛 Bug Fixes

* Generate distinct type converter instances
* Fix generation of DAO method with list argument using type converters

# 0.16.0
## 0.16.0

### 🚀 Features

* Add **experimental** support for type converters

# 0.15.0
## 0.15.0

### Changes

Expand All @@ -91,7 +109,7 @@
* Add support for WITHOUT ROWID tables
* Check transaction method return types and allow non-void returns

# 0.14.0
## 0.14.0

### Changes

Expand All @@ -101,7 +119,7 @@
* Mention missing null propagation in streams
* Fix types (integer instead of real)

# 0.13.0
## 0.13.0

### ⚠️ Breaking Changes

Expand Down Expand Up @@ -135,7 +153,7 @@ case to camel case.**
* Fix boolean conversion issues, add regression test, fix indentation
* Fix wrongly parsed arguments in @Query

# 0.12.0
## 0.12.0

### Changes

Expand All @@ -160,7 +178,7 @@ case to camel case.**
* Fix failing SQLite installation process on CI
* Fix failing stream query test

# 0.11.0
## 0.11.0

### Changes

Expand All @@ -174,7 +192,7 @@ case to camel case.**
* Handle named constructor parameters and ignore field order
* Exclude static fields from entity mapping

# 0.10.0
## 0.10.0

### Changes

Expand All @@ -185,14 +203,14 @@ case to camel case.**

* Make in-memory database actually be just in memory

# 0.9.0
## 0.9.0

### 🐛 Bug Fixes

* Make IN clauses work with strings
* Fix foreign key action string representation

# 0.8.0
## 0.8.0

### Changes

Expand All @@ -207,20 +225,20 @@ case to camel case.**

* Allow int and string (composite) primary keys

# 0.7.0
## 0.7.0

### 🐛 Bug Fixes

* Retain reactivity when using transactions

# 0.6.0
## 0.6.0

### 🚀 Features

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

# 0.5.0
## 0.5.0

### Changes

Expand All @@ -231,13 +249,13 @@ case to camel case.**
* Allow multiline string queries
* Allow void-return queries with arguments

# 0.4.2
## 0.4.2

### 🐛 Bug Fixes

* Fix query parameter substitution regex

# 0.4.0
## 0.4.0

### Changes

Expand All @@ -252,7 +270,7 @@ case to camel case.**

* Use query argument binding instead of manual binding

# 0.3.0
## 0.3.0

### Changes

Expand All @@ -270,7 +288,7 @@ case to camel case.**
* Correct mapper instance name referenced by generated query methods
* Fix adapter instances naming

# 0.2.0
## 0.2.0

### Changes

Expand All @@ -289,7 +307,7 @@ case to camel case.**
* Add entity classes to database annotation
* Add support for indices

# 0.1.0
## 0.1.0

### 🚀 Features

Expand Down
4 changes: 2 additions & 2 deletions floor/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ The third dependency is `build_runner` which has to be included as a dev depende
dependencies:
flutter:
sdk: flutter
floor: ^1.0.1
floor: ^1.1.0

dev_dependencies:
floor_generator: ^1.0.1
floor_generator: ^1.1.0
build_runner: ^2.0.0
```
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: >
The typesafe, reactive, and lightweight SQLite abstraction for your Flutter applications.
This library is the runtime dependency.
version: 1.0.1
version: 1.1.0
homepage: https://github.com/vitusortner/floor
author: Vitus Ortner <[email protected]>
publish_to: none
Expand Down
Loading

0 comments on commit 41f148d

Please sign in to comment.