diff --git a/README.md b/README.md index b535e895..f90d70cd 100644 --- a/README.md +++ b/README.md @@ -10,4 +10,4 @@ Moor is an easy to use, reactive persistence library for Flutter apps. Define your database tables in pure Dart and enjoy a fluent query API, auto-updating streams and more! -For more information, check out the [docs](https://simolus3.github.io/moor/). \ No newline at end of file +For more information, check out the [docs](https://moor.simonbinder.eu/). \ No newline at end of file diff --git a/moor/CHANGELOG.md b/moor/CHANGELOG.md index dfc0171e..2bae0947 100644 --- a/moor/CHANGELOG.md +++ b/moor/CHANGELOG.md @@ -1,3 +1,12 @@ +## 1.3.0 +- Moor now supports table joins + - Added table aliases +- Default values for columns: Just use the `withDefault` method when declaring a column + - added expressions that resolve to the current date or time +- Fixed a crash that would occur if the first operation was a transaction +- Better support for custom expressions as part of a regular query +- Faster hashcode implementation in generated data classes + ## 1.2.0 - __Breaking__: Generated DAO classes are now called `_$YourNameHere`, it used to be just `_YourNameHere` (without the dollar sign) diff --git a/moor/README.md b/moor/README.md index a40af609..2f7c768c 100644 --- a/moor/README.md +++ b/moor/README.md @@ -7,6 +7,6 @@ auto-updating streams and more! This library defines the APIs for the moor persistence library. When using the library, you'll probably want to use the moor_flutter implementation directly. -Please see the homepage of [moor](https://github.com/simolus3/moor) or +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 diff --git a/moor/pubspec.yaml b/moor/pubspec.yaml index aedd0ffd..4bc57bc9 100644 --- a/moor/pubspec.yaml +++ b/moor/pubspec.yaml @@ -1,6 +1,6 @@ name: moor description: Moor is a safe and reactive persistence library for Dart applications -version: 1.2.0 +version: 1.3.0 homepage: https://github.com/simolus3/moor authors: - Simon Binder @@ -14,7 +14,7 @@ dependencies: collection: '>= 1.0.0 <2.0.0' dev_dependencies: - moor_generator: ^1.2.0 + moor_generator: ^1.3.0 build_runner: ^1.3.0 build_test: ^0.10.6 test: ^1.6.2 diff --git a/moor_flutter/CHANGELOG.md b/moor_flutter/CHANGELOG.md index 89b2c5f9..0edaa657 100644 --- a/moor_flutter/CHANGELOG.md +++ b/moor_flutter/CHANGELOG.md @@ -1,3 +1,12 @@ +## 1.3.0 +- Moor now supports table joins + - Added table aliases +- Default values for columns: Just use the `withDefault` method when declaring a column + - added expressions that resolve to the current date or time +- Fixed a crash that would occur if the first operation was a transaction +- Better support for custom expressions as part of a regular query +- Faster hashcode implementation in generated data classes + ## 1.2.0 Changes from the moor and moor_generator libraries: - __Breaking__: Generated DAO classes are now called `_$YourNameHere`, it used to diff --git a/moor_flutter/pubspec.lock b/moor_flutter/pubspec.lock index 7e0198c6..994cdd2e 100644 --- a/moor_flutter/pubspec.lock +++ b/moor_flutter/pubspec.lock @@ -59,7 +59,7 @@ packages: path: "../moor" relative: true source: path - version: "1.2.0" + version: "1.3.0" path: dependency: "direct main" description: diff --git a/moor_flutter/pubspec.yaml b/moor_flutter/pubspec.yaml index b74d01d6..e1b25dc0 100644 --- a/moor_flutter/pubspec.yaml +++ b/moor_flutter/pubspec.yaml @@ -1,6 +1,6 @@ name: moor_flutter description: Flutter implementation of moor, a safe and reactive persistence library for Dart applications -version: 1.2.0 +version: 1.3.0 homepage: https://github.com/simolus3/moor authors: - Simon Binder @@ -10,7 +10,7 @@ environment: sdk: ">=2.0.0-dev.68.0 <3.0.0" dependencies: - moor: ^1.2.0 + moor: ^1.3.0 sqflite: ^1.1.0 meta: '>=1.0.0 <1.2.0' path: '>=1.0.0 <2.0.0' diff --git a/moor_generator/CHANGELOG.md b/moor_generator/CHANGELOG.md index 297beb99..e71ea66d 100644 --- a/moor_generator/CHANGELOG.md +++ b/moor_generator/CHANGELOG.md @@ -1,3 +1,12 @@ +## 1.3.0 +- Moor now supports table joins + - Added table aliases +- Default values for columns: Just use the `withDefault` method when declaring a column + - added expressions that resolve to the current date or time +- Fixed a crash that would occur if the first operation was a transaction +- Better support for custom expressions as part of a regular query +- Faster hashcode implementation in generated data classes + ## 1.2.0 - Blob data type - Generated classes now use lazy getters instead of recalculating fields on each access diff --git a/moor_generator/pubspec.yaml b/moor_generator/pubspec.yaml index 1bf16098..d220c41a 100644 --- a/moor_generator/pubspec.yaml +++ b/moor_generator/pubspec.yaml @@ -1,6 +1,6 @@ name: moor_generator description: Dev-dependency to generate table and dataclasses together with the moor package. -version: 1.2.0 +version: 1.3.0 homepage: https://github.com/simolus3/moor authors: - Simon Binder @@ -20,7 +20,7 @@ dependencies: build: ^1.1.0 build_runner: '>=1.1.0 <1.4.0' build_config: ^0.3.1 - moor: ^1.2.0 + moor: ^1.3.0 dev_dependencies: test: ^1.6.0