From 41f148d60882e0124e2e98e473c51ce284e7c957 Mon Sep 17 00:00:00 2001 From: Vitus Date: Tue, 27 Apr 2021 22:18:15 +0200 Subject: [PATCH] Release 1.1.0 (#554) --- README.md | 5 +-- docs/changelog.md | 18 ++++++++++ docs/getting-started.md | 4 +-- floor/CHANGELOG.md | 64 +++++++++++++++++++++++------------- floor/README.md | 4 +-- floor/pubspec.yaml | 2 +- floor_generator/CHANGELOG.md | 64 +++++++++++++++++++++++------------- floor_generator/pubspec.yaml | 2 +- publishing.md | 2 -- 9 files changed, 109 insertions(+), 56 deletions(-) diff --git a/README.md b/README.md index 0d5c0fcd..c9ad2258 100644 --- a/README.md +++ b/README.md @@ -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. @@ -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 ``` diff --git a/docs/changelog.md b/docs/changelog.md index d8ee5cfe..ab8d1534 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -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 diff --git a/docs/getting-started.md b/docs/getting-started.md index 3af9dbd0..af342d4c 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -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 ``` diff --git a/floor/CHANGELOG.md b/floor/CHANGELOG.md index 75de7c75..3a0008fa 100644 --- a/floor/CHANGELOG.md +++ b/floor/CHANGELOG.md @@ -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 @@ -11,7 +29,7 @@ * Improved Parameter mapping for query methods -# 1.0.0 +## 1.0.0 ### Changes @@ -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 @@ -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 @@ -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 @@ -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 @@ -101,7 +119,7 @@ * Mention missing null propagation in streams * Fix types (integer instead of real) -# 0.13.0 +## 0.13.0 ### ⚠️ Breaking Changes @@ -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 @@ -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 @@ -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 @@ -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 @@ -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 @@ -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 @@ -252,7 +270,7 @@ case to camel case.** * Use query argument binding instead of manual binding -# 0.3.0 +## 0.3.0 ### Changes @@ -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 @@ -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 diff --git a/floor/README.md b/floor/README.md index 8fbff934..a0ccab5a 100644 --- a/floor/README.md +++ b/floor/README.md @@ -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 ``` diff --git a/floor/pubspec.yaml b/floor/pubspec.yaml index f9117758..a3609d10 100644 --- a/floor/pubspec.yaml +++ b/floor/pubspec.yaml @@ -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 publish_to: none diff --git a/floor_generator/CHANGELOG.md b/floor_generator/CHANGELOG.md index 75de7c75..3a0008fa 100644 --- a/floor_generator/CHANGELOG.md +++ b/floor_generator/CHANGELOG.md @@ -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 @@ -11,7 +29,7 @@ * Improved Parameter mapping for query methods -# 1.0.0 +## 1.0.0 ### Changes @@ -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 @@ -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 @@ -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 @@ -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 @@ -101,7 +119,7 @@ * Mention missing null propagation in streams * Fix types (integer instead of real) -# 0.13.0 +## 0.13.0 ### ⚠️ Breaking Changes @@ -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 @@ -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 @@ -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 @@ -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 @@ -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 @@ -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 @@ -252,7 +270,7 @@ case to camel case.** * Use query argument binding instead of manual binding -# 0.3.0 +## 0.3.0 ### Changes @@ -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 @@ -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 diff --git a/floor_generator/pubspec.yaml b/floor_generator/pubspec.yaml index 31d29e58..bd3dff0a 100644 --- a/floor_generator/pubspec.yaml +++ b/floor_generator/pubspec.yaml @@ -2,7 +2,7 @@ name: floor_generator description: > The typesafe, reactive, and lightweight SQLite abstraction for your Flutter applications. This library is the dev dependency. -version: 1.0.1 +version: 1.1.0 homepage: https://github.com/vitusortner/floor author: Vitus Ortner publish_to: none diff --git a/publishing.md b/publishing.md index d44db123..267aa6d1 100644 --- a/publishing.md +++ b/publishing.md @@ -42,8 +42,6 @@ This document describes step-by-step how to release a new version of the library 1. Update docs/getting-started.md with updated library versions -1. Update top-level CHANGELOG - 1. Update docs/changelog.md 1. Create pull request with changes