From 24af4873e7b1e2ae2c73deaf5ac98b6cf18b728c Mon Sep 17 00:00:00 2001 From: Simon Binder Date: Tue, 23 Apr 2024 15:31:49 +0200 Subject: [PATCH] Bump version numbers --- drift/CHANGELOG.md | 3 +++ drift/pubspec.yaml | 2 +- drift_dev/CHANGELOG.md | 4 ++++ drift_dev/pubspec.yaml | 6 +++--- sqlparser/CHANGELOG.md | 4 ++++ sqlparser/pubspec.yaml | 2 +- 6 files changed, 16 insertions(+), 5 deletions(-) diff --git a/drift/CHANGELOG.md b/drift/CHANGELOG.md index f4a87ebb..3bc2d499 100644 --- a/drift/CHANGELOG.md +++ b/drift/CHANGELOG.md @@ -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` diff --git a/drift/pubspec.yaml b/drift/pubspec.yaml index 5557b498..2e5422f2 100644 --- a/drift/pubspec.yaml +++ b/drift/pubspec.yaml @@ -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 diff --git a/drift_dev/CHANGELOG.md b/drift_dev/CHANGELOG.md index 596fc483..25254fd7 100644 --- a/drift_dev/CHANGELOG.md +++ b/drift_dev/CHANGELOG.md @@ -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. diff --git a/drift_dev/pubspec.yaml b/drift_dev/pubspec.yaml index bf826fe3..1fcc64bd 100644 --- a/drift_dev/pubspec.yaml +++ b/drift_dev/pubspec.yaml @@ -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' diff --git a/sqlparser/CHANGELOG.md b/sqlparser/CHANGELOG.md index b3806d76..74ccd961 100644 --- a/sqlparser/CHANGELOG.md +++ b/sqlparser/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.36.0-dev + +- Add support for the geopoly module. + ## 0.35.0 - Fix parsing binary literals. diff --git a/sqlparser/pubspec.yaml b/sqlparser/pubspec.yaml index 271a4321..ffaa4b87 100644 --- a/sqlparser/pubspec.yaml +++ b/sqlparser/pubspec.yaml @@ -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/