Bump version numbers

This commit is contained in:
Simon Binder 2024-04-23 15:31:49 +02:00
parent 8865e9360f
commit 24af4873e7
No known key found for this signature in database
GPG Key ID: 7891917E4147B8C0
6 changed files with 16 additions and 5 deletions

View File

@ -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`

View File

@ -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

View File

@ -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.

View File

@ -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'

View File

@ -1,3 +1,7 @@
## 0.36.0-dev
- Add support for the geopoly module.
## 0.35.0
- Fix parsing binary literals.

View File

@ -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/