From 348ac2e910bcc1ebe1501cfa4e5dd851447ad836 Mon Sep 17 00:00:00 2001 From: Simon Binder Date: Sun, 10 Oct 2021 21:18:27 +0200 Subject: [PATCH] Add boilerplate files to new drift packages --- drift/LICENSE | 21 +++++++++++++++++++++ drift/pubspec.yaml | 2 +- drift_dev/README.md | 6 ++++++ drift_dev/pubspec.yaml | 4 ++-- moor_generator/README.md | 7 ++----- 5 files changed, 32 insertions(+), 8 deletions(-) create mode 100644 drift/LICENSE create mode 100644 drift_dev/README.md diff --git a/drift/LICENSE b/drift/LICENSE new file mode 100644 index 00000000..ed92ded9 --- /dev/null +++ b/drift/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2021 Simon Binder + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/drift/pubspec.yaml b/drift/pubspec.yaml index 786f213f..1e326acb 100644 --- a/drift/pubspec.yaml +++ b/drift/pubspec.yaml @@ -1,6 +1,6 @@ name: drift description: Drift is a reactive library to store relational data in Dart and Flutter applications. -version: 4.6.0-dev +version: 1.0.0 repository: https://github.com/simolus3/moor homepage: https://drift.simonbinder.eu/ issue_tracker: https://github.com/simolus3/moor/issues diff --git a/drift_dev/README.md b/drift_dev/README.md new file mode 100644 index 00000000..9b594c27 --- /dev/null +++ b/drift_dev/README.md @@ -0,0 +1,6 @@ +# moor Generator + +This library contains the generator that turns your `Table` classes from drift +into database code. + +Please see the homepage of [drift](https://drift.simonbinder.eu/) for details on how to use this package. diff --git a/drift_dev/pubspec.yaml b/drift_dev/pubspec.yaml index 975603be..3339c293 100644 --- a/drift_dev/pubspec.yaml +++ b/drift_dev/pubspec.yaml @@ -1,8 +1,8 @@ name: drift_dev description: Dev-dependency for users of drift. Contains a the generator and development tools. -version: 4.5.1 +version: 1.0.0 repository: https://github.com/simolus3/moor -homepage: https://moor.simonbinder.eu/ +homepage: https://drift.simonbinder.eu/ issue_tracker: https://github.com/simolus3/moor/issues environment: diff --git a/moor_generator/README.md b/moor_generator/README.md index 285274e9..cebb9bcf 100644 --- a/moor_generator/README.md +++ b/moor_generator/README.md @@ -1,9 +1,6 @@ # moor Generator This library contains the generator that turns your `Table` classes from moor -into database code. When using the moor, you'll probably want to use the -moor_flutter implementation directly. +into database code. -Please see the homepage of [moor](https://moor.simonbinder.eu/) or -the [moor_flutter package](https://pub.dartlang.org/packages/moor_flutter) for details -on how to use this package. \ No newline at end of file +Please see the homepage of [moor](https://moor.simonbinder.eu/) for details on how to use this package. \ No newline at end of file