File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -304,6 +304,10 @@ jobs:
304304 git checkout ${{ github.sha }}
305305 cd ../..
306306 git add modules/sqlite-vector
307+ PKG=sqlite-wasm/package.json
308+ TMP=sqlite-wasm/package.tmp.json
309+ 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"
310+ git add "$PKG"
307311 git commit -m "Bump sqlite-vector version to ${{ steps.tag.outputs.version }}"
308312 git push origin main
309313
Original file line number Diff line number Diff line change 2424extern "C" {
2525#endif
2626
27- #define SQLITE_VECTOR_VERSION "0.9.38 "
27+ #define SQLITE_VECTOR_VERSION "0.9.39 "
2828
2929SQLITE_VECTOR_API int sqlite3_vector_init (sqlite3 * db , char * * pzErrMsg , const sqlite3_api_routines * pApi );
3030
You can’t perform that action at this time.
0 commit comments