Skip to content

Commit

Permalink
Prepare 2.14 release
Browse files Browse the repository at this point in the history
  • Loading branch information
simolus3 committed Dec 4, 2023
1 parent 27b459d commit 633cc52
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 9 deletions.
5 changes: 3 additions & 2 deletions drift/CHANGELOG.md
@@ -1,6 +1,7 @@
## 2.14.0-dev
## 2.14.0

- Add the `QueryInterceptor` to easily monitor all database calls made by drift.
- Add the `QueryInterceptor` API to easily monitor or transform all database
calls made by drift.
- Add the `count()` extension on tables to easily count rows in tables or views.

## 2.13.2
Expand Down
2 changes: 1 addition & 1 deletion 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.14.0-dev
version: 2.14.0
repository: https://github.com/simolus3/drift
homepage: https://drift.simonbinder.eu/
issue_tracker: https://github.com/simolus3/drift/issues
Expand Down
7 changes: 5 additions & 2 deletions drift_dev/CHANGELOG.md
@@ -1,12 +1,15 @@
## 2.14.0-dev
## 2.14.0

- __Breaking change__: The name of the generated row class derived from the name
of the Dart table name now supports more forms of plurals.
For instance, a table without a `@DataClassName` annotation named `Categories`
would now generate a `Category` class instead of `Categorie`.
would now generate a `Category` class instead of `Categorie`. This is done in
a minor release because we assume most users are using `@DataClassName` in those
cases.
- Make versioned schema snapshots generated by `drift_dev schema steps` public.
- Don't generate `const` row classes when they are extending a class which
isn't const.
- Fix indices attached to tables not generating reliably.

## 2.13.2

Expand Down
4 changes: 2 additions & 2 deletions 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.14.0-dev
version: 2.14.0
repository: https://github.com/simolus3/drift
homepage: https://drift.simonbinder.eu/
issue_tracker: https://github.com/simolus3/drift/issues
Expand Down Expand Up @@ -32,7 +32,7 @@ dependencies:
# Drift-specific analysis and apis
drift: '>=2.14.0 <2.15.0'
sqlite3: '>=0.1.6 <3.0.0'
sqlparser: '^0.33.0-dev'
sqlparser: '^0.33.0'

# Dart analysis
analyzer: '>=5.12.0 <7.0.0'
Expand Down
2 changes: 1 addition & 1 deletion sqlparser/CHANGELOG.md
@@ -1,4 +1,4 @@
## 0.33.0-dev
## 0.33.0

- Support the [column-name-list](https://sqlite.org/syntax/column-name-list.html)
syntax for updates, thanks to [@tibotix](https://github.com/tibotix).
Expand Down
2 changes: 1 addition & 1 deletion sqlparser/pubspec.yaml
@@ -1,6 +1,6 @@
name: sqlparser
description: Parses sqlite statements and performs static analysis on them
version: 0.33.0-dev
version: 0.33.0
homepage: https://github.com/simolus3/drift/tree/develop/sqlparser
repository: https://github.com/simolus3/drift
#homepage: https://drift.simonbinder.eu/
Expand Down

0 comments on commit 633cc52

Please sign in to comment.