@op-engineering/op-sqlite 15.2.5 → 15.2.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/op-sqlite.podspec CHANGED
@@ -77,10 +77,14 @@ if phone_version then
77
77
  end
78
78
 
79
79
  if use_sqlite_vec then
80
- raise "SQLite Vec is not supported with phone version. It cannot load extensions."
80
+ raise "sqlite-vec is not supported with phone version. It cannot load extensions."
81
81
  end
82
82
  end
83
83
 
84
+ if use_libsql and use_sqlite_vec then
85
+ raise "You cannot use sqlite-vec with libsql. libsql already has vector search included."
86
+ end
87
+
84
88
  Pod::Spec.new do |s|
85
89
  s.name = "op-sqlite"
86
90
  s.version = package["version"]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@op-engineering/op-sqlite",
3
- "version": "15.2.5",
3
+ "version": "15.2.6",
4
4
  "description": "Fastest SQLite for React Native (with node.js support)",
5
5
  "main": "./lib/module/index.js",
6
6
  "types": "./lib/typescript/src/index.d.ts",