File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed
Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff 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 : |
Original file line number Diff line number Diff line change 2020extern "C" {
2121#endif
2222
23- #define CLOUDSYNC_VERSION "0.8.51 "
23+ #define CLOUDSYNC_VERSION "0.8.52 "
2424
2525int sqlite3_cloudsync_init (sqlite3 * db , char * * pzErrMsg , const sqlite3_api_routines * pApi );
2626
You can’t perform that action at this time.
0 commit comments