diff --git a/moor/CHANGELOG.md b/moor/CHANGELOG.md index 37456f2e..99f98fc1 100644 --- a/moor/CHANGELOG.md +++ b/moor/CHANGELOG.md @@ -27,6 +27,9 @@ - Fix streams not emitting cached data when listening multiple times - __Breaking__: Remove the type parameter from `Insertable.createCompanion` (it was declared as an internal method) + +__2.0.1+1__: Fix crash when `customStatement` is the first operation used on a database +([#199](https://github.com/simolus3/moor/issues/199)) ## 2.0.0 This is the first major update after the initial release and moor and we have a lot to cover: diff --git a/moor/pubspec.yaml b/moor/pubspec.yaml index c742bd3c..5c26f0dd 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: 2.0.1 +version: 2.0.1+1 repository: https://github.com/simolus3/moor homepage: https://moor.simonbinder.eu/ issue_tracker: https://github.com/simolus3/moor/issues @@ -27,8 +27,8 @@ dev_dependencies: test: ^1.9.0 mockito: ^4.1.0 -dependency_overrides: - moor_generator: - path: ../moor_generator - sqlparser: - path: ../sqlparser \ No newline at end of file +#dependency_overrides: +# moor_generator: +# path: ../moor_generator +# sqlparser: +# path: ../sqlparser \ No newline at end of file