mirror of https://github.com/AMT-Cheif/drift.git
Bump version numbers
This commit is contained in:
parent
8865e9360f
commit
24af4873e7
|
@ -1,5 +1,8 @@
|
|||
## 2.18.0-dev
|
||||
|
||||
- Adds a new interface for writing most simple statements without manually creating
|
||||
select statements and expressions.
|
||||
For a detailed description, see the [documentation website](https://drift.simonbinder.eu/docs/getting-started/manager/).
|
||||
- Add `AggregateFunctionExpression` to write custom [aggregate function](https://www.sqlite.org/lang_aggfunc.html)
|
||||
invocations in the Dart query builder.
|
||||
- The `json_group_array` and `jsonb_group_array` functions now contain an `orderBy`
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
name: drift
|
||||
description: Drift is a reactive library to store relational data in Dart and Flutter applications.
|
||||
version: 2.17.0
|
||||
version: 2.18.0-dev
|
||||
repository: https://github.com/simolus3/drift
|
||||
homepage: https://drift.simonbinder.eu/
|
||||
issue_tracker: https://github.com/simolus3/drift/issues
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
## 2.18.0-dev
|
||||
|
||||
- Add support for the `geopoly` extension in drift files.
|
||||
|
||||
## 2.17.0
|
||||
|
||||
- Fix drift using the wrong import alias in generated part files.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
name: drift_dev
|
||||
description: Dev-dependency for users of drift. Contains the generator and development tools.
|
||||
version: 2.17.0
|
||||
version: 2.18.0-dev
|
||||
repository: https://github.com/simolus3/drift
|
||||
homepage: https://drift.simonbinder.eu/
|
||||
issue_tracker: https://github.com/simolus3/drift/issues
|
||||
|
@ -30,9 +30,9 @@ dependencies:
|
|||
io: ^1.0.3
|
||||
|
||||
# Drift-specific analysis and apis
|
||||
drift: '>=2.17.0 <2.18.0'
|
||||
drift: '>=2.18.0-dev <2.18.0'
|
||||
sqlite3: '>=0.1.6 <3.0.0'
|
||||
sqlparser: '^0.35.0'
|
||||
sqlparser: '^0.36.0'
|
||||
|
||||
# Dart analysis
|
||||
analyzer: '>=5.12.0 <7.0.0'
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
## 0.36.0-dev
|
||||
|
||||
- Add support for the geopoly module.
|
||||
|
||||
## 0.35.0
|
||||
|
||||
- Fix parsing binary literals.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
name: sqlparser
|
||||
description: Parses sqlite statements and performs static analysis on them
|
||||
version: 0.35.0
|
||||
version: 0.36.0-dev
|
||||
homepage: https://github.com/simolus3/drift/tree/develop/sqlparser
|
||||
repository: https://github.com/simolus3/drift
|
||||
#homepage: https://drift.simonbinder.eu/
|
||||
|
|
Loading…
Reference in New Issue