Skip to content

Commit 72890a1

Browse files
committed
fix(workflow): missing bump sqlite-wasm version in package.json
1 parent f167659 commit 72890a1

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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

src/sqlite-vector.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
extern "C" {
2525
#endif
2626

27-
#define SQLITE_VECTOR_VERSION "0.9.38"
27+
#define SQLITE_VECTOR_VERSION "0.9.39"
2828

2929
SQLITE_VECTOR_API int sqlite3_vector_init (sqlite3 *db, char **pzErrMsg, const sqlite3_api_routines *pApi);
3030

0 commit comments

Comments
 (0)