Skip to content

Commit dd0612d

Browse files
committed
Fix download URL
1 parent f4fb25c commit dd0612d

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

packages/powersync_core/lib/src/database/core_version.dart

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,8 @@ extension type const PowerSyncCoreVersion((int, int, int) _tuple) {
5757
/// The minimum version of the sqlite core extensions we support. We check
5858
/// this version when opening databases to fail early and with an actionable
5959
/// error message.
60+
// Note: When updating this, also update the download URL in
61+
// scripts/init_powersync_core_binary.dart
6062
static const minimum = PowerSyncCoreVersion((0, 3, 11));
6163

6264
/// The first version of the core extensions that this version of the Dart

scripts/init_powersync_core_binary.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import 'dart:io';
66
import 'package:melos/melos.dart';
77

88
final sqliteUrl =
9-
'https://github.com/powersync-ja/powersync-sqlite-core/releases/download/v0.3.10';
9+
'https://github.com/powersync-ja/powersync-sqlite-core/releases/download/v0.3.11';
1010

1111
void main() async {
1212
final sqliteCoreFilename = getLibraryForPlatform();

0 commit comments

Comments
 (0)