From 1dad8a00d8061e177d6671c05abaee8cafe484b5 Mon Sep 17 00:00:00 2001 From: Simon Binder Date: Wed, 10 May 2023 10:24:58 +0200 Subject: [PATCH] Prepare 2.8.0 release --- drift/CHANGELOG.md | 2 +- drift/pubspec.yaml | 2 +- drift_dev/CHANGELOG.md | 3 ++- drift_dev/pubspec.yaml | 4 ++-- sqlparser/CHANGELOG.md | 2 +- sqlparser/pubspec.yaml | 2 +- 6 files changed, 8 insertions(+), 7 deletions(-) diff --git a/drift/CHANGELOG.md b/drift/CHANGELOG.md index 2df2d013a..0c621336b 100644 --- a/drift/CHANGELOG.md +++ b/drift/CHANGELOG.md @@ -1,4 +1,4 @@ -## 2.8.0-dev +## 2.8.0 - Don't keep databases in an unusable state if the `setup` callback throws an exception. Instead, drift will retry the next time the database is used. diff --git a/drift/pubspec.yaml b/drift/pubspec.yaml index 152ee68a7..444069688 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.7.0 +version: 2.8.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/CHANGELOG.md b/drift_dev/CHANGELOG.md index 749f2e3b0..a08c66c8e 100644 --- a/drift_dev/CHANGELOG.md +++ b/drift_dev/CHANGELOG.md @@ -1,6 +1,7 @@ -## 2.8.0-dev +## 2.8.0 - Support named constructors for existing row types in drift files ([#2399](https://github.com/simolus3/drift/issues/2399)). +- Fix compilation issues with `analyzer: 5.12.0`. ## 2.7.0 diff --git a/drift_dev/pubspec.yaml b/drift_dev/pubspec.yaml index 130255c8f..814cb0046 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.8.0-dev +version: 2.8.0 repository: https://github.com/simolus3/drift homepage: https://drift.simonbinder.eu/ issue_tracker: https://github.com/simolus3/drift/issues @@ -25,7 +25,7 @@ dependencies: io: ^1.0.3 # Drift-specific analysis and apis - drift: '>=2.7.0 <2.8.0' + drift: '>=2.8.0 <2.9.0' sqlite3: '>=0.1.6 <2.0.0' sqlparser: '^0.29.0' diff --git a/sqlparser/CHANGELOG.md b/sqlparser/CHANGELOG.md index 48906c76b..f7b9a431a 100644 --- a/sqlparser/CHANGELOG.md +++ b/sqlparser/CHANGELOG.md @@ -1,4 +1,4 @@ -## 0.29.0-dev +## 0.29.0 - Parser support for constructor names in `WITH` drift syntax. - Support resolving `IIF` functions. diff --git a/sqlparser/pubspec.yaml b/sqlparser/pubspec.yaml index 17f1fd42f..65b6576fd 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.29.0-dev +version: 0.29.0 homepage: https://github.com/simolus3/drift/tree/develop/sqlparser repository: https://github.com/simolus3/drift #homepage: https://drift.simonbinder.eu/