Skip to content

Commit e12fda7

Browse files
committed
Release version 0.3.11
1 parent 67d584c commit e12fda7

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

Cargo.lock

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ inherits = "release"
2929
inherits = "wasm"
3030

3131
[workspace.package]
32-
version = "0.3.10"
32+
version = "0.3.11"
3333
edition = "2021"
3434
authors = ["JourneyApps"]
3535
keywords = ["sqlite", "powersync"]

android/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
}
77

88
group = "co.powersync"
9-
version = "0.3.10"
9+
version = "0.3.11"
1010
description = "PowerSync Core SQLite Extension"
1111

1212
repositories {

android/src/prefab/prefab.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
"name": "powersync_sqlite_core",
33
"schema_version": 2,
44
"dependencies": [],
5-
"version": "0.3.10"
5+
"version": "0.3.11"
66
}

crates/core/src/sync_local.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ impl<'a> SyncOperation<'a> {
6363

6464
fn can_apply_sync_changes(&self) -> Result<bool, SQLiteError> {
6565
// Don't publish downloaded data until the upload queue is empty (except for downloaded data
66-
//in priority 0, which is published earlier).
66+
// in priority 0, which is published earlier).
6767

6868
let needs_check = match &self.partial {
6969
Some(p) => !p.priority.may_publish_with_outstanding_uploads(),

tool/build_xcframework.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ function createXcframework() {
2828
<key>MinimumOSVersion</key>
2929
<string>11.0</string>
3030
<key>CFBundleVersion</key>
31-
<string>0.3.10</string>
31+
<string>0.3.11</string>
3232
<key>CFBundleShortVersionString</key>
33-
<string>0.3.10</string>
33+
<string>0.3.11</string>
3434
</dict>
3535
</plist>
3636
EOF

0 commit comments

Comments
 (0)