@thi.ng/api 8.4.3 → 8.4.5

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/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2022-10-03T16:07:55Z
3
+ - **Last updated**: 2022-11-01T12:32:51Z
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.
@@ -9,6 +9,12 @@ See [Conventional Commits](https://conventionalcommits.org/) for commit guidelin
9
9
  **Note:** Unlisted _patch_ versions only involve non-code or otherwise excluded changes
10
10
  and/or version bumps of transitive dependencies.
11
11
 
12
+ ### [8.4.5](https://github.com/thi-ng/umbrella/tree/@thi.ng/api@8.4.5) (2022-11-01)
13
+
14
+ #### 🩹 Bug fixes
15
+
16
+ - off-by-one error for BIT_SHIFTS LUT (f64) ([dae2279](https://github.com/thi-ng/umbrella/commit/dae2279))
17
+
12
18
  ## [8.4.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/api@8.4.0) (2022-08-15)
13
19
 
14
20
  #### 🚀 Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/api",
3
- "version": "8.4.3",
3
+ "version": "8.4.5",
4
4
  "description": "Common, generic types, interfaces & mixins",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -34,12 +34,12 @@
34
34
  "test": "testament test"
35
35
  },
36
36
  "devDependencies": {
37
- "@microsoft/api-extractor": "^7.31.1",
38
- "@thi.ng/testament": "^0.3.1",
37
+ "@microsoft/api-extractor": "^7.33.5",
38
+ "@thi.ng/testament": "^0.3.4",
39
39
  "rimraf": "^3.0.2",
40
40
  "tools": "^0.0.1",
41
- "typedoc": "^0.22.17",
42
- "typescript": "^4.8.3"
41
+ "typedoc": "^0.23.18",
42
+ "typescript": "^4.8.4"
43
43
  },
44
44
  "keywords": [
45
45
  "assert",
@@ -222,5 +222,5 @@
222
222
  "default": "./watch.js"
223
223
  }
224
224
  },
225
- "gitHead": "8600007d81a7dc92634a1d54e2c32b14ab30ba80\n"
225
+ "gitHead": "a4b60163a8caddceed5ec1b6b3584d164f61e7b6\n"
226
226
  }
package/typedarray.js CHANGED
@@ -78,7 +78,7 @@ export const BIT_SHIFTS = {
78
78
  i64: 3,
79
79
  u64: 3,
80
80
  f32: 2,
81
- f64: 2,
81
+ f64: 3,
82
82
  };
83
83
  export const FLOAT_ARRAY_CTORS = {
84
84
  f32: Float32Array,