diff --git a/packages/axidraw/CHANGELOG.md b/packages/axidraw/CHANGELOG.md index 0d96828c4a..649b2369d1 100644 --- a/packages/axidraw/CHANGELOG.md +++ b/packages/axidraw/CHANGELOG.md @@ -1,6 +1,6 @@ # Change Log -- **Last updated**: 2023-03-19T14:07:45Z +- **Last updated**: 2023-03-22T22:24:21Z - **Generator**: [thi.ng/monopub](https://thi.ng/monopub) All notable changes to this project will be documented in this file. @@ -9,6 +9,38 @@ 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.1.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/axidraw@1.1.0) (2023-03-22) + +#### 🚀 Features + +- add save/restore commands ([317f8e0](https://github.com/thi-ng/umbrella/commit/317f8e0)) + - add/update command types + - add SAVE/RESTORE to store/restore pen levels + - update AxiDraw.draw() to restore state after one-off pen config +- update DipOpts & dip() ([52d8924](https://github.com/thi-ng/umbrella/commit/52d8924)) + - rename `down` => `downDelay`, `up` => `upDelay` + - add `down`/`up` level opts + - update dip() impl to store/restore pen state if using custom + up/down levels for dipping +- add palette command seq gens ([0e453c1](https://github.com/thi-ng/umbrella/commit/0e453c1)) + - add linearPalette() & radialPalette() and config options + - update pkg export maps +- add global clipping bounds option ([a99a58e](https://github.com/thi-ng/umbrella/commit/a99a58e)) + - add AxiDrawOpts.clip +- add support for paper sizes, home offset ([c44510f](https://github.com/thi-ng/umbrella/commit/c44510f)) + - update AxiDrawOpts.bounds to accept paper sizes ([@thi.ng/units](https://github.com/thi-ng/umbrella/tree/main/packages/units) quantities) + - add AxiDrawOpts.home + - update AxiDraw ctor & move/sendMove methods + - add AxiDraw.setHome() + - update pkg deps + +#### ♻️ Refactoring + +- remove obsolete clamping ([50978ba](https://github.com/thi-ng/umbrella/commit/50978ba)) + - update linearPalette() +- update bounds handling/clamping ([7850ed6](https://github.com/thi-ng/umbrella/commit/7850ed6)) + - precalc scale factor & bounds in ctor + # [1.0.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/axidraw@1.0.0) (2023-03-19) #### 🛑 Breaking changes diff --git a/packages/axidraw/package.json b/packages/axidraw/package.json index 1ceffd069f..c69807a218 100644 --- a/packages/axidraw/package.json +++ b/packages/axidraw/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/axidraw", - "version": "1.0.0", + "version": "1.1.0", "description": "Minimal AxiDraw plotter/drawing machine controller for Node.js", "type": "module", "module": "./index.js", @@ -37,12 +37,12 @@ "@thi.ng/api": "^8.7.4", "@thi.ng/checks": "^3.3.10", "@thi.ng/compose": "^2.1.29", - "@thi.ng/date": "^2.4.8", + "@thi.ng/date": "^2.4.9", "@thi.ng/errors": "^2.2.13", "@thi.ng/logger": "^1.4.11", "@thi.ng/math": "^5.4.5", "@thi.ng/transducers": "^8.4.0", - "@thi.ng/units": "^0.3.1", + "@thi.ng/units": "^0.4.0", "@thi.ng/vectors": "^7.6.9", "serialport": "^10.5.0" }, diff --git a/packages/base-n/CHANGELOG.md b/packages/base-n/CHANGELOG.md index 20074d470d..9b8f101af1 100644 --- a/packages/base-n/CHANGELOG.md +++ b/packages/base-n/CHANGELOG.md @@ -1,6 +1,6 @@ # Change Log -- **Last updated**: 2023-03-17T08:24:43Z +- **Last updated**: 2023-03-22T22:24:21Z - **Generator**: [thi.ng/monopub](https://thi.ng/monopub) All notable changes to this project will be documented in this file. diff --git a/packages/base-n/package.json b/packages/base-n/package.json index 6e7ee2e7c8..4a24a2f35d 100644 --- a/packages/base-n/package.json +++ b/packages/base-n/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/base-n", - "version": "2.5.0", + "version": "2.5.1", "description": "Arbitrary base-n conversions w/ presets for base16/32/36/58/62/64/85, support for arrays & bigints", "type": "module", "module": "./index.js", diff --git a/packages/color-palettes/package.json b/packages/color-palettes/package.json index 9c648f4798..a0a7f6548b 100644 --- a/packages/color-palettes/package.json +++ b/packages/color-palettes/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/color-palettes", - "version": "1.0.10", + "version": "1.0.11", "description": "Collection of 200+ image based color themes & composable theme query filters", "type": "module", "module": "./index.js", @@ -37,7 +37,7 @@ }, "dependencies": { "@thi.ng/api": "^8.7.4", - "@thi.ng/base-n": "^2.5.0", + "@thi.ng/base-n": "^2.5.1", "@thi.ng/checks": "^3.3.10", "@thi.ng/color": "^5.4.5", "@thi.ng/errors": "^2.2.13", diff --git a/packages/date/CHANGELOG.md b/packages/date/CHANGELOG.md index 80907c4848..b6ecd8c30a 100644 --- a/packages/date/CHANGELOG.md +++ b/packages/date/CHANGELOG.md @@ -1,6 +1,6 @@ # Change Log -- **Last updated**: 2023-03-14T13:27:19Z +- **Last updated**: 2023-03-22T22:24:21Z - **Generator**: [thi.ng/monopub](https://thi.ng/monopub) All notable changes to this project will be documented in this file. diff --git a/packages/date/package.json b/packages/date/package.json index 503947c34b..5858a964cc 100644 --- a/packages/date/package.json +++ b/packages/date/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/date", - "version": "2.4.8", + "version": "2.4.9", "description": "Datetime types, relative dates, math, iterators, composable formatters, locales", "type": "module", "module": "./index.js", diff --git a/packages/fuzzy-viz/package.json b/packages/fuzzy-viz/package.json index e56bbd8f98..8ec5386f63 100644 --- a/packages/fuzzy-viz/package.json +++ b/packages/fuzzy-viz/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/fuzzy-viz", - "version": "2.1.59", + "version": "2.1.60", "description": "Visualization, instrumentation & introspection utils for @thi.ng/fuzzy", "type": "module", "module": "./index.js", @@ -40,7 +40,7 @@ "@thi.ng/hiccup-svg": "^4.3.39", "@thi.ng/math": "^5.4.5", "@thi.ng/strings": "^3.4.2", - "@thi.ng/text-canvas": "^2.4.37" + "@thi.ng/text-canvas": "^2.4.38" }, "devDependencies": { "@microsoft/api-extractor": "^7.34.4", diff --git a/packages/geom-axidraw/CHANGELOG.md b/packages/geom-axidraw/CHANGELOG.md index 99c41ea3cd..798f1589cc 100644 --- a/packages/geom-axidraw/CHANGELOG.md +++ b/packages/geom-axidraw/CHANGELOG.md @@ -1,6 +1,6 @@ # Change Log -- **Last updated**: 2023-03-19T14:07:45Z +- **Last updated**: 2023-03-22T22:24:21Z - **Generator**: [thi.ng/monopub](https://thi.ng/monopub) All notable changes to this project will be documented in this file. @@ -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. +## [0.5.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/geom-axidraw@0.5.0) (2023-03-22) + +#### 🚀 Features + +- add support for new draw commands ([e5e994c](https://github.com/thi-ng/umbrella/commit/e5e994c)) + - update asGeometry() to handle new move commands + ## [0.4.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/geom-axidraw@0.4.0) (2023-03-19) #### 🚀 Features diff --git a/packages/geom-axidraw/package.json b/packages/geom-axidraw/package.json index d5425db578..b8ea9a12fe 100644 --- a/packages/geom-axidraw/package.json +++ b/packages/geom-axidraw/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-axidraw", - "version": "0.4.0", + "version": "0.5.0", "description": "Conversion and preparation of thi.ng/geom shapes & shape groups to/from AxiDraw pen plotter draw commands", "type": "module", "module": "./index.js", @@ -36,10 +36,10 @@ "dependencies": { "@thi.ng/api": "^8.7.4", "@thi.ng/arrays": "^2.5.8", - "@thi.ng/axidraw": "^1.0.0", + "@thi.ng/axidraw": "^1.1.0", "@thi.ng/compare": "^2.1.27", "@thi.ng/defmulti": "^2.1.33", - "@thi.ng/geom": "^4.2.12", + "@thi.ng/geom": "^4.3.0", "@thi.ng/geom-accel": "^3.3.9", "@thi.ng/geom-api": "^3.4.10", "@thi.ng/geom-clip-line": "^2.3.10", diff --git a/packages/geom-fuzz/package.json b/packages/geom-fuzz/package.json index 3772c88cb3..d7ca906c9e 100644 --- a/packages/geom-fuzz/package.json +++ b/packages/geom-fuzz/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-fuzz", - "version": "2.2.14", + "version": "2.2.15", "description": "Highly configurable, fuzzy line & polygon creation with presets and composable fill & stroke styles. Canvas & SVG support", "type": "module", "module": "./index.js", @@ -37,7 +37,7 @@ "@thi.ng/api": "^8.7.4", "@thi.ng/associative": "^6.2.32", "@thi.ng/color": "^5.4.5", - "@thi.ng/geom": "^4.2.12", + "@thi.ng/geom": "^4.3.0", "@thi.ng/geom-api": "^3.4.10", "@thi.ng/geom-clip-line": "^2.3.10", "@thi.ng/geom-resample": "^2.2.10", diff --git a/packages/geom-sdf/package.json b/packages/geom-sdf/package.json index a053a77cb1..16b98fa3f7 100644 --- a/packages/geom-sdf/package.json +++ b/packages/geom-sdf/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-sdf", - "version": "0.2.42", + "version": "0.2.43", "description": "2D Signed Distance Field creation from @thi.ng/geom shapes, conversions, sampling, combinators", "type": "module", "module": "./index.js", @@ -38,7 +38,7 @@ "@thi.ng/checks": "^3.3.10", "@thi.ng/defmulti": "^2.1.33", "@thi.ng/errors": "^2.2.13", - "@thi.ng/geom": "^4.2.12", + "@thi.ng/geom": "^4.3.0", "@thi.ng/geom-api": "^3.4.10", "@thi.ng/geom-isoline": "^2.1.49", "@thi.ng/geom-poly-utils": "^2.3.36", diff --git a/packages/geom/CHANGELOG.md b/packages/geom/CHANGELOG.md index 6fa35519ab..a48970b22b 100644 --- a/packages/geom/CHANGELOG.md +++ b/packages/geom/CHANGELOG.md @@ -1,6 +1,6 @@ # Change Log -- **Last updated**: 2023-03-14T13:27:19Z +- **Last updated**: 2023-03-22T22:24:21Z - **Generator**: [thi.ng/monopub](https://thi.ng/monopub) All notable changes to this project will be documented in this file. @@ -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. +## [4.3.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/geom@4.3.0) (2023-03-22) + +#### 🚀 Features + +- add splitArclength() ([906a326](https://github.com/thi-ng/umbrella/commit/906a326)) +- add spiral() polyline factory fn ([572e0ef](https://github.com/thi-ng/umbrella/commit/572e0ef)) + ## [4.2.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/geom@4.2.0) (2023-01-10) #### 🚀 Features diff --git a/packages/geom/package.json b/packages/geom/package.json index 8c6bca4842..7fedd50de4 100644 --- a/packages/geom/package.json +++ b/packages/geom/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom", - "version": "4.2.12", + "version": "4.3.0", "description": "Functional, polymorphic API for 2D geometry types & SVG generation", "type": "module", "module": "./index.js", diff --git a/packages/hiccup-markdown/package.json b/packages/hiccup-markdown/package.json index 3cecee708d..a432c557bf 100644 --- a/packages/hiccup-markdown/package.json +++ b/packages/hiccup-markdown/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hiccup-markdown", - "version": "3.2.5", + "version": "3.2.6", "description": "Markdown parser & serializer from/to Hiccup format", "type": "module", "module": "./index.js", @@ -44,7 +44,7 @@ "@thi.ng/logger": "^1.4.11", "@thi.ng/parse": "^2.2.30", "@thi.ng/strings": "^3.4.2", - "@thi.ng/text-canvas": "^2.4.37" + "@thi.ng/text-canvas": "^2.4.38" }, "devDependencies": { "@microsoft/api-extractor": "^7.34.4", diff --git a/packages/imgui/package.json b/packages/imgui/package.json index 7330fdefc0..c402f01a5a 100644 --- a/packages/imgui/package.json +++ b/packages/imgui/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/imgui", - "version": "2.1.58", + "version": "2.1.59", "description": "Immediate mode GUI with flexible state handling & data only shape output", "type": "module", "module": "./index.js", @@ -36,7 +36,7 @@ "dependencies": { "@thi.ng/api": "^8.7.4", "@thi.ng/checks": "^3.3.10", - "@thi.ng/geom": "^4.2.12", + "@thi.ng/geom": "^4.3.0", "@thi.ng/geom-api": "^3.4.10", "@thi.ng/geom-isec": "^2.1.52", "@thi.ng/geom-tessellate": "^2.1.52", diff --git a/packages/ksuid/package.json b/packages/ksuid/package.json index 694262efa3..e71f0dc6ac 100644 --- a/packages/ksuid/package.json +++ b/packages/ksuid/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/ksuid", - "version": "3.1.6", + "version": "3.1.7", "description": "Configurable K-sortable unique IDs, ULIDs, binary & base-N encoded, 32/48/64bit time resolutions", "type": "module", "module": "./index.js", @@ -36,7 +36,7 @@ "test": "testament test" }, "dependencies": { - "@thi.ng/base-n": "^2.5.0", + "@thi.ng/base-n": "^2.5.1", "@thi.ng/errors": "^2.2.13", "@thi.ng/random": "^3.3.27", "@thi.ng/strings": "^3.4.2" diff --git a/packages/random-fxhash/package.json b/packages/random-fxhash/package.json index 25b841f05b..327a81aa1c 100644 --- a/packages/random-fxhash/package.json +++ b/packages/random-fxhash/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/random-fxhash", - "version": "0.2.29", + "version": "0.2.30", "description": "@thi.ng/random compatible wrapper & utilities for fxhash's PRNG", "type": "module", "module": "./index.js", @@ -35,7 +35,7 @@ }, "dependencies": { "@thi.ng/api": "^8.7.4", - "@thi.ng/base-n": "^2.5.0", + "@thi.ng/base-n": "^2.5.1", "@thi.ng/random": "^3.3.27" }, "devDependencies": { diff --git a/packages/tangle/package.json b/packages/tangle/package.json index 8e07fcf6de..964e77db1b 100644 --- a/packages/tangle/package.json +++ b/packages/tangle/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/tangle", - "version": "0.1.28", + "version": "0.1.29", "description": "Literate programming code block tangling / codegen utility, inspired by org-mode & noweb", "type": "module", "module": "./index.js", @@ -39,7 +39,7 @@ "@thi.ng/args": "^2.2.22", "@thi.ng/checks": "^3.3.10", "@thi.ng/compare": "^2.1.27", - "@thi.ng/date": "^2.4.8", + "@thi.ng/date": "^2.4.9", "@thi.ng/errors": "^2.2.13", "@thi.ng/file-io": "^0.5.6", "@thi.ng/logger": "^1.4.11", diff --git a/packages/text-canvas/package.json b/packages/text-canvas/package.json index a0cb6b4fb9..942db19466 100644 --- a/packages/text-canvas/package.json +++ b/packages/text-canvas/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/text-canvas", - "version": "2.4.37", + "version": "2.4.38", "description": "Text based canvas, drawing, tables with arbitrary formatting (incl. ANSI/HTML)", "type": "module", "module": "./index.js", @@ -41,7 +41,7 @@ "@thi.ng/geom-clip-line": "^2.3.10", "@thi.ng/math": "^5.4.5", "@thi.ng/strings": "^3.4.2", - "@thi.ng/text-format": "^1.4.0", + "@thi.ng/text-format": "^1.4.1", "@thi.ng/transducers": "^8.4.0" }, "devDependencies": { diff --git a/packages/text-format/CHANGELOG.md b/packages/text-format/CHANGELOG.md index 3f1f66ae2b..e63a320bcb 100644 --- a/packages/text-format/CHANGELOG.md +++ b/packages/text-format/CHANGELOG.md @@ -1,6 +1,6 @@ # Change Log -- **Last updated**: 2023-03-17T08:24:43Z +- **Last updated**: 2023-03-22T22:24:21Z - **Generator**: [thi.ng/monopub](https://thi.ng/monopub) All notable changes to this project will be documented in this file. diff --git a/packages/text-format/package.json b/packages/text-format/package.json index b45c2768ea..c7273b7af7 100644 --- a/packages/text-format/package.json +++ b/packages/text-format/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/text-format", - "version": "1.4.0", + "version": "1.4.1", "description": "Customizable color text formatting with presets for ANSI & HTML", "type": "module", "module": "./index.js", diff --git a/packages/units/CHANGELOG.md b/packages/units/CHANGELOG.md index 2d442a473d..76a7c0be94 100644 --- a/packages/units/CHANGELOG.md +++ b/packages/units/CHANGELOG.md @@ -1,6 +1,6 @@ # Change Log -- **Last updated**: 2023-03-16T11:22:27Z +- **Last updated**: 2023-03-22T22:24:21Z - **Generator**: [thi.ng/monopub](https://thi.ng/monopub) All notable changes to this project will be documented in this file. @@ -9,6 +9,15 @@ 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. +## [0.4.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/units@0.4.0) (2023-03-22) + +#### 🚀 Features + +- add US paper sizes/presets ([bc78668](https://github.com/thi-ng/umbrella/commit/bc78668)) + - rename file din-sizes.ts => paper-sizes.ts + - update pkg export maps +- add landscape presets (paper sizes) ([a96a714](https://github.com/thi-ng/umbrella/commit/a96a714)) + ## [0.3.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/units@0.3.0) (2023-03-16) #### 🚀 Features diff --git a/packages/units/package.json b/packages/units/package.json index b31d043190..723a49635f 100644 --- a/packages/units/package.json +++ b/packages/units/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/units", - "version": "0.3.1", + "version": "0.4.0", "description": "Extensible SI unit creation, conversions, quantities & calculations (incl. ~170 predefined units & constants)", "type": "module", "module": "./index.js", diff --git a/yarn.lock b/yarn.lock index e1d9c86e6a..64de300fae 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2620,7 +2620,7 @@ __metadata: languageName: unknown linkType: soft -"@thi.ng/axidraw@^1.0.0, @thi.ng/axidraw@workspace:packages/axidraw": +"@thi.ng/axidraw@^1.1.0, @thi.ng/axidraw@workspace:packages/axidraw": version: 0.0.0-use.local resolution: "@thi.ng/axidraw@workspace:packages/axidraw" dependencies: @@ -2628,13 +2628,13 @@ __metadata: "@thi.ng/api": ^8.7.4 "@thi.ng/checks": ^3.3.10 "@thi.ng/compose": ^2.1.29 - "@thi.ng/date": ^2.4.8 + "@thi.ng/date": ^2.4.9 "@thi.ng/errors": ^2.2.13 "@thi.ng/logger": ^1.4.11 "@thi.ng/math": ^5.4.5 "@thi.ng/testament": ^0.3.13 "@thi.ng/transducers": ^8.4.0 - "@thi.ng/units": ^0.3.1 + "@thi.ng/units": ^0.4.0 "@thi.ng/vectors": ^7.6.9 rimraf: ^4.4.0 serialport: ^10.5.0 @@ -2644,7 +2644,7 @@ __metadata: languageName: unknown linkType: soft -"@thi.ng/base-n@^2.5.0, @thi.ng/base-n@workspace:packages/base-n": +"@thi.ng/base-n@^2.5.1, @thi.ng/base-n@workspace:packages/base-n": version: 0.0.0-use.local resolution: "@thi.ng/base-n@workspace:packages/base-n" dependencies: @@ -2792,7 +2792,7 @@ __metadata: dependencies: "@microsoft/api-extractor": ^7.34.4 "@thi.ng/api": ^8.7.4 - "@thi.ng/base-n": ^2.5.0 + "@thi.ng/base-n": ^2.5.1 "@thi.ng/checks": ^3.3.10 "@thi.ng/color": ^5.4.5 "@thi.ng/errors": ^2.2.13 @@ -2934,7 +2934,7 @@ __metadata: languageName: unknown linkType: soft -"@thi.ng/date@^2.4.8, @thi.ng/date@workspace:^, @thi.ng/date@workspace:packages/date": +"@thi.ng/date@^2.4.8, @thi.ng/date@^2.4.9, @thi.ng/date@workspace:^, @thi.ng/date@workspace:packages/date": version: 0.0.0-use.local resolution: "@thi.ng/date@workspace:packages/date" dependencies: @@ -3331,7 +3331,7 @@ __metadata: "@thi.ng/math": ^5.4.5 "@thi.ng/strings": ^3.4.2 "@thi.ng/testament": ^0.3.13 - "@thi.ng/text-canvas": ^2.4.37 + "@thi.ng/text-canvas": ^2.4.38 rimraf: ^4.4.0 tools: "workspace:^" typedoc: ^0.23.26 @@ -3419,10 +3419,10 @@ __metadata: "@microsoft/api-extractor": ^7.34.4 "@thi.ng/api": ^8.7.4 "@thi.ng/arrays": ^2.5.8 - "@thi.ng/axidraw": ^1.0.0 + "@thi.ng/axidraw": ^1.1.0 "@thi.ng/compare": ^2.1.27 "@thi.ng/defmulti": ^2.1.33 - "@thi.ng/geom": ^4.2.12 + "@thi.ng/geom": ^4.3.0 "@thi.ng/geom-accel": ^3.3.9 "@thi.ng/geom-api": ^3.4.10 "@thi.ng/geom-clip-line": ^2.3.10 @@ -3494,7 +3494,7 @@ __metadata: "@thi.ng/api": ^8.7.4 "@thi.ng/associative": ^6.2.32 "@thi.ng/color": ^5.4.5 - "@thi.ng/geom": ^4.2.12 + "@thi.ng/geom": ^4.3.0 "@thi.ng/geom-api": ^3.4.10 "@thi.ng/geom-clip-line": ^2.3.10 "@thi.ng/geom-resample": ^2.2.10 @@ -3620,7 +3620,7 @@ __metadata: "@thi.ng/checks": ^3.3.10 "@thi.ng/defmulti": ^2.1.33 "@thi.ng/errors": ^2.2.13 - "@thi.ng/geom": ^4.2.12 + "@thi.ng/geom": ^4.3.0 "@thi.ng/geom-api": ^3.4.10 "@thi.ng/geom-isoline": ^2.1.49 "@thi.ng/geom-poly-utils": ^2.3.36 @@ -3734,7 +3734,7 @@ __metadata: languageName: unknown linkType: soft -"@thi.ng/geom@^4.2.12, @thi.ng/geom@workspace:^, @thi.ng/geom@workspace:packages/geom": +"@thi.ng/geom@^4.3.0, @thi.ng/geom@workspace:^, @thi.ng/geom@workspace:packages/geom": version: 0.0.0-use.local resolution: "@thi.ng/geom@workspace:packages/geom" dependencies: @@ -4019,7 +4019,7 @@ __metadata: "@thi.ng/parse": ^2.2.30 "@thi.ng/strings": ^3.4.2 "@thi.ng/testament": ^0.3.13 - "@thi.ng/text-canvas": ^2.4.37 + "@thi.ng/text-canvas": ^2.4.38 rimraf: ^4.4.0 tools: "workspace:^" typedoc: ^0.23.26 @@ -4103,7 +4103,7 @@ __metadata: "@microsoft/api-extractor": ^7.34.4 "@thi.ng/api": ^8.7.4 "@thi.ng/checks": ^3.3.10 - "@thi.ng/geom": ^4.2.12 + "@thi.ng/geom": ^4.3.0 "@thi.ng/geom-api": ^3.4.10 "@thi.ng/geom-isec": ^2.1.52 "@thi.ng/geom-tessellate": ^2.1.52 @@ -4194,7 +4194,7 @@ __metadata: resolution: "@thi.ng/ksuid@workspace:packages/ksuid" dependencies: "@microsoft/api-extractor": ^7.34.4 - "@thi.ng/base-n": ^2.5.0 + "@thi.ng/base-n": ^2.5.1 "@thi.ng/errors": ^2.2.13 "@thi.ng/random": ^3.3.27 "@thi.ng/strings": ^3.4.2 @@ -4641,7 +4641,7 @@ __metadata: dependencies: "@microsoft/api-extractor": ^7.34.4 "@thi.ng/api": ^8.7.4 - "@thi.ng/base-n": ^2.5.0 + "@thi.ng/base-n": ^2.5.1 "@thi.ng/random": ^3.3.27 "@thi.ng/testament": ^0.3.13 rimraf: ^4.4.0 @@ -5212,7 +5212,7 @@ __metadata: "@thi.ng/args": ^2.2.22 "@thi.ng/checks": ^3.3.10 "@thi.ng/compare": ^2.1.27 - "@thi.ng/date": ^2.4.8 + "@thi.ng/date": ^2.4.9 "@thi.ng/errors": ^2.2.13 "@thi.ng/file-io": ^0.5.6 "@thi.ng/logger": ^1.4.11 @@ -5244,7 +5244,7 @@ __metadata: languageName: unknown linkType: soft -"@thi.ng/text-canvas@^2.4.34, @thi.ng/text-canvas@^2.4.37, @thi.ng/text-canvas@workspace:^, @thi.ng/text-canvas@workspace:packages/text-canvas": +"@thi.ng/text-canvas@^2.4.34, @thi.ng/text-canvas@^2.4.38, @thi.ng/text-canvas@workspace:^, @thi.ng/text-canvas@workspace:packages/text-canvas": version: 0.0.0-use.local resolution: "@thi.ng/text-canvas@workspace:packages/text-canvas" dependencies: @@ -5257,7 +5257,7 @@ __metadata: "@thi.ng/math": ^5.4.5 "@thi.ng/strings": ^3.4.2 "@thi.ng/testament": ^0.3.13 - "@thi.ng/text-format": ^1.4.0 + "@thi.ng/text-format": ^1.4.1 "@thi.ng/transducers": ^8.4.0 rimraf: ^4.4.0 tools: "workspace:^" @@ -5267,7 +5267,7 @@ __metadata: languageName: unknown linkType: soft -"@thi.ng/text-format@^1.4.0, @thi.ng/text-format@workspace:^, @thi.ng/text-format@workspace:packages/text-format": +"@thi.ng/text-format@^1.4.1, @thi.ng/text-format@workspace:^, @thi.ng/text-format@workspace:packages/text-format": version: 0.0.0-use.local resolution: "@thi.ng/text-format@workspace:packages/text-format" dependencies: @@ -5421,7 +5421,7 @@ __metadata: languageName: unknown linkType: soft -"@thi.ng/units@^0.3.1, @thi.ng/units@workspace:packages/units": +"@thi.ng/units@^0.4.0, @thi.ng/units@workspace:packages/units": version: 0.0.0-use.local resolution: "@thi.ng/units@workspace:packages/units" dependencies: