diff --git a/CHANGELOG.md b/CHANGELOG.md index 588e1948..d76c9f82 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,16 +1,14 @@ # Changelog -# 1.0.0-nullsafety.1 +# 1.0.0 ### Changes -* Migrate to stable Dart 2.12 - -# 1.0.0-nullsafety.0 +* Use stable Dart 2.12.0 ### 🚀 Features -* Make floor null safe +* Make floor null-safe # 0.19.1 diff --git a/README.md b/README.md index 9247dd2d..5ddde35a 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,7 @@ Floor provides a neat SQLite abstraction for your Flutter applications inspired 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. As a consequence, it's necessary to have an understanding of SQL and SQLite in order to harvest Floor's full potential. +- null-safe - typesafe - reactive - lightweight @@ -14,7 +15,7 @@ As a consequence, it's necessary to have an understanding of SQL and SQLite in o - no hidden costs - iOS, Android, Linux, macOS, Windows -⚠️ The library is on its way to its first stable release and is open to contributions! +⚠️ The library is open to contributions! Refer to [GitHub Discussions](https://github.com/vitusortner/floor/discussions) for questions, ideas, and discussions. [![pub package](https://img.shields.io/pub/v/floor.svg)](https://pub.dartlang.org/packages/floor) @@ -36,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.0-nullsafety + floor: ^1.0.0 dev_dependencies: - floor_generator: ^1.0.0-nullsafety + floor_generator: ^1.0.0 build_runner: ^1.11.5 ``` diff --git a/docs/changelog.md b/docs/changelog.md index 7def4e32..44e7c7fe 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,16 +1,14 @@ # Changelog -## 1.0.0-nullsafety.1 +## 1.0.0 ### Changes -* Migrate to stable Dart 2.12 - -## 1.0.0-nullsafety.0 +* Use stable Dart 2.12.0 ### 🚀 Features -* Make floor null safe +* Make floor null-safe ## 0.19.1 diff --git a/docs/getting-started.md b/docs/getting-started.md index f5b3a00d..7e6e10f1 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.0-nullsafety + floor: ^1.0.0 dev_dependencies: - floor_generator: ^1.0.0-nullsafety + floor_generator: ^1.0.0 build_runner: ^1.11.5 ``` diff --git a/docs/index.md b/docs/index.md index 2b8aa0d7..23d912c4 100644 --- a/docs/index.md +++ b/docs/index.md @@ -4,6 +4,7 @@ Floor provides a neat SQLite abstraction for your Flutter applications inspired 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. As a consequence, it's necessary to have an understanding of SQL and SQLite in order to harvest Floor's full potential. +- null-safe - typesafe - reactive - lightweight @@ -13,7 +14,7 @@ As a consequence, it's necessary to have an understanding of SQL and SQLite in o - iOS, Android, Linux, macOS, Windows !!! important - The library is on its way to its first stable release and is open to contributions! + The library is open to contributions! Refer to [GitHub Discussions](https://github.com/vitusortner/floor/discussions) for questions, ideas, and discussions. [![pub package](https://img.shields.io/pub/v/floor.svg)](https://pub.dartlang.org/packages/floor) diff --git a/example/pubspec.lock b/example/pubspec.lock index 58e1651a..f99d60c7 100644 --- a/example/pubspec.lock +++ b/example/pubspec.lock @@ -196,21 +196,21 @@ packages: path: "../floor" relative: true source: path - version: "1.0.0-nullsafety.1" + version: "1.0.0" floor_annotation: dependency: transitive description: path: "../floor_annotation" relative: true source: path - version: "1.0.0-nullsafety.1" + version: "1.0.0" floor_generator: dependency: "direct dev" description: path: "../floor_generator" relative: true source: path - version: "1.0.0-nullsafety.1" + version: "1.0.0" flutter: dependency: "direct main" description: flutter diff --git a/example/pubspec.yaml b/example/pubspec.yaml index abecf8d2..e1836fe2 100644 --- a/example/pubspec.yaml +++ b/example/pubspec.yaml @@ -2,7 +2,7 @@ name: example description: > The typesafe, reactive and lightweight SQLite abstraction for your Flutter applications. This is an example on how to use the library. -version: 1.0.0-nullsafety.1 +version: 1.0.0 homepage: https://github.com/vitusortner/floor author: vitusortner publish_to: none diff --git a/floor/CHANGELOG.md b/floor/CHANGELOG.md index 4a542db4..d76c9f82 100644 --- a/floor/CHANGELOG.md +++ b/floor/CHANGELOG.md @@ -1,16 +1,14 @@ # Changelog -# 1.0.0-nullsafety.1 +# 1.0.0 ### Changes -* Migrate to stable Dart 2.12 - -# 1.0.0-nullsafety.0 +* Use stable Dart 2.12.0 ### 🚀 Features -* Make floor null safe +* Make floor null-safe # 0.19.1 diff --git a/floor/README.md b/floor/README.md index 454555cf..dfeb7349 100644 --- a/floor/README.md +++ b/floor/README.md @@ -6,6 +6,7 @@ Floor provides a neat SQLite abstraction for your Flutter applications inspired 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. As a consequence, it's necessary to have an understanding of SQL and SQLite in order to harvest Floor's full potential. +- null-safe - typesafe - reactive - lightweight @@ -14,7 +15,7 @@ As a consequence, it's necessary to have an understanding of SQL and SQLite in o - no hidden costs - iOS, Android, Linux, macOS, Windows -⚠️ The library is on its way to its first stable release and is open to contributions! +⚠️ The library is open to contributions! Refer to [GitHub Discussions](https://github.com/vitusortner/floor/discussions) for questions, ideas, and discussions. [![pub package](https://img.shields.io/pub/v/floor.svg)](https://pub.dartlang.org/packages/floor) @@ -36,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.0-nullsafety + floor: ^1.0.0 dev_dependencies: - floor_generator: ^1.0.0-nullsafety + floor_generator: ^1.0.0 build_runner: ^1.11.5 ``` diff --git a/floor/pubspec.lock b/floor/pubspec.lock index 6ab74f40..e1023ccf 100644 --- a/floor/pubspec.lock +++ b/floor/pubspec.lock @@ -196,14 +196,14 @@ packages: path: "../floor_annotation" relative: true source: path - version: "1.0.0-nullsafety.1" + version: "1.0.0" floor_generator: dependency: "direct dev" description: path: "../floor_generator" relative: true source: path - version: "1.0.0-nullsafety.1" + version: "1.0.0" flutter: dependency: "direct main" description: flutter diff --git a/floor/pubspec.yaml b/floor/pubspec.yaml index 9334ff70..f2f7b3d9 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.0-nullsafety.1 +version: 1.0.0 homepage: https://github.com/vitusortner/floor author: Vitus Ortner publish_to: none diff --git a/floor_annotation/CHANGELOG.md b/floor_annotation/CHANGELOG.md index 53739a0d..d7769dc6 100644 --- a/floor_annotation/CHANGELOG.md +++ b/floor_annotation/CHANGELOG.md @@ -1,16 +1,14 @@ # Changelog -# 1.0.0-nullsafety.1 +# 1.0.0 ### Changes -* Migrate to stable Dart 2.12 - -# 1.0.0-nullsafety.0 +* Use stable Dart 2.12.0 ### 🚀 Features -* Make floor null safe +* Make floor null-safe # 0.12.0 @@ -30,8 +28,8 @@ # 0.8.0 -**⚠️ You need to migrate the explicit usages of `OnConflictStrategy` and `ForeignKeyAction` from snake case to camel -case.** +**⚠️ You need to migrate the explicit usages of `OnConflictStrategy` and `ForeignKeyAction` from +snake case to camel case.** * Apply camel case to constants diff --git a/floor_annotation/pubspec.yaml b/floor_annotation/pubspec.yaml index 776df515..1ee027b2 100644 --- a/floor_annotation/pubspec.yaml +++ b/floor_annotation/pubspec.yaml @@ -2,7 +2,7 @@ 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.0-nullsafety.1 +version: 1.0.0 homepage: https://github.com/vitusortner/floor author: Vitus Ortner @@ -10,4 +10,4 @@ environment: sdk: '>=2.12.0 <3.0.0' dependencies: - meta: ^1.3.0 \ No newline at end of file + meta: ^1.3.0 diff --git a/floor_generator/CHANGELOG.md b/floor_generator/CHANGELOG.md index 588e1948..d76c9f82 100644 --- a/floor_generator/CHANGELOG.md +++ b/floor_generator/CHANGELOG.md @@ -1,16 +1,14 @@ # Changelog -# 1.0.0-nullsafety.1 +# 1.0.0 ### Changes -* Migrate to stable Dart 2.12 - -# 1.0.0-nullsafety.0 +* Use stable Dart 2.12.0 ### 🚀 Features -* Make floor null safe +* Make floor null-safe # 0.19.1 diff --git a/floor_generator/pubspec.lock b/floor_generator/pubspec.lock index 72351ec0..2deac60b 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.0-nullsafety.1" + version: "1.0.0" glob: dependency: transitive description: diff --git a/floor_generator/pubspec.yaml b/floor_generator/pubspec.yaml index fe6cd17f..e77a8c55 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.0-nullsafety.1 +version: 1.0.0 homepage: https://github.com/vitusortner/floor author: Vitus Ortner publish_to: none