@thi.ng/distance 3.0.1 → 3.0.3

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +1 -1
  2. package/README.md +1 -1
  3. package/package.json +10 -10
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2025-06-14T20:56:27Z
3
+ - **Last updated**: 2025-07-10T14:20:23Z
4
4
  - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
5
 
6
6
  All notable changes to this project will be documented in this file.
package/README.md CHANGED
@@ -111,7 +111,7 @@ package.
111
111
  ## Related packages
112
112
 
113
113
  - [@thi.ng/geom-accel](https://github.com/thi-ng/umbrella/tree/develop/packages/geom-accel) - n-D spatial indexing data structures with a shared ES6 Map/Set-like API
114
- - [@thi.ng/k-means](https://github.com/thi-ng/umbrella/tree/develop/packages/k-means) - Configurable k-means & k-medians (with k-means++ initialization) for n-D vectors
114
+ - [@thi.ng/k-means](https://github.com/thi-ng/umbrella/tree/develop/packages/k-means) - k-means & k-medians with customizable distance functions and centroid initializations for n-D vectors
115
115
  - [@thi.ng/vectors](https://github.com/thi-ng/umbrella/tree/develop/packages/vectors) - Optimized 2d/3d/4d and arbitrary length vector operations, support for memory mapping/layouts
116
116
 
117
117
  ## Installation
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/distance",
3
- "version": "3.0.1",
3
+ "version": "3.0.3",
4
4
  "description": "N-dimensional distance metrics & K-nearest neighborhoods for point queries",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -39,16 +39,16 @@
39
39
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
40
40
  },
41
41
  "dependencies": {
42
- "@thi.ng/api": "^8.11.29",
43
- "@thi.ng/checks": "^3.7.9",
44
- "@thi.ng/errors": "^2.5.35",
45
- "@thi.ng/heaps": "^2.1.101",
46
- "@thi.ng/math": "^5.11.29",
47
- "@thi.ng/vectors": "^8.3.1"
42
+ "@thi.ng/api": "^8.11.30",
43
+ "@thi.ng/checks": "^3.7.10",
44
+ "@thi.ng/errors": "^2.5.36",
45
+ "@thi.ng/heaps": "^2.1.102",
46
+ "@thi.ng/math": "^5.11.30",
47
+ "@thi.ng/vectors": "^8.3.2"
48
48
  },
49
49
  "devDependencies": {
50
- "esbuild": "^0.25.5",
51
- "typedoc": "^0.28.5",
50
+ "esbuild": "^0.25.6",
51
+ "typedoc": "^0.28.7",
52
52
  "typescript": "^5.8.3"
53
53
  },
54
54
  "keywords": [
@@ -128,5 +128,5 @@
128
128
  ],
129
129
  "year": 2021
130
130
  },
131
- "gitHead": "b076434a497b291ad33e81b1a15f6a71e2c82cc2\n"
131
+ "gitHead": "56d8f088389b22192a06e9a395b5eecebf47697a\n"
132
132
  }