mirror of https://github.com/AMT-Cheif/drift.git
Prepare to release 4.3.0
This commit is contained in:
parent
8d1483ea97
commit
371e744288
|
@ -1,4 +1,4 @@
|
||||||
## 4.3.0-dev
|
## 4.3.0
|
||||||
|
|
||||||
- Support custom, existing classes for rows! See the `@UseRowClass` annotation
|
- Support custom, existing classes for rows! See the `@UseRowClass` annotation
|
||||||
for details.
|
for details.
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
name: moor
|
name: moor
|
||||||
description: Moor is a safe and reactive persistence library for Dart applications
|
description: Moor is a safe and reactive persistence library for Dart applications
|
||||||
version: 4.2.1
|
version: 4.3.0
|
||||||
repository: https://github.com/simolus3/moor
|
repository: https://github.com/simolus3/moor
|
||||||
homepage: https://moor.simonbinder.eu/
|
homepage: https://moor.simonbinder.eu/
|
||||||
issue_tracker: https://github.com/simolus3/moor/issues
|
issue_tracker: https://github.com/simolus3/moor/issues
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
name: moor_generator
|
name: moor_generator
|
||||||
description: Dev-dependency to generate table and dataclasses together with the moor package.
|
description: Dev-dependency to generate table and dataclasses together with the moor package.
|
||||||
version: 4.2.2
|
version: 4.3.0
|
||||||
repository: https://github.com/simolus3/moor
|
repository: https://github.com/simolus3/moor
|
||||||
homepage: https://moor.simonbinder.eu/
|
homepage: https://moor.simonbinder.eu/
|
||||||
issue_tracker: https://github.com/simolus3/moor/issues
|
issue_tracker: https://github.com/simolus3/moor/issues
|
||||||
|
@ -25,7 +25,7 @@ dependencies:
|
||||||
# Moor-specific analysis and apis
|
# Moor-specific analysis and apis
|
||||||
moor: ^4.1.0
|
moor: ^4.1.0
|
||||||
sqlite3: '>=0.1.6 <2.0.0'
|
sqlite3: '>=0.1.6 <2.0.0'
|
||||||
sqlparser: ^0.15.0
|
sqlparser: ^0.16.0
|
||||||
|
|
||||||
# Dart analysis
|
# Dart analysis
|
||||||
analyzer: "^1.5.0"
|
analyzer: "^1.5.0"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
## 0.16.0-dev
|
## 0.16.0
|
||||||
|
|
||||||
- New analysis checks for `RETURNING`: Disallow `table.*` syntax and aggregate expressions
|
- New analysis checks for `RETURNING`: Disallow `table.*` syntax and aggregate expressions
|
||||||
- Support `RAISE` expressions in triggers
|
- Support `RAISE` expressions in triggers
|
||||||
|
|
|
@ -15,7 +15,7 @@ dependencies:
|
||||||
charcode: ^1.2.0
|
charcode: ^1.2.0
|
||||||
|
|
||||||
dev_dependencies:
|
dev_dependencies:
|
||||||
test: ^1.16.0
|
test: ^1.17.4
|
||||||
path: ^1.8.0
|
path: ^1.8.0
|
||||||
ffi: ^1.0.0
|
ffi: ^1.0.0
|
||||||
sqlite3: ^1.0.0
|
sqlite3: ^1.0.0
|
Loading…
Reference in New Issue