logosdb 0.7.11 → 0.7.12
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.
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
#define LOGOSDB_VERSION_MAJOR 0
|
|
8
8
|
#define LOGOSDB_VERSION_MINOR 7
|
|
9
9
|
#define LOGOSDB_VERSION_PATCH 8
|
|
10
|
-
#define LOGOSDB_VERSION_STRING "0.7.
|
|
10
|
+
#define LOGOSDB_VERSION_STRING "0.7.12"
|
|
11
11
|
|
|
12
12
|
/* Distance metrics for vector similarity search */
|
|
13
13
|
#define LOGOSDB_DIST_IP 0 /* Inner product (default, requires L2-normalized vectors) */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "logosdb",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.12",
|
|
4
4
|
"description": "Fast semantic vector database (HNSW + mmap) - Node.js bindings",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "types/index.d.ts",
|
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
"scripts": {
|
|
12
12
|
"vendor-core": "node ./scripts/vendor-core.mjs",
|
|
13
13
|
"prepublishOnly": "node ./scripts/vendor-core.mjs",
|
|
14
|
-
"install": "prebuild-install --runtime napi --target 8 || node-gyp rebuild",
|
|
15
|
-
"build": "node-gyp rebuild",
|
|
14
|
+
"install": "prebuild-install --runtime napi --target 8 || node-gyp rebuild -j 1",
|
|
15
|
+
"build": "node-gyp rebuild -j 1",
|
|
16
16
|
"test": "mocha test/test.js",
|
|
17
17
|
"native:prebuild": "prebuild --runtime napi --all --strip",
|
|
18
18
|
"native:prebuild-upload": "prebuild --runtime napi --all --strip --upload-all"
|