Skip to content

Commit 62337d8

Browse files
committed
fix(workflow): missing bump sqlite-wasm version in package.json and update release notes for WASM builds
1 parent d58bfc2 commit 62337d8

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

.github/workflows/main.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -323,6 +323,10 @@ jobs:
323323
git checkout ${{ github.sha }}
324324
cd ../..
325325
git add modules/sqlite-sync
326+
PKG=sqlite-wasm/package.json
327+
TMP=sqlite-wasm/package.tmp.json
328+
jq --arg version "$(cat modules/sqlite/VERSION)-sync.$(cd modules/sqlite-sync && make version)-vector.$(cd modules/sqlite-vector && make version)" '.version = $version' "$PKG" > "$TMP" && mv "$TMP" "$PKG"
329+
git add "$PKG"
326330
git commit -m "Bump sqlite-sync version to ${{ steps.tag.outputs.version }}"
327331
git push origin main
328332
@@ -339,6 +343,10 @@ jobs:
339343
- uses: softprops/[email protected]
340344
if: steps.tag.outputs.version != ''
341345
with:
346+
body: |
347+
# WASM Releases
348+
**WASM repository**: [sqlite-wasm](https://github.com/sqliteai/sqlite-wasm)
349+
**WASM package** is available on npm: [@sqliteai/sqlite-wasm](https://www.npmjs.com/package/@sqliteai/sqlite-wasm)
342350
generate_release_notes: true
343351
tag_name: ${{ steps.tag.outputs.version }}
344352
files: |

src/cloudsync.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
extern "C" {
2121
#endif
2222

23-
#define CLOUDSYNC_VERSION "0.8.51"
23+
#define CLOUDSYNC_VERSION "0.8.52"
2424

2525
int sqlite3_cloudsync_init (sqlite3 *db, char **pzErrMsg, const sqlite3_api_routines *pApi);
2626

0 commit comments

Comments
 (0)