Skip to content

Commit

Permalink
Publish
Browse files Browse the repository at this point in the history
  • Loading branch information
postspectacular committed Feb 17, 2023
1 parent 36b9956 commit 7896250
Show file tree
Hide file tree
Showing 133 changed files with 828 additions and 787 deletions.
10 changes: 5 additions & 5 deletions packages/adjacency/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@thi.ng/adjacency",
"version": "2.3.5",
"version": "2.3.6",
"description": "Sparse & bitwise adjacency matrices, lists and selected traversal algorithms for directed & undirected graphs",
"type": "module",
"module": "./index.js",
Expand Down Expand Up @@ -35,16 +35,16 @@
},
"dependencies": {
"@thi.ng/api": "^8.7.2",
"@thi.ng/arrays": "^2.5.4",
"@thi.ng/arrays": "^2.5.5",
"@thi.ng/bitfield": "^2.2.21",
"@thi.ng/dcons": "^3.2.33",
"@thi.ng/dcons": "^3.2.34",
"@thi.ng/errors": "^2.2.11",
"@thi.ng/sparse": "^0.3.38"
"@thi.ng/sparse": "^0.3.39"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.34.2",
"@thi.ng/testament": "^0.3.11",
"@thi.ng/vectors": "^7.6.2",
"@thi.ng/vectors": "^7.6.3",
"rimraf": "^4.1.2",
"tools": "workspace:^",
"typedoc": "^0.23.24",
Expand Down
4 changes: 2 additions & 2 deletions packages/arrays/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@thi.ng/arrays",
"version": "2.5.4",
"version": "2.5.5",
"description": "Array / Arraylike utilities",
"type": "module",
"module": "./index.js",
Expand Down Expand Up @@ -39,7 +39,7 @@
"@thi.ng/compare": "^2.1.25",
"@thi.ng/equiv": "^2.1.19",
"@thi.ng/errors": "^2.2.11",
"@thi.ng/random": "^3.3.24"
"@thi.ng/random": "^3.3.25"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.34.2",
Expand Down
10 changes: 5 additions & 5 deletions packages/associative/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@thi.ng/associative",
"version": "6.2.26",
"version": "6.2.27",
"description": "Alternative Map and Set implementations with customizable equality semantics & supporting operations",
"type": "module",
"module": "./index.js",
Expand Down Expand Up @@ -35,15 +35,15 @@
},
"dependencies": {
"@thi.ng/api": "^8.7.2",
"@thi.ng/arrays": "^2.5.4",
"@thi.ng/arrays": "^2.5.5",
"@thi.ng/binary": "^3.3.19",
"@thi.ng/checks": "^3.3.9",
"@thi.ng/compare": "^2.1.25",
"@thi.ng/dcons": "^3.2.33",
"@thi.ng/dcons": "^3.2.34",
"@thi.ng/equiv": "^2.1.19",
"@thi.ng/errors": "^2.2.11",
"@thi.ng/random": "^3.3.24",
"@thi.ng/transducers": "^8.3.33",
"@thi.ng/random": "^3.3.25",
"@thi.ng/transducers": "^8.3.34",
"tslib": "^2.5.0"
},
"devDependencies": {
Expand Down
6 changes: 3 additions & 3 deletions packages/axidraw/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@thi.ng/axidraw",
"version": "0.5.2",
"version": "0.5.3",
"description": "Minimal AxiDraw plotter/drawing machine controller for Node.js",
"type": "module",
"module": "./index.js",
Expand Down Expand Up @@ -40,8 +40,8 @@
"@thi.ng/date": "^2.4.4",
"@thi.ng/errors": "^2.2.11",
"@thi.ng/logger": "^1.4.9",
"@thi.ng/transducers": "^8.3.33",
"@thi.ng/vectors": "^7.6.2",
"@thi.ng/transducers": "^8.3.34",
"@thi.ng/vectors": "^7.6.3",
"serialport": "^10.5.0"
},
"devDependencies": {
Expand Down
9 changes: 8 additions & 1 deletion packages/bench/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Change Log

- **Last updated**: 2023-02-10T14:03:10Z
- **Last updated**: 2023-02-17T20:06:13Z
- **Generator**: [thi.ng/monopub](https://thi.ng/monopub)

All notable changes to this project will be documented in this file.
Expand All @@ -9,6 +9,13 @@ See [Conventional Commits](https://conventionalcommits.org/) for commit guidelin
**Note:** Unlisted _patch_ versions only involve non-code or otherwise excluded changes
and/or version bumps of transitive dependencies.

### [3.2.3](https://github.com/thi-ng/umbrella/tree/@thi.ng/bench@3.2.3) (2023-02-17)

#### ♻️ Refactoring

- update timeDiff() ([37054e0](https://github.com/thi-ng/umbrella/commit/37054e0))
- default 2nd arg to current timestamp

## [3.2.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/bench@3.2.0) (2023-02-05)

#### 🚀 Features
Expand Down
2 changes: 1 addition & 1 deletion packages/bench/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@thi.ng/bench",
"version": "3.2.2",
"version": "3.2.3",
"description": "Benchmarking utilities w/ various statistics & formatters (CSV, Markdown etc.)",
"type": "module",
"module": "./index.js",
Expand Down
8 changes: 4 additions & 4 deletions packages/bencode/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@thi.ng/bencode",
"version": "2.1.40",
"version": "2.1.41",
"description": "Bencode binary encoder / decoder with optional UTF8 encoding & floating point support",
"type": "module",
"module": "./index.js",
Expand Down Expand Up @@ -34,12 +34,12 @@
"test": "testament test"
},
"dependencies": {
"@thi.ng/arrays": "^2.5.4",
"@thi.ng/arrays": "^2.5.5",
"@thi.ng/checks": "^3.3.9",
"@thi.ng/defmulti": "^2.1.30",
"@thi.ng/errors": "^2.2.11",
"@thi.ng/transducers": "^8.3.33",
"@thi.ng/transducers-binary": "^2.1.38"
"@thi.ng/transducers": "^8.3.34",
"@thi.ng/transducers-binary": "^2.1.39"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.34.2",
Expand Down
6 changes: 3 additions & 3 deletions packages/cache/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@thi.ng/cache",
"version": "2.1.38",
"version": "2.1.39",
"description": "In-memory cache implementations with ES6 Map-like API and different eviction strategies",
"type": "module",
"module": "./index.js",
Expand Down Expand Up @@ -35,8 +35,8 @@
},
"dependencies": {
"@thi.ng/api": "^8.7.2",
"@thi.ng/dcons": "^3.2.33",
"@thi.ng/transducers": "^8.3.33"
"@thi.ng/dcons": "^3.2.34",
"@thi.ng/transducers": "^8.3.34"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.34.2",
Expand Down
6 changes: 3 additions & 3 deletions packages/cellular/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@thi.ng/cellular",
"version": "0.2.30",
"version": "0.2.31",
"description": "Highly customizable 1D cellular automata, shared env, multiple rules, arbitrary sized/shaped neighborhoods, short term memory, cell states etc.",
"type": "module",
"module": "./index.js",
Expand Down Expand Up @@ -37,8 +37,8 @@
"@thi.ng/api": "^8.7.2",
"@thi.ng/checks": "^3.3.9",
"@thi.ng/errors": "^2.2.11",
"@thi.ng/random": "^3.3.24",
"@thi.ng/transducers": "^8.3.33"
"@thi.ng/random": "^3.3.25",
"@thi.ng/transducers": "^8.3.34"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.34.2",
Expand Down
8 changes: 7 additions & 1 deletion packages/color-palettes/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Change Log

- **Last updated**: 2023-02-10T14:03:10Z
- **Last updated**: 2023-02-17T20:06:13Z
- **Generator**: [thi.ng/monopub](https://thi.ng/monopub)

All notable changes to this project will be documented in this file.
Expand All @@ -9,6 +9,12 @@ See [Conventional Commits](https://conventionalcommits.org/) for commit guidelin
**Note:** Unlisted _patch_ versions only involve non-code or otherwise excluded changes
and/or version bumps of transitive dependencies.

### [1.0.2](https://github.com/thi-ng/umbrella/tree/@thi.ng/color-palettes@1.0.2) (2023-02-17)

#### ⏱ Performance improvements

- update compFilter() for single arg ([ea8dc86](https://github.com/thi-ng/umbrella/commit/ea8dc86))

# [1.0.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/color-palettes@1.0.0) (2023-02-10)

#### 🛑 Breaking changes
Expand Down
4 changes: 2 additions & 2 deletions packages/color-palettes/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@thi.ng/color-palettes",
"version": "1.0.1",
"version": "1.0.2",
"description": "Collection of 200+ image based color themes & composable theme query filters",
"type": "module",
"module": "./index.js",
Expand Down Expand Up @@ -39,7 +39,7 @@
"@thi.ng/api": "^8.7.2",
"@thi.ng/base-n": "^2.4.1",
"@thi.ng/checks": "^3.3.9",
"@thi.ng/color": "^5.3.1",
"@thi.ng/color": "^5.3.2",
"@thi.ng/errors": "^2.2.11",
"@thi.ng/hex": "^2.3.6"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/color/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Change Log

- **Last updated**: 2023-02-10T14:03:10Z
- **Last updated**: 2023-02-17T20:06:13Z
- **Generator**: [thi.ng/monopub](https://thi.ng/monopub)

All notable changes to this project will be documented in this file.
Expand Down
10 changes: 5 additions & 5 deletions packages/color/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@thi.ng/color",
"version": "5.3.1",
"version": "5.3.2",
"description": "Array-based color types, CSS parsing, conversions, transformations, declarative theme generation, gradients, presets",
"type": "module",
"module": "./index.js",
Expand Down Expand Up @@ -37,18 +37,18 @@
},
"dependencies": {
"@thi.ng/api": "^8.7.2",
"@thi.ng/arrays": "^2.5.4",
"@thi.ng/arrays": "^2.5.5",
"@thi.ng/binary": "^3.3.19",
"@thi.ng/checks": "^3.3.9",
"@thi.ng/compare": "^2.1.25",
"@thi.ng/compose": "^2.1.27",
"@thi.ng/defmulti": "^2.1.30",
"@thi.ng/errors": "^2.2.11",
"@thi.ng/math": "^5.4.3",
"@thi.ng/random": "^3.3.24",
"@thi.ng/random": "^3.3.25",
"@thi.ng/strings": "^3.3.26",
"@thi.ng/transducers": "^8.3.33",
"@thi.ng/vectors": "^7.6.2"
"@thi.ng/transducers": "^8.3.34",
"@thi.ng/vectors": "^7.6.3"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.34.2",
Expand Down
14 changes: 7 additions & 7 deletions packages/colored-noise/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@thi.ng/colored-noise",
"version": "1.0.9",
"version": "1.0.10",
"description": "Customizable O(1) ES6 generators for colored noise",
"type": "module",
"module": "./index.js",
Expand Down Expand Up @@ -35,17 +35,17 @@
},
"dependencies": {
"@thi.ng/binary": "^3.3.19",
"@thi.ng/random": "^3.3.24"
"@thi.ng/random": "^3.3.25"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.34.2",
"@thi.ng/api": "^8.7.2",
"@thi.ng/dsp": "^4.3.3",
"@thi.ng/dsp-io-wav": "^2.1.38",
"@thi.ng/dsp": "^4.3.4",
"@thi.ng/dsp-io-wav": "^2.1.39",
"@thi.ng/testament": "^0.3.11",
"@thi.ng/text-canvas": "^2.4.28",
"@thi.ng/transducers": "^8.3.33",
"@thi.ng/vectors": "^7.6.2",
"@thi.ng/text-canvas": "^2.4.29",
"@thi.ng/transducers": "^8.3.34",
"@thi.ng/vectors": "^7.6.3",
"rimraf": "^4.1.2",
"tools": "workspace:^",
"typedoc": "^0.23.24",
Expand Down
4 changes: 2 additions & 2 deletions packages/complex/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@thi.ng/complex",
"version": "0.1.33",
"version": "0.1.34",
"description": "Array-based complex number algebra",
"type": "module",
"module": "./index.js",
Expand Down Expand Up @@ -37,7 +37,7 @@
"@thi.ng/api": "^8.7.2",
"@thi.ng/checks": "^3.3.9",
"@thi.ng/math": "^5.4.3",
"@thi.ng/vectors": "^7.6.2"
"@thi.ng/vectors": "^7.6.3"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.34.2",
Expand Down
8 changes: 4 additions & 4 deletions packages/csp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@thi.ng/csp",
"version": "2.1.38",
"version": "2.1.39",
"description": "ES6 promise based CSP primitives & operations",
"type": "module",
"module": "./index.js",
Expand Down Expand Up @@ -39,11 +39,11 @@
},
"dependencies": {
"@thi.ng/api": "^8.7.2",
"@thi.ng/arrays": "^2.5.4",
"@thi.ng/arrays": "^2.5.5",
"@thi.ng/checks": "^3.3.9",
"@thi.ng/dcons": "^3.2.33",
"@thi.ng/dcons": "^3.2.34",
"@thi.ng/errors": "^2.2.11",
"@thi.ng/transducers": "^8.3.33"
"@thi.ng/transducers": "^8.3.34"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.34.2",
Expand Down
4 changes: 2 additions & 2 deletions packages/csv/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@thi.ng/csv",
"version": "2.3.2",
"version": "2.3.3",
"description": "Customizable, transducer-based CSV parser/object mapper and transformer",
"type": "module",
"module": "./index.js",
Expand Down Expand Up @@ -37,7 +37,7 @@
"@thi.ng/api": "^8.7.2",
"@thi.ng/checks": "^3.3.9",
"@thi.ng/strings": "^3.3.26",
"@thi.ng/transducers": "^8.3.33"
"@thi.ng/transducers": "^8.3.34"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.34.2",
Expand Down
6 changes: 3 additions & 3 deletions packages/dcons/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@thi.ng/dcons",
"version": "3.2.33",
"version": "3.2.34",
"description": "Double-linked lists with comprehensive set of operations (incl. optional self-organizing behaviors)",
"type": "module",
"module": "./index.js",
Expand Down Expand Up @@ -39,8 +39,8 @@
"@thi.ng/compare": "^2.1.25",
"@thi.ng/equiv": "^2.1.19",
"@thi.ng/errors": "^2.2.11",
"@thi.ng/random": "^3.3.24",
"@thi.ng/transducers": "^8.3.33"
"@thi.ng/random": "^3.3.25",
"@thi.ng/transducers": "^8.3.34"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.34.2",
Expand Down
4 changes: 2 additions & 2 deletions packages/dgraph-dot/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@thi.ng/dgraph-dot",
"version": "2.1.38",
"version": "2.1.39",
"description": "Customizable Graphviz DOT serialization for @thi.ng/dgraph",
"type": "module",
"module": "./index.js",
Expand Down Expand Up @@ -35,7 +35,7 @@
},
"dependencies": {
"@thi.ng/api": "^8.7.2",
"@thi.ng/dgraph": "^2.1.38",
"@thi.ng/dgraph": "^2.1.39",
"@thi.ng/dot": "^2.1.29"
},
"devDependencies": {
Expand Down
Loading

0 comments on commit 7896250

Please sign in to comment.