Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/actions/xcframework/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,13 @@ runs:
- name: Set up XCode
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest-stable
# TODO: Update to latest-stable once GH installs iOS 26 simulators
xcode-version: '^16.4.0'

- name: List simulators
shell: bash
run: |
xcrun xctrace list devices

- name: Build iOS & macOS xcframework
shell: bash
Expand Down
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ inherits = "release"
inherits = "wasm"

[workspace.package]
version = "0.4.5"
version = "0.4.6"
edition = "2024"
authors = ["JourneyApps"]
keywords = ["sqlite", "powersync"]
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ plugins {
}

group = "com.powersync"
version = "0.4.5"
version = "0.4.6"
description = "PowerSync Core SQLite Extension"

val localRepo = uri("build/repository/")
Expand Down
2 changes: 1 addition & 1 deletion android/src/prefab/prefab.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"name": "powersync_sqlite_core",
"schema_version": 2,
"dependencies": [],
"version": "0.4.5"
"version": "0.4.6"
}
2 changes: 1 addition & 1 deletion powersync-sqlite-core.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'powersync-sqlite-core'
s.version = '0.4.5'
s.version = '0.4.6'
s.summary = 'PowerSync SQLite Extension'
s.description = <<-DESC
PowerSync extension for SQLite.
Expand Down
2 changes: 1 addition & 1 deletion tool/build_xcframework.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ TARGETS=(
aarch64-apple-tvos-sim
x86_64-apple-tvos
)
VERSION=0.4.5
VERSION=0.4.6

function generatePlist() {
min_os_version=0
Expand Down
Loading