From f857cb17b57fd8c8aecf09d4328335cc78f3e4b2 Mon Sep 17 00:00:00 2001 From: Simon Binder Date: Fri, 11 Aug 2023 15:20:22 +0200 Subject: [PATCH] Prepare 2.11.0 release --- drift/CHANGELOG.md | 5 +++-- drift/pubspec.yaml | 2 +- drift_dev/pubspec.yaml | 4 ++-- sqlparser/CHANGELOG.md | 2 +- sqlparser/pubspec.yaml | 2 +- 5 files changed, 8 insertions(+), 7 deletions(-) diff --git a/drift/CHANGELOG.md b/drift/CHANGELOG.md index 0c58caf5b..e0258f130 100644 --- a/drift/CHANGELOG.md +++ b/drift/CHANGELOG.md @@ -5,9 +5,10 @@ expressions. - Add the `substr` extension on `Expression` to call the sqlite3 function from the Dart API. -- Add `isolateSetup` to `NativeDatabase.createInBackground()` to override libraries. +- Add `isolateSetup` to `NativeDatabase.createInBackground()` to override native libraries + or perform other database-unrelated setup work. - Add `WasmDatabase.probe()`, a method probing for available implementations and existing - databases without opening one directly. + databases on the web without opening one directly. ## 2.10.0 diff --git a/drift/pubspec.yaml b/drift/pubspec.yaml index e954f337d..4163068bd 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.11.0-dev +version: 2.11.0 repository: https://github.com/simolus3/drift homepage: https://drift.simonbinder.eu/ issue_tracker: https://github.com/simolus3/drift/issues diff --git a/drift_dev/pubspec.yaml b/drift_dev/pubspec.yaml index 875af92c0..dcf378e79 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.10.0 +version: 2.11.0 repository: https://github.com/simolus3/drift homepage: https://drift.simonbinder.eu/ issue_tracker: https://github.com/simolus3/drift/issues @@ -30,7 +30,7 @@ dependencies: io: ^1.0.3 # Drift-specific analysis and apis - drift: '>=2.10.0 <2.11.0' + drift: '>=2.11.0 <2.12.0' sqlite3: '>=0.1.6 <3.0.0' sqlparser: '^0.31.0' diff --git a/sqlparser/CHANGELOG.md b/sqlparser/CHANGELOG.md index d01634901..73da2335a 100644 --- a/sqlparser/CHANGELOG.md +++ b/sqlparser/CHANGELOG.md @@ -1,4 +1,4 @@ -## 0.31.0-dev +## 0.31.0 - Add `SqlEngine.parseMultiple` to parse multiple statements into one AST. diff --git a/sqlparser/pubspec.yaml b/sqlparser/pubspec.yaml index 38286c9ad..7614dc30e 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.31.0-dev +version: 0.31.0 homepage: https://github.com/simolus3/drift/tree/develop/sqlparser repository: https://github.com/simolus3/drift #homepage: https://drift.simonbinder.eu/