@thi.ng/adjacency 2.5.0 → 2.5.1

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 +4 -0
  3. package/package.json +13 -13
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2023-10-19T09:52:45Z
3
+ - **Last updated**: 2023-10-23T07:37:37Z
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
@@ -177,6 +177,10 @@ graph.addEdge(4, 5);
177
177
  graph.removeEdge(0, 1);
178
178
  ```
179
179
 
180
+ GraphViz visualization of the above example graph:
181
+
182
+ ![example graph](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/adjacency/readme.png)
183
+
180
184
  ## Authors
181
185
 
182
186
  - [Karsten Schmidt](https://thi.ng) (Main author)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/adjacency",
3
- "version": "2.5.0",
3
+ "version": "2.5.1",
4
4
  "description": "Sparse & bitwise adjacency matrices, lists and selected traversal algorithms for directed & undirected graphs",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -37,20 +37,20 @@
37
37
  "test": "testament test"
38
38
  },
39
39
  "dependencies": {
40
- "@thi.ng/api": "^8.9.5",
41
- "@thi.ng/arrays": "^2.6.3",
42
- "@thi.ng/bitfield": "^2.3.0",
43
- "@thi.ng/dcons": "^3.2.64",
44
- "@thi.ng/errors": "^2.3.5",
45
- "@thi.ng/sparse": "^0.3.69"
40
+ "@thi.ng/api": "^8.9.6",
41
+ "@thi.ng/arrays": "^2.6.4",
42
+ "@thi.ng/bitfield": "^2.3.1",
43
+ "@thi.ng/dcons": "^3.2.65",
44
+ "@thi.ng/errors": "^2.3.6",
45
+ "@thi.ng/sparse": "^0.3.70"
46
46
  },
47
47
  "devDependencies": {
48
- "@microsoft/api-extractor": "^7.36.4",
49
- "@thi.ng/testament": "^0.3.23",
50
- "@thi.ng/vectors": "^7.7.19",
51
- "rimraf": "^5.0.1",
48
+ "@microsoft/api-extractor": "^7.38.0",
49
+ "@thi.ng/testament": "^0.3.24",
50
+ "@thi.ng/vectors": "^7.7.20",
51
+ "rimraf": "^5.0.5",
52
52
  "tools": "^0.0.1",
53
- "typedoc": "^0.25.0",
53
+ "typedoc": "^0.25.2",
54
54
  "typescript": "^5.2.2"
55
55
  },
56
56
  "keywords": [
@@ -125,5 +125,5 @@
125
125
  ],
126
126
  "year": 2018
127
127
  },
128
- "gitHead": "7377b4b99095076ffc857b4b320902816ea6ae34\n"
128
+ "gitHead": "8d46d9326a9f9b81d65e7e274446f5964f9942ac\n"
129
129
  }