@thi.ng/distance 2.2.9 → 2.2.10

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 +12 -12
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2023-03-14T13:27:19Z
3
+ - **Last updated**: 2023-03-27T19:05:48Z
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
@@ -100,7 +100,7 @@ package.
100
100
 
101
101
  - [@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
102
102
  - [@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
103
- - [@thi.ng/vectors](https://github.com/thi-ng/umbrella/tree/develop/packages/vectors) - Optimized 2d/3d/4d and arbitrary length vector operations
103
+ - [@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
104
104
 
105
105
  ## Installation
106
106
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/distance",
3
- "version": "2.2.9",
3
+ "version": "2.2.10",
4
4
  "description": "N-dimensional distance metrics & K-nearest neighborhoods for point queries",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -34,20 +34,20 @@
34
34
  "test": "testament test"
35
35
  },
36
36
  "dependencies": {
37
- "@thi.ng/api": "^8.7.4",
38
- "@thi.ng/checks": "^3.3.10",
39
- "@thi.ng/errors": "^2.2.13",
40
- "@thi.ng/heaps": "^2.1.28",
41
- "@thi.ng/math": "^5.4.5",
42
- "@thi.ng/vectors": "^7.6.9"
37
+ "@thi.ng/api": "^8.7.5",
38
+ "@thi.ng/checks": "^3.3.11",
39
+ "@thi.ng/errors": "^2.2.14",
40
+ "@thi.ng/heaps": "^2.1.29",
41
+ "@thi.ng/math": "^5.4.6",
42
+ "@thi.ng/vectors": "^7.6.10"
43
43
  },
44
44
  "devDependencies": {
45
45
  "@microsoft/api-extractor": "^7.34.4",
46
- "@thi.ng/testament": "^0.3.13",
47
- "rimraf": "^4.4.0",
46
+ "@thi.ng/testament": "^0.3.14",
47
+ "rimraf": "^4.4.1",
48
48
  "tools": "^0.0.1",
49
- "typedoc": "^0.23.26",
50
- "typescript": "^4.9.5"
49
+ "typedoc": "^0.23.28",
50
+ "typescript": "^5.0.2"
51
51
  },
52
52
  "keywords": [
53
53
  "distance",
@@ -109,5 +109,5 @@
109
109
  ],
110
110
  "year": 2021
111
111
  },
112
- "gitHead": "1359645f3af8a7d0d43fe7944ea5cd865832f8ee\n"
112
+ "gitHead": "83b15b34326d480cbca0472b20390d4d3bbb792a\n"
113
113
  }