Skip to content

Commit 3285e39

Browse files
authored
Merge pull request #86 from powersync-ja/update-version
Prepare 0.4.0 release
2 parents 37c4b4f + 093c046 commit 3285e39

File tree

9 files changed

+28
-63
lines changed

9 files changed

+28
-63
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ jobs:
271271
needs: [draft_release]
272272
runs-on: ubuntu-latest
273273
steps:
274-
- uses: actions/checkout@v3
274+
- uses: actions/checkout@v4
275275
with:
276276
submodules: true
277277

@@ -284,7 +284,7 @@ jobs:
284284
- name: Setup emsdk
285285
uses: mymindstorm/setup-emsdk@v14
286286
with:
287-
version: 3.1.68
287+
version: 4.0.10
288288

289289
- name: Build WASM
290290
run: ./tool/build_wasm.sh

.github/workflows/wasm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Setup emsdk
2222
uses: mymindstorm/setup-emsdk@v14
2323
with:
24-
version: 4.0.7
24+
version: 4.0.10
2525

2626
- name: Build WASM
2727
run: ./tool/build_wasm.sh

Cargo.lock

Lines changed: 18 additions & 53 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ inherits = "release"
2828
inherits = "wasm"
2929

3030
[workspace.package]
31-
version = "0.3.14"
31+
version = "0.4.0"
3232
edition = "2021"
3333
authors = ["JourneyApps"]
3434
keywords = ["sqlite", "powersync"]

android/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
}
77

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

1212
repositories {

android/src/prefab/prefab.json

Lines changed: 1 addition & 1 deletion
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.14"
5+
"version": "0.4.0"
66
}

powersync-sqlite-core.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'powersync-sqlite-core'
3-
s.version = '0.3.14'
3+
s.version = '0.4.0'
44
s.summary = 'PowerSync SQLite Extension'
55
s.description = <<-DESC
66
PowerSync extension for SQLite.

tool/build_xcframework.sh

Lines changed: 2 additions & 2 deletions
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.14</string>
31+
<string>0.4.0</string>
3232
<key>CFBundleShortVersionString</key>
33-
<string>0.3.14</string>
33+
<string>0.4.0</string>
3434
</dict>
3535
</plist>
3636
EOF

0 commit comments

Comments
 (0)