Skip to content

Commit 83746bc

Browse files
committed
Bump version to 0.9.81
1 parent 57d0d87 commit 83746bc

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -429,10 +429,10 @@ jobs:
429429
# Update version
430430
sed -i "s/^version: .*/version: $VERSION/" $FLUTTER_DIR/pubspec.yaml
431431
432-
# Publish (commented out until pub.dev OIDC is configured)
433-
# cd $FLUTTER_DIR
434-
# dart pub publish --dry-run
435-
# dart pub publish --force
432+
# Publish to pub.dev
433+
cd $FLUTTER_DIR
434+
dart pub publish --dry-run
435+
dart pub publish --force
436436
437437
- uses: softprops/action-gh-release@v2.2.1
438438
if: steps.tag.outputs.version != ''

packages/flutter/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 0.9.70
1+
## 0.9.81
22

33
- Initial release.
44
- Bundles pre-built sqlite-vector binaries for Android, iOS, macOS, Linux, and Windows.

packages/flutter/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: sqlite_vector
2-
version: 0.9.70
2+
version: 0.9.81
33
description: >
44
SQLite Vector extension for Flutter/Dart. Provides vector search with
55
SIMD-optimized distance functions (L2, cosine, dot product) for

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.80"
27+
#define SQLITE_VECTOR_VERSION "0.9.81"
2828

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

0 commit comments

Comments
 (0)