From 24d9061eb0f88a3a3d3bbc76de2767eb81aa1be7 Mon Sep 17 00:00:00 2001 From: Vitus Date: Fri, 17 Jun 2022 15:48:10 +0200 Subject: [PATCH] Release 1.3.0 (#671) --- README.md | 15 ++----------- docs/CNAME | 1 - docs/changelog.md | 12 ++++++++++ docs/getting-started.md | 4 ++-- example/pubspec.lock | 27 +++++++++------------- floor/CHANGELOG.md | 12 ++++++++++ floor/README.md | 4 ++-- floor/pubspec.lock | 31 ++++++++++---------------- floor/pubspec.yaml | 4 ++-- floor_annotation/CHANGELOG.md | 42 ++++++++++++++++++++++------------- floor_annotation/pubspec.yaml | 4 ++-- floor_generator/CHANGELOG.md | 8 ++++++- floor_generator/pubspec.lock | 2 +- floor_generator/pubspec.yaml | 4 ++-- 14 files changed, 93 insertions(+), 77 deletions(-) delete mode 100644 docs/CNAME diff --git a/README.md b/README.md index 872d627f..c2fb3c89 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,3 @@ -# Floor is looking for a new home - -After more than three years of working on the database abstraction as a side-project, the library is looking for a new home. -I, unfortunately, currently can't dedicate as much time to maintaining the library as it deserves. Thereby, we're looking for a team that can better support the codebase and the community around Floor. Reach out to us through [this form](https://forms.gle/oQhgqkPSEWVoDXb98) in case you're interested in taking ownership of the codebase. - -The library started as a university project to implement and validate the hypothesis of whether porting an Android database library (Room) to Flutter is a good idea. By now, Floor evolved into one of the most popular choices when it comes to Flutter databases. - -The project has received numerous contributions from volunteers, adding new features and bug fixes in their free time. Their work has been and will always be what makes the library. Thanks to every contributor! - ---- - ![Floor](https://raw.githubusercontent.com/vitusortner/floor/develop/img/floor.png) **See the [project's website](https://floor.codes) for the full documentation.** @@ -48,10 +37,10 @@ The third dependency is `build_runner` which has to be included as a dev depende dependencies: flutter: sdk: flutter - floor: ^1.2.0 + floor: ^1.3.0 dev_dependencies: - floor_generator: ^1.2.0 + floor_generator: ^1.3.0 build_runner: ^2.1.2 ``` diff --git a/docs/CNAME b/docs/CNAME deleted file mode 100644 index de25b2a3..00000000 --- a/docs/CNAME +++ /dev/null @@ -1 +0,0 @@ -floor.codes diff --git a/docs/changelog.md b/docs/changelog.md index ab0898d9..6c10b9a6 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,5 +1,17 @@ # Changelog +## 1.3.0 + +### Changes + +* Remove Slack invite links + +### 🛠 Maintenance + +* Update Analyzer to 4.1.0 +* Allow release drafter to create GitHub releases +* Support latest analyzer + ## 1.2.0 ### Changes diff --git a/docs/getting-started.md b/docs/getting-started.md index 493327dc..5756bc93 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.2.0 + floor: ^1.3.0 dev_dependencies: - floor_generator: ^1.2.0 + floor_generator: ^1.3.0 build_runner: ^2.1.2 ``` diff --git a/example/pubspec.lock b/example/pubspec.lock index 1c3c995f..7b9e4cf7 100644 --- a/example/pubspec.lock +++ b/example/pubspec.lock @@ -7,14 +7,14 @@ packages: name: _fe_analyzer_shared url: "https://pub.dartlang.org" source: hosted - version: "33.0.0" + version: "40.0.0" analyzer: dependency: "direct dev" description: name: analyzer url: "https://pub.dartlang.org" source: hosted - version: "3.1.0" + version: "4.1.0" args: dependency: transitive description: @@ -42,7 +42,7 @@ packages: name: build url: "https://pub.dartlang.org" source: hosted - version: "2.2.1" + version: "2.3.0" build_config: dependency: transitive description: @@ -56,21 +56,21 @@ packages: name: build_daemon url: "https://pub.dartlang.org" source: hosted - version: "3.0.1" + version: "3.1.0" build_resolvers: dependency: transitive description: name: build_resolvers url: "https://pub.dartlang.org" source: hosted - version: "2.0.6" + version: "2.0.9" build_runner: dependency: "direct dev" description: name: build_runner url: "https://pub.dartlang.org" source: hosted - version: "2.1.7" + version: "2.1.11" build_runner_core: dependency: transitive description: @@ -113,13 +113,6 @@ packages: url: "https://pub.dartlang.org" source: hosted version: "2.0.1" - cli_util: - dependency: transitive - description: - name: cli_util - url: "https://pub.dartlang.org" - source: hosted - version: "0.3.5" clock: dependency: transitive description: @@ -161,7 +154,7 @@ packages: name: dart_style url: "https://pub.dartlang.org" source: hosted - version: "2.2.1" + version: "2.2.3" fake_async: dependency: transitive description: @@ -196,14 +189,14 @@ packages: path: "../floor" relative: true source: path - version: "1.2.0" + version: "1.3.0" floor_annotation: dependency: transitive description: path: "../floor_annotation" relative: true source: path - version: "1.0.1" + version: "1.3.0" floor_generator: dependency: "direct dev" description: @@ -379,7 +372,7 @@ packages: name: source_gen url: "https://pub.dartlang.org" source: hosted - version: "1.2.1" + version: "1.2.2" source_span: dependency: transitive description: diff --git a/floor/CHANGELOG.md b/floor/CHANGELOG.md index cf125525..a34dcce7 100644 --- a/floor/CHANGELOG.md +++ b/floor/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## 1.3.0 + +### Changes + +* Remove Slack invite links + +### 🛠 Maintenance + +* Update Analyzer to 4.1.0 +* Allow release drafter to create GitHub releases +* Support latest analyzer + ## 1.2.0 ### Changes diff --git a/floor/README.md b/floor/README.md index 01d382fc..c2fb3c89 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.2.0 + floor: ^1.3.0 dev_dependencies: - floor_generator: ^1.2.0 + floor_generator: ^1.3.0 build_runner: ^2.1.2 ``` diff --git a/floor/pubspec.lock b/floor/pubspec.lock index cd41d332..2ef19281 100644 --- a/floor/pubspec.lock +++ b/floor/pubspec.lock @@ -7,14 +7,14 @@ packages: name: _fe_analyzer_shared url: "https://pub.dartlang.org" source: hosted - version: "25.0.0" + version: "40.0.0" analyzer: dependency: transitive description: name: analyzer url: "https://pub.dartlang.org" source: hosted - version: "2.2.0" + version: "4.1.0" args: dependency: transitive description: @@ -42,7 +42,7 @@ packages: name: build url: "https://pub.dartlang.org" source: hosted - version: "2.1.0" + version: "2.3.0" build_config: dependency: transitive description: @@ -56,28 +56,28 @@ packages: name: build_daemon url: "https://pub.dartlang.org" source: hosted - version: "3.0.0" + version: "3.1.0" build_resolvers: dependency: transitive description: name: build_resolvers url: "https://pub.dartlang.org" source: hosted - version: "2.0.4" + version: "2.0.9" build_runner: dependency: "direct dev" description: name: build_runner url: "https://pub.dartlang.org" source: hosted - version: "2.1.2" + version: "2.1.11" build_runner_core: dependency: transitive description: name: build_runner_core url: "https://pub.dartlang.org" source: hosted - version: "7.1.0" + version: "7.2.2" built_collection: dependency: transitive description: @@ -91,7 +91,7 @@ packages: name: built_value url: "https://pub.dartlang.org" source: hosted - version: "8.0.5" + version: "8.3.3" characters: dependency: transitive description: @@ -113,13 +113,6 @@ packages: url: "https://pub.dartlang.org" source: hosted version: "2.0.1" - cli_util: - dependency: transitive - description: - name: cli_util - url: "https://pub.dartlang.org" - source: hosted - version: "0.3.0" clock: dependency: transitive description: @@ -161,7 +154,7 @@ packages: name: dart_style url: "https://pub.dartlang.org" source: hosted - version: "2.1.0" + version: "2.2.3" fake_async: dependency: transitive description: @@ -196,7 +189,7 @@ packages: path: "../floor_annotation" relative: true source: path - version: "1.0.1" + version: "1.3.0" floor_generator: dependency: "direct dev" description: @@ -318,7 +311,7 @@ packages: name: mockito url: "https://pub.dartlang.org" source: hosted - version: "5.0.15" + version: "5.2.0" package_config: dependency: transitive description: @@ -386,7 +379,7 @@ packages: name: source_gen url: "https://pub.dartlang.org" source: hosted - version: "1.1.0" + version: "1.2.2" source_span: dependency: transitive description: diff --git a/floor/pubspec.yaml b/floor/pubspec.yaml index 39f06a40..5b7841ec 100644 --- a/floor/pubspec.yaml +++ b/floor/pubspec.yaml @@ -2,8 +2,8 @@ name: floor description: > The typesafe, reactive, and lightweight SQLite abstraction for your Flutter applications. This library is the runtime dependency. -version: 1.2.0 -homepage: https://floor.codes +version: 1.3.0 +homepage: https://vitusortner.github.io/floor/ publish_to: none environment: diff --git a/floor_annotation/CHANGELOG.md b/floor_annotation/CHANGELOG.md index 9dcb4355..96fb01a7 100644 --- a/floor_annotation/CHANGELOG.md +++ b/floor_annotation/CHANGELOG.md @@ -1,10 +1,22 @@ # Changelog -# 1.0.1 +## 1.3.0 + +### Changes + +* Remove Slack invite links + +### 🛠 Maintenance + +* Update Analyzer to 4.1.0 +* Allow release drafter to create GitHub releases +* Support latest analyzer + +## 1.0.1 * Update dependencies -# 1.0.0 +## 1.0.0 ### Changes @@ -14,52 +26,52 @@ * Make floor null-safe -# 0.12.0 +## 0.12.0 * Add `@Fts3` and `@Fts4` annotations -# 0.11.0 +## 0.11.0 * Change `ForeignKeyAction` int constants to enum -# 0.10.0 +## 0.10.0 * Add experimental `TypeConverter` abstract class and `TypeConverters` annotation -# 0.9.0 +## 0.9.0 * Update meta package -# 0.8.0 +## 0.8.0 **⚠️ You need to migrate the explicit usages of `OnConflictStrategy` and `ForeignKeyAction` from snake case to camel case.** * Apply camel case to constants -# 0.7.0 +## 0.7.0 * Add @DatabaseView annotation -# 0.6.0 +## 0.6.0 * Add @ignore annotation -# 0.5.0 +## 0.5.0 * Update dependency -# 0.4.0 +## 0.4.0 * Add primary key field to @Entity annotation -# 0.3.1 +## 0.3.1 ### Changes * Revert meta package to version 1.1.6 -# 0.3.0 +## 0.3.0 ### Changes @@ -76,7 +88,7 @@ snake case to camel case.** * Correct mapper instance name referenced by generated query methods -# 0.2.0 +## 0.2.0 ### Changes @@ -95,7 +107,7 @@ snake 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_annotation/pubspec.yaml b/floor_annotation/pubspec.yaml index 892aa52a..ea25fc60 100644 --- a/floor_annotation/pubspec.yaml +++ b/floor_annotation/pubspec.yaml @@ -2,8 +2,8 @@ name: floor_annotation description: > The typesafe, reactive, and lightweight SQLite abstraction for your Flutter applications. Don't use this package directly. Import the floor package instead. -version: 1.0.1 -homepage: https://floor.codes +version: 1.3.0 +homepage: https://vitusortner.github.io/floor/ environment: sdk: '>=2.12.0 <3.0.0' diff --git a/floor_generator/CHANGELOG.md b/floor_generator/CHANGELOG.md index 5d0d3c74..a34dcce7 100644 --- a/floor_generator/CHANGELOG.md +++ b/floor_generator/CHANGELOG.md @@ -4,7 +4,13 @@ ### Changes -* Support analyzer version 3.+ +* Remove Slack invite links + +### 🛠 Maintenance + +* Update Analyzer to 4.1.0 +* Allow release drafter to create GitHub releases +* Support latest analyzer ## 1.2.0 diff --git a/floor_generator/pubspec.lock b/floor_generator/pubspec.lock index 568bdabc..a261ada5 100644 --- a/floor_generator/pubspec.lock +++ b/floor_generator/pubspec.lock @@ -168,7 +168,7 @@ packages: path: "../floor_annotation" relative: true source: path - version: "1.0.1" + version: "1.3.0" frontend_server_client: dependency: transitive description: diff --git a/floor_generator/pubspec.yaml b/floor_generator/pubspec.yaml index e667eb63..b4e8d349 100644 --- a/floor_generator/pubspec.yaml +++ b/floor_generator/pubspec.yaml @@ -3,14 +3,14 @@ description: > The typesafe, reactive, and lightweight SQLite abstraction for your Flutter applications. This library is the dev dependency. version: 1.3.0 -homepage: https://floor.codes +homepage: https://vitusortner.github.io/floor/ publish_to: none environment: sdk: '>=2.12.0 <3.0.0' dependencies: - analyzer: '>= 4.0.0 <5.0.0' + analyzer: '>=4.0.0 <5.0.0' build: ^2.1.0 build_config: ^1.0.0 code_builder: ^4.1.0