@thi.ng/bench 3.5.13 → 3.6.0

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**: 2024-07-22T13:15:57Z
3
+ - **Last updated**: 2024-08-10T15:03:07Z
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,14 @@ 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
+ ## [3.6.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/bench@3.6.0) (2024-08-10)
13
+
14
+ #### 🚀 Features
15
+
16
+ - add poisson-image example ([87ec9e7](https://github.com/thi-ng/umbrella/commit/87ec9e7))
17
+ - update readmes
18
+ - cc @nkint :)
19
+
12
20
  ### [3.5.7](https://github.com/thi-ng/umbrella/tree/@thi.ng/bench@3.5.7) (2024-06-21)
13
21
 
14
22
  #### ♻️ Refactoring
package/README.md CHANGED
@@ -94,7 +94,7 @@ Note: @thi.ng/api is in _most_ cases a type-only import (not used at runtime)
94
94
 
95
95
  ## Usage examples
96
96
 
97
- Nine projects in this repo's
97
+ 10 projects in this repo's
98
98
  [/examples](https://github.com/thi-ng/umbrella/tree/develop/examples)
99
99
  directory are using this package:
100
100
 
@@ -107,6 +107,7 @@ directory are using this package:
107
107
  | <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/markdown-parser.jpg" width="240"/> | Markdown to Hiccup to HTML parser / transformer | [Demo](https://demo.thi.ng/umbrella/markdown/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/markdown) |
108
108
  | <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/parse-playground.png" width="240"/> | Parser grammar livecoding editor/playground & codegen | [Demo](https://demo.thi.ng/umbrella/parse-playground/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/parse-playground) |
109
109
  | <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/pixel-sorting.png" width="240"/> | Interactive pixel sorting tool using thi.ng/color & thi.ng/pixel | [Demo](https://demo.thi.ng/umbrella/pixel-sorting/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/pixel-sorting) |
110
+ | <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/poisson-image.avif" width="240"/> | Image-based Poisson-disk sampling | [Demo](https://demo.thi.ng/umbrella/poisson-image/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/poisson-image) |
110
111
  | | Full umbrella repo doc string search w/ paginated results | [Demo](https://demo.thi.ng/umbrella/rdom-search-docs/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/rdom-search-docs) |
111
112
  | <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/shader-ast-workers.jpg" width="240"/> | Fork-join worker-based raymarch renderer (JS/CPU only) | [Demo](https://demo.thi.ng/umbrella/shader-ast-workers/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/shader-ast-workers) |
112
113
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/bench",
3
- "version": "3.5.13",
3
+ "version": "3.6.0",
4
4
  "description": "Benchmarking & profiling utilities w/ various statistics & formatters (CSV, JSON, Markdown etc.)",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -36,15 +36,15 @@
36
36
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
37
37
  },
38
38
  "dependencies": {
39
- "@thi.ng/api": "^8.11.7"
39
+ "@thi.ng/api": "^8.11.8"
40
40
  },
41
41
  "devDependencies": {
42
- "@microsoft/api-extractor": "^7.47.0",
43
- "@types/node": "^20.14.10",
42
+ "@microsoft/api-extractor": "^7.47.5",
43
+ "@types/node": "^20.14.15",
44
44
  "esbuild": "^0.23.0",
45
45
  "tools": "^0.0.1",
46
- "typedoc": "^0.26.3",
47
- "typescript": "^5.5.3"
46
+ "typedoc": "^0.26.5",
47
+ "typescript": "^5.5.4"
48
48
  },
49
49
  "keywords": [
50
50
  "benchmark",
@@ -118,5 +118,5 @@
118
118
  ],
119
119
  "year": 2018
120
120
  },
121
- "gitHead": "324d6b7dbf31558329e9fb6452e29b2f7db9c61a\n"
121
+ "gitHead": "ec78f98d015e4d214a0b840e72e497407807daf3\n"
122
122
  }