Skip to content

Commit 8894335

Browse files
committed
Prepare release
1 parent 61bcb37 commit 8894335

File tree

5 files changed

+28
-2
lines changed

5 files changed

+28
-2
lines changed

sqlite3/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 2.7.6
2+
3+
- Export `package:sqlite3/native_assets.dart`, making it easier for libraries
4+
to support both the regular `sqlite3` getter and the upcoming
5+
`sqlite3NativeAssets` variant.
6+
17
## 2.7.5
28

39
- On Windows, try loading `winsqlite3.dll` as a fallback if loading

sqlite3/lib/native_assets.dart

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
/// Exports a variant of the native `sqlite3` library where symbols are resolved
2+
/// through Dart's [native assets](https://github.com/dart-lang/sdk/issues/50565)
3+
/// feature instead of through lookups with [DynamicLibrary].
4+
///
5+
/// At the moment, the use of [sqlite3Native] also requires a dependency on the
6+
/// [sqlite3_native_assets](https://pub.dev/packages/sqlite3_native_assets)
7+
/// package.
8+
@experimental
9+
library;
10+
11+
import 'dart:ffi';
12+
13+
export 'src/sqlite3_native_library.dart';
14+
15+
import 'package:meta/meta.dart';
16+
import 'src/sqlite3_native_library.dart';

sqlite3/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: sqlite3
22
description: Provides lightweight yet convenient bindings to SQLite by using dart:ffi
3-
version: 2.7.5
3+
version: 2.7.6
44
homepage: https://github.com/simolus3/sqlite3.dart/tree/main/sqlite3
55
issue_tracker: https://github.com/simolus3/sqlite3.dart/issues
66

sqlite3_native_assets/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.0.4
2+
3+
- Add user-defines to control how SQLite gets downloaded and compiled.
4+
15
## 0.0.3
26

37
- Enable builtin math functions.

sqlite3_native_assets/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: sqlite3_native_assets
22
description: Access to SQLite with the `sqlite3` package and the upcoming "Native assets" feature. This package will eventually replace `sqlite3_flutter_libs`.
3-
version: 0.0.3
3+
version: 0.0.4
44
homepage: https://github.com/simolus3/sqlite3.dart/tree/main/sqlite3_native_assets
55
issue_tracker: https://github.com/simolus3/sqlite3.dart/issues
66

0 commit comments

Comments
 (0)