From fa8fdda12973d695225449940a34d1346ad5cec3 Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Wed, 18 Aug 2021 09:44:44 +0200 Subject: [PATCH 01/76] fix(tools): fix check-exports tool --- tools/src/check-exports.ts | 25 +++++++++++++++---------- 1 file changed, 15 insertions(+), 10 deletions(-) diff --git a/tools/src/check-exports.ts b/tools/src/check-exports.ts index 4eda5ffd58..2890a01e68 100644 --- a/tools/src/check-exports.ts +++ b/tools/src/check-exports.ts @@ -1,4 +1,5 @@ -import { readdirSync, statSync, writeFileSync } from "fs"; +import { equivSet } from "@thi.ng/equiv"; +import { existsSync, readdirSync, statSync, writeFileSync } from "fs"; import { readJSON } from "./io"; const subdirs = (root: string) => { @@ -11,17 +12,21 @@ const subdirs = (root: string) => { }; const processPackage = (id: string) => { - const pkgPath = `packages/${id}/package.json`; + const pkkRoot = `packages/${id}`; + const pkgPath = `${pkkRoot}/package.json`; console.log("checking", pkgPath); const pkg = readJSON(pkgPath); - const srcDirs = subdirs(`packages/${id}/src`); - const newFiles = ["*.js", "*.d.ts", "lib", ...srcDirs.sort()]; - const oldLength = pkg.files.length; - const newLength = newFiles.length; - if ( - oldLength !== newLength && - !(pkg.files.includes("bin") && newLength === oldLength - 1) - ) { + const srcDirs = subdirs(`${pkkRoot}/src`).sort(); + const hasBin = existsSync(`${pkkRoot}/bin`); + const oldFiles = new Set(pkg.files); + const newFiles = [ + "*.js", + "*.d.ts", + "lib", + ...(hasBin ? ["bin"] : []), + ...srcDirs, + ]; + if (!equivSet(oldFiles, new Set(newFiles))) { console.log("fixing pkg", newFiles); pkg.files = newFiles; writeFileSync(pkgPath, JSON.stringify(pkg, null, 4)); From 67e2f71e098a57677d8a44a44b30c31ae11546ca Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Wed, 18 Aug 2021 09:46:41 +0200 Subject: [PATCH 02/76] fix(imgui): include missing src folder in pkg - thanks to @djmike for reporting - see fix in fa8fdda12 --- packages/imgui/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/imgui/package.json b/packages/imgui/package.json index 8792fbb494..64f4e78141 100644 --- a/packages/imgui/package.json +++ b/packages/imgui/package.json @@ -54,7 +54,7 @@ "*.d.ts", "lib", "behaviors", - "component" + "components" ], "keywords": [ "browser", @@ -79,4 +79,4 @@ ], "year": 2019 } -} +} \ No newline at end of file From 61c541818227d73df7cb70e32b9e5b09ca0a1e9c Mon Sep 17 00:00:00 2001 From: "allcontributors[bot]" <46447321+allcontributors[bot]@users.noreply.github.com> Date: Wed, 18 Aug 2021 07:53:12 +0000 Subject: [PATCH 03/76] docs: update README.md [skip ci] --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 3987a54645..bcceb314b6 100644 --- a/README.md +++ b/README.md @@ -467,6 +467,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
Jannis Pohlmann

🐛
Shakthi Prasad G S

🐛 💻
Robin Gower

🐛 +
Michael Latzoni

🐛 From 4aa7ff582d2851305ee947ab3e320d97276a4106 Mon Sep 17 00:00:00 2001 From: "allcontributors[bot]" <46447321+allcontributors[bot]@users.noreply.github.com> Date: Wed, 18 Aug 2021 07:53:13 +0000 Subject: [PATCH 04/76] docs: update .all-contributorsrc [skip ci] --- .all-contributorsrc | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.all-contributorsrc b/.all-contributorsrc index ebcaa432dd..36fb10770c 100644 --- a/.all-contributorsrc +++ b/.all-contributorsrc @@ -326,6 +326,15 @@ "contributions": [ "bug" ] + }, + { + "login": "djmike", + "name": "Michael Latzoni", + "avatar_url": "https://avatars.githubusercontent.com/u/266039?v=4", + "profile": "https://github.com/djmike", + "contributions": [ + "bug" + ] } ], "contributorsPerLine": 7, From 989b5a3cf94b504aebd33ed0bf8f2b5609d34f83 Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Wed, 18 Aug 2021 17:17:29 +0200 Subject: [PATCH 05/76] Publish - @thi.ng/imgui@1.0.3 --- packages/imgui/CHANGELOG.md | 11 +++++++++++ packages/imgui/package.json | 4 ++-- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/packages/imgui/CHANGELOG.md b/packages/imgui/CHANGELOG.md index 9361834468..1d60236883 100644 --- a/packages/imgui/CHANGELOG.md +++ b/packages/imgui/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/imgui@1.0.2...@thi.ng/imgui@1.0.3) (2021-08-18) + + +### Bug Fixes + +* **imgui:** include missing src folder in pkg ([67e2f71](https://github.com/thi-ng/umbrella/commit/67e2f71e098a57677d8a44a44b30c31ae11546ca)) + + + + + ## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/imgui@1.0.1...@thi.ng/imgui@1.0.2) (2021-08-17) **Note:** Version bump only for package @thi.ng/imgui diff --git a/packages/imgui/package.json b/packages/imgui/package.json index 64f4e78141..fb5fe5a303 100644 --- a/packages/imgui/package.json +++ b/packages/imgui/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/imgui", - "version": "1.0.2", + "version": "1.0.3", "description": "Immediate mode GUI with flexible state handling & data only shape output", "module": "./index.js", "main": "./lib/index.js", @@ -79,4 +79,4 @@ ], "year": 2019 } -} \ No newline at end of file +} From d09db8d47be81e78dea1f4e16917249924b65e35 Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Thu, 19 Aug 2021 16:20:43 +0200 Subject: [PATCH 06/76] feat(transducers): add normalized frequencies() reducers - add normCount() - add normFrequencies() - add normFrequenciesAuto() - update readme --- packages/transducers/README.md | 5 ++- packages/transducers/src/index.ts | 3 ++ packages/transducers/src/rfn/norm-count.ts | 33 ++++++++++++++ .../src/rfn/norm-frequencies-auto.ts | 45 +++++++++++++++++++ .../transducers/src/rfn/norm-frequencies.ts | 44 ++++++++++++++++++ packages/transducers/tpl.readme.md | 3 ++ 6 files changed, 132 insertions(+), 1 deletion(-) create mode 100644 packages/transducers/src/rfn/norm-count.ts create mode 100644 packages/transducers/src/rfn/norm-frequencies-auto.ts create mode 100644 packages/transducers/src/rfn/norm-frequencies.ts diff --git a/packages/transducers/README.md b/packages/transducers/README.md index a2b40b3a6a..8171e830bc 100644 --- a/packages/transducers/README.md +++ b/packages/transducers/README.md @@ -169,7 +169,7 @@ yarn add @thi.ng/transducers ``` -Package sizes (gzipped, pre-treeshake): ESM: 8.44 KB / CJS: 9.00 KB / UMD: 8.18 KB +Package sizes (gzipped, pre-treeshake): ESM: 8.53 KB / CJS: 9.12 KB / UMD: 8.28 KB ## Dependencies @@ -965,6 +965,9 @@ and return a reduced result (as if it would be called via `reduce()`). - [minMag](https://github.com/thi-ng/umbrella/tree/develop/packages/transducers/src/rfn/min-mag.ts) - [minMax](https://github.com/thi-ng/umbrella/tree/develop/packages/transducers/src/rfn/min-max.ts) - [mul](https://github.com/thi-ng/umbrella/tree/develop/packages/transducers/src/rfn/mul.ts) +- [normCount](https://github.com/thi-ng/umbrella/tree/develop/packages/transducers/src/rfn/norm-count.ts) +- [normFrequencies](https://github.com/thi-ng/umbrella/tree/develop/packages/transducers/src/rfn/norm-frequencies.ts) +- [normFrequenciesAuto](https://github.com/thi-ng/umbrella/tree/develop/packages/transducers/src/rfn/norm-frequencies-auto.ts) - [push](https://github.com/thi-ng/umbrella/tree/develop/packages/transducers/src/rfn/push.ts) - [pushCopy](https://github.com/thi-ng/umbrella/tree/develop/packages/transducers/src/rfn/push-copy.ts) - [pushSort](https://github.com/thi-ng/umbrella/tree/develop/packages/transducers/src/rfn/push-sort.ts) diff --git a/packages/transducers/src/index.ts b/packages/transducers/src/index.ts index be54bcce4f..8703f1637b 100644 --- a/packages/transducers/src/index.ts +++ b/packages/transducers/src/index.ts @@ -29,6 +29,9 @@ export * from "./rfn/min-compare"; export * from "./rfn/min-mag"; export * from "./rfn/min-max"; export * from "./rfn/mul"; +export * from "./rfn/norm-count"; +export * from "./rfn/norm-frequencies"; +export * from "./rfn/norm-frequencies-auto"; export * from "./rfn/push"; export * from "./rfn/push-copy"; export * from "./rfn/push-sort"; diff --git a/packages/transducers/src/rfn/norm-count.ts b/packages/transducers/src/rfn/norm-count.ts new file mode 100644 index 0000000000..f18196d84e --- /dev/null +++ b/packages/transducers/src/rfn/norm-count.ts @@ -0,0 +1,33 @@ +import type { Reducer } from "../api"; +import { $$reduce } from "../reduce"; + +/** + * Similar to {@link count}, a reducer which ignores incoming values and instead + * only counts them, finally yielding a value normalized to given `norm` (i.e. a + * percentage). + * + * @remarks + * Also see {@link normFrequencies} which uses this reducer to create a + * normalized histogram. + * + * @example + * ```ts + * const items = [1,2,3,1,1,4,2,5,1,2]; + * + * // compute percentage of values < 3 + * transduce(filter(x => x<3), normCount(items.length), items); + * // 0.7 + * ``` + * + * @param norm - + */ +export function normCount(norm: number): Reducer; +export function normCount(norm: number, xs: Iterable): number; +export function normCount(...args: any[]): any { + const res = $$reduce(normCount, args); + if (res !== undefined) { + return res; + } + const norm: number = args[0]; + return [() => 0, (acc: number) => acc / norm, (acc: number) => acc + 1]; +} diff --git a/packages/transducers/src/rfn/norm-frequencies-auto.ts b/packages/transducers/src/rfn/norm-frequencies-auto.ts new file mode 100644 index 0000000000..244d6fe817 --- /dev/null +++ b/packages/transducers/src/rfn/norm-frequencies-auto.ts @@ -0,0 +1,45 @@ +import type { Fn } from "@thi.ng/api"; +import type { Reducer } from "../api"; +import { $$reduce } from "../reduce"; +import { frequencies } from "./frequencies"; + +/** + * Similar to {@link normFrequencies}, but automatically computes normalization + * basis instead of requiring it ahead of time as argument. + * + * @example + * ```ts + * const items = [1, 2, 3, 1, 1, 4, 2, 5, 1, 2]; + * + * normFrequenciesAuto(items) + * // Map(5) { 1 => 0.4, 2 => 0.3, 3 => 0.1, 4 => 0.1, 5 => 0.1 } + * ``` + */ +export function normFrequenciesAuto(): Reducer, A>; +export function normFrequenciesAuto(xs: Iterable): Map; +export function normFrequenciesAuto( + key: Fn +): Reducer, A>; +export function normFrequenciesAuto( + key: Fn, + xs: Iterable +): Map; +export function normFrequenciesAuto(...args: any[]): any { + const res = $$reduce(normFrequenciesAuto, args); + if (res !== undefined) { + return res; + } + const [init, complete, reduce] = frequencies(); + let norm = 0; + return [ + init, + (acc: Map) => { + acc = complete(acc); + for (let p of acc) { + acc.set(p[0], p[1] / norm); + } + return acc; + }, + (acc: Map, x: any) => (norm++, reduce(acc, x)), + ]; +} diff --git a/packages/transducers/src/rfn/norm-frequencies.ts b/packages/transducers/src/rfn/norm-frequencies.ts new file mode 100644 index 0000000000..74812a8cbd --- /dev/null +++ b/packages/transducers/src/rfn/norm-frequencies.ts @@ -0,0 +1,44 @@ +import type { Fn } from "@thi.ng/api"; +import { identity } from "@thi.ng/compose"; +import type { Reducer } from "../api"; +import { $$reduce } from "../reduce"; +import { groupByMap } from "./group-by-map"; +import { normCount } from "./norm-count"; + +/** + * Similar to {@link frequencies}, but with each bin value normalized to given + * `norm`. + * + * @example + * ```ts + * const items = [1, 2, 3, 1, 1, 4, 2, 5, 1, 2]; + * + * normFrequencies(10, items) + * // Map(5) { 1 => 0.4, 2 => 0.3, 3 => 0.1, 4 => 0.1, 5 => 0.1 } + * ``` + * + * @param norm - + */ +export function normFrequencies(norm: number): Reducer, A>; +export function normFrequencies( + norm: number, + xs: Iterable +): Map; +export function normFrequencies( + norm: number, + key: Fn +): Reducer, A>; +export function normFrequencies( + norm: number, + key: Fn, + xs: Iterable +): Map; +export function normFrequencies(...args: any[]): any { + return ( + $$reduce(normFrequencies, args) || + groupByMap({ + key: args[1] || identity, + group: normCount(args[0]), + }) + ); +} diff --git a/packages/transducers/tpl.readme.md b/packages/transducers/tpl.readme.md index 836219bdf5..25c0a079f5 100644 --- a/packages/transducers/tpl.readme.md +++ b/packages/transducers/tpl.readme.md @@ -837,6 +837,9 @@ and return a reduced result (as if it would be called via `reduce()`). - [minMag](https://github.com/thi-ng/umbrella/tree/develop/packages/transducers/src/rfn/min-mag.ts) - [minMax](https://github.com/thi-ng/umbrella/tree/develop/packages/transducers/src/rfn/min-max.ts) - [mul](https://github.com/thi-ng/umbrella/tree/develop/packages/transducers/src/rfn/mul.ts) +- [normCount](https://github.com/thi-ng/umbrella/tree/develop/packages/transducers/src/rfn/norm-count.ts) +- [normFrequencies](https://github.com/thi-ng/umbrella/tree/develop/packages/transducers/src/rfn/norm-frequencies.ts) +- [normFrequenciesAuto](https://github.com/thi-ng/umbrella/tree/develop/packages/transducers/src/rfn/norm-frequencies-auto.ts) - [push](https://github.com/thi-ng/umbrella/tree/develop/packages/transducers/src/rfn/push.ts) - [pushCopy](https://github.com/thi-ng/umbrella/tree/develop/packages/transducers/src/rfn/push-copy.ts) - [pushSort](https://github.com/thi-ng/umbrella/tree/develop/packages/transducers/src/rfn/push-sort.ts) From eaa0f23a88cfb98da05b245b720a6fbb260ea7da Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Thu, 19 Aug 2021 16:23:03 +0200 Subject: [PATCH 07/76] feat(args): capitalize usage section headings --- packages/args/src/usage.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/args/src/usage.ts b/packages/args/src/usage.ts index d6a822278e..c14aa6b6a4 100644 --- a/packages/args/src/usage.ts +++ b/packages/args/src/usage.ts @@ -1,5 +1,6 @@ import type { IObjectOf, Pair } from "@thi.ng/api"; import { + capitalize, kebab, lengthAnsi, padRight, @@ -45,7 +46,7 @@ export const usage = >( ...wrap(opts.prefix, opts.lineWidth!), ...groups.map(([gid, ids]) => [ - ...(opts.showGroupNames ? [`${gid}:\n`] : []), + ...(opts.showGroupNames ? [`${capitalize(gid)}:\n`] : []), ...format(ids), "", ].join("\n") From 2c2f921759dc30055f86795231fa1289ddb14a6e Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Thu, 19 Aug 2021 16:24:34 +0200 Subject: [PATCH 08/76] Publish - @thi.ng/adjacency@1.0.3 - @thi.ng/args@1.1.0 - @thi.ng/associative@5.2.13 - @thi.ng/bencode@1.0.3 - @thi.ng/cache@1.0.92 - @thi.ng/color@3.2.5 - @thi.ng/colored-noise@0.1.45 - @thi.ng/csp@1.1.72 - @thi.ng/csv@1.0.5 - @thi.ng/dcons@2.3.32 - @thi.ng/dgraph-dot@1.0.5 - @thi.ng/dgraph@1.3.32 - @thi.ng/distance@1.0.5 - @thi.ng/dsp-io-wav@1.0.5 - @thi.ng/dsp@3.0.29 - @thi.ng/ecs@0.5.23 - @thi.ng/egf@0.4.15 - @thi.ng/fsm@2.4.61 - @thi.ng/fuzzy-viz@1.0.6 - @thi.ng/geom-accel@2.1.58 - @thi.ng/geom-api@2.0.29 - @thi.ng/geom-arc@1.0.3 - @thi.ng/geom-clip-line@1.2.43 - @thi.ng/geom-clip-poly@1.0.68 - @thi.ng/geom-closest-point@1.0.3 - @thi.ng/geom-fuzz@1.0.5 - @thi.ng/geom-hull@1.0.3 - @thi.ng/geom-io-obj@0.1.58 - @thi.ng/geom-isec@1.0.3 - @thi.ng/geom-isoline@1.1.2 - @thi.ng/geom-poly-utils@1.0.3 - @thi.ng/geom-resample@1.0.3 - @thi.ng/geom-splines@1.0.3 - @thi.ng/geom-subdiv-curve@1.0.3 - @thi.ng/geom-tessellate@1.0.3 - @thi.ng/geom-voronoi@1.0.3 - @thi.ng/geom@2.1.26 - @thi.ng/gp@0.2.28 - @thi.ng/grid-iterators@1.0.3 - @thi.ng/hdiff@0.1.51 - @thi.ng/hdom-canvas@3.0.58 - @thi.ng/hdom-components@4.0.46 - @thi.ng/hiccup-canvas@1.2.13 - @thi.ng/hiccup-css@1.1.71 - @thi.ng/hiccup-markdown@1.3.31 - @thi.ng/hiccup-svg@3.7.32 - @thi.ng/iges@1.1.85 - @thi.ng/imgui@1.0.4 - @thi.ng/iterators@5.1.72 - @thi.ng/k-means@0.3.4 - @thi.ng/leb128@1.0.66 - @thi.ng/lsys@1.0.3 - @thi.ng/matrices@1.0.3 - @thi.ng/pixel-io-netpbm@1.0.5 - @thi.ng/pixel@1.0.3 - @thi.ng/pointfree-lang@1.4.37 - @thi.ng/poisson@1.1.51 - @thi.ng/ramp@1.0.5 - @thi.ng/range-coder@1.0.91 - @thi.ng/rdom-canvas@0.1.57 - @thi.ng/rdom-components@0.2.6 - @thi.ng/rdom@0.6.6 - @thi.ng/rstream-csp@2.0.77 - @thi.ng/rstream-dot@1.2.26 - @thi.ng/rstream-gestures@3.0.31 - @thi.ng/rstream-graph@3.2.78 - @thi.ng/rstream-log-file@1.0.3 - @thi.ng/rstream-log@3.2.30 - @thi.ng/rstream-query@1.1.86 - @thi.ng/rstream@6.0.18 - @thi.ng/sax@1.1.71 - @thi.ng/scenegraph@0.3.41 - @thi.ng/shader-ast-glsl@0.2.45 - @thi.ng/shader-ast-js@0.5.46 - @thi.ng/shader-ast-stdlib@0.9.1 - @thi.ng/shader-ast@0.10.1 - @thi.ng/simd@0.4.39 - @thi.ng/soa@0.2.23 - @thi.ng/sparse@0.1.87 - @thi.ng/system@1.0.5 - @thi.ng/text-canvas@1.1.2 - @thi.ng/transducers-binary@1.0.3 - @thi.ng/transducers-fsm@1.1.71 - @thi.ng/transducers-hdom@2.0.103 - @thi.ng/transducers-patch@0.2.28 - @thi.ng/transducers-stats@1.1.72 - @thi.ng/transducers@7.9.0 - @thi.ng/vector-pools@2.0.23 - @thi.ng/vectors@6.1.1 - @thi.ng/viz@0.2.39 - @thi.ng/webgl-msdf@1.0.5 - @thi.ng/webgl-shadertoy@0.2.88 - @thi.ng/webgl@5.0.11 --- packages/adjacency/CHANGELOG.md | 8 ++++++ packages/adjacency/package.json | 8 +++--- packages/args/CHANGELOG.md | 11 ++++++++ packages/args/package.json | 2 +- packages/associative/CHANGELOG.md | 8 ++++++ packages/associative/package.json | 6 ++--- packages/bencode/CHANGELOG.md | 8 ++++++ packages/bencode/package.json | 6 ++--- packages/cache/CHANGELOG.md | 8 ++++++ packages/cache/package.json | 6 ++--- packages/color/CHANGELOG.md | 8 ++++++ packages/color/package.json | 6 ++--- packages/colored-noise/CHANGELOG.md | 8 ++++++ packages/colored-noise/package.json | 12 ++++----- packages/csp/CHANGELOG.md | 8 ++++++ packages/csp/package.json | 6 ++--- packages/csv/CHANGELOG.md | 8 ++++++ packages/csv/package.json | 4 +-- packages/dcons/CHANGELOG.md | 8 ++++++ packages/dcons/package.json | 4 +-- packages/dgraph-dot/CHANGELOG.md | 8 ++++++ packages/dgraph-dot/package.json | 4 +-- packages/dgraph/CHANGELOG.md | 8 ++++++ packages/dgraph/package.json | 6 ++--- packages/distance/CHANGELOG.md | 8 ++++++ packages/distance/package.json | 4 +-- packages/dsp-io-wav/CHANGELOG.md | 8 ++++++ packages/dsp-io-wav/package.json | 6 ++--- packages/dsp/CHANGELOG.md | 8 ++++++ packages/dsp/package.json | 4 +-- packages/ecs/CHANGELOG.md | 8 ++++++ packages/ecs/package.json | 8 +++--- packages/egf/CHANGELOG.md | 8 ++++++ packages/egf/package.json | 6 ++--- packages/fsm/CHANGELOG.md | 8 ++++++ packages/fsm/package.json | 4 +-- packages/fuzzy-viz/CHANGELOG.md | 8 ++++++ packages/fuzzy-viz/package.json | 6 ++--- packages/geom-accel/CHANGELOG.md | 8 ++++++ packages/geom-accel/package.json | 10 +++---- packages/geom-api/CHANGELOG.md | 8 ++++++ packages/geom-api/package.json | 4 +-- packages/geom-arc/CHANGELOG.md | 8 ++++++ packages/geom-arc/package.json | 8 +++--- packages/geom-clip-line/CHANGELOG.md | 8 ++++++ packages/geom-clip-line/package.json | 6 ++--- packages/geom-clip-poly/CHANGELOG.md | 8 ++++++ packages/geom-clip-poly/package.json | 8 +++--- packages/geom-closest-point/CHANGELOG.md | 8 ++++++ packages/geom-closest-point/package.json | 4 +-- packages/geom-fuzz/CHANGELOG.md | 8 ++++++ packages/geom-fuzz/package.json | 20 +++++++------- packages/geom-hull/CHANGELOG.md | 8 ++++++ packages/geom-hull/package.json | 4 +-- packages/geom-io-obj/CHANGELOG.md | 8 ++++++ packages/geom-io-obj/package.json | 4 +-- packages/geom-isec/CHANGELOG.md | 8 ++++++ packages/geom-isec/package.json | 8 +++--- packages/geom-isoline/CHANGELOG.md | 8 ++++++ packages/geom-isoline/package.json | 6 ++--- packages/geom-poly-utils/CHANGELOG.md | 8 ++++++ packages/geom-poly-utils/package.json | 6 ++--- packages/geom-resample/CHANGELOG.md | 8 ++++++ packages/geom-resample/package.json | 8 +++--- packages/geom-splines/CHANGELOG.md | 8 ++++++ packages/geom-splines/package.json | 10 +++---- packages/geom-subdiv-curve/CHANGELOG.md | 8 ++++++ packages/geom-subdiv-curve/package.json | 8 +++--- packages/geom-tessellate/CHANGELOG.md | 8 ++++++ packages/geom-tessellate/package.json | 12 ++++----- packages/geom-voronoi/CHANGELOG.md | 8 ++++++ packages/geom-voronoi/package.json | 12 ++++----- packages/geom/CHANGELOG.md | 8 ++++++ packages/geom/package.json | 34 ++++++++++++------------ packages/gp/CHANGELOG.md | 8 ++++++ packages/gp/package.json | 4 +-- packages/grid-iterators/CHANGELOG.md | 8 ++++++ packages/grid-iterators/package.json | 4 +-- packages/hdiff/CHANGELOG.md | 8 ++++++ packages/hdiff/package.json | 4 +-- packages/hdom-canvas/CHANGELOG.md | 8 ++++++ packages/hdom-canvas/package.json | 4 +-- packages/hdom-components/CHANGELOG.md | 8 ++++++ packages/hdom-components/package.json | 6 ++--- packages/hiccup-canvas/CHANGELOG.md | 8 ++++++ packages/hiccup-canvas/package.json | 8 +++--- packages/hiccup-css/CHANGELOG.md | 8 ++++++ packages/hiccup-css/package.json | 4 +-- packages/hiccup-markdown/CHANGELOG.md | 8 ++++++ packages/hiccup-markdown/package.json | 8 +++--- packages/hiccup-svg/CHANGELOG.md | 8 ++++++ packages/hiccup-svg/package.json | 4 +-- packages/iges/CHANGELOG.md | 8 ++++++ packages/iges/package.json | 6 ++--- packages/imgui/CHANGELOG.md | 8 ++++++ packages/imgui/package.json | 14 +++++----- packages/iterators/CHANGELOG.md | 8 ++++++ packages/iterators/package.json | 4 +-- packages/k-means/CHANGELOG.md | 8 ++++++ packages/k-means/package.json | 6 ++--- packages/leb128/CHANGELOG.md | 8 ++++++ packages/leb128/package.json | 4 +-- packages/lsys/CHANGELOG.md | 8 ++++++ packages/lsys/package.json | 6 ++--- packages/matrices/CHANGELOG.md | 8 ++++++ packages/matrices/package.json | 4 +-- packages/pixel-io-netpbm/CHANGELOG.md | 8 ++++++ packages/pixel-io-netpbm/package.json | 4 +-- packages/pixel/CHANGELOG.md | 8 ++++++ packages/pixel/package.json | 4 +-- packages/pointfree-lang/CHANGELOG.md | 8 ++++++ packages/pointfree-lang/package.json | 4 +-- packages/poisson/CHANGELOG.md | 8 ++++++ packages/poisson/package.json | 8 +++--- packages/ramp/CHANGELOG.md | 8 ++++++ packages/ramp/package.json | 6 ++--- packages/range-coder/CHANGELOG.md | 8 ++++++ packages/range-coder/package.json | 4 +-- packages/rdom-canvas/CHANGELOG.md | 8 ++++++ packages/rdom-canvas/package.json | 10 +++---- packages/rdom-components/CHANGELOG.md | 8 ++++++ packages/rdom-components/package.json | 10 +++---- packages/rdom/CHANGELOG.md | 8 ++++++ packages/rdom/package.json | 4 +-- packages/rstream-csp/CHANGELOG.md | 8 ++++++ packages/rstream-csp/package.json | 6 ++--- packages/rstream-dot/CHANGELOG.md | 8 ++++++ packages/rstream-dot/package.json | 6 ++--- packages/rstream-gestures/CHANGELOG.md | 8 ++++++ packages/rstream-gestures/package.json | 6 ++--- packages/rstream-graph/CHANGELOG.md | 8 ++++++ packages/rstream-graph/package.json | 6 ++--- packages/rstream-log-file/CHANGELOG.md | 8 ++++++ packages/rstream-log-file/package.json | 4 +-- packages/rstream-log/CHANGELOG.md | 8 ++++++ packages/rstream-log/package.json | 6 ++--- packages/rstream-query/CHANGELOG.md | 8 ++++++ packages/rstream-query/package.json | 10 +++---- packages/rstream/CHANGELOG.md | 8 ++++++ packages/rstream/package.json | 6 ++--- packages/sax/CHANGELOG.md | 8 ++++++ packages/sax/package.json | 6 ++--- packages/scenegraph/CHANGELOG.md | 8 ++++++ packages/scenegraph/package.json | 6 ++--- packages/shader-ast-glsl/CHANGELOG.md | 8 ++++++ packages/shader-ast-glsl/package.json | 4 +-- packages/shader-ast-js/CHANGELOG.md | 8 ++++++ packages/shader-ast-js/package.json | 10 +++---- packages/shader-ast-stdlib/CHANGELOG.md | 8 ++++++ packages/shader-ast-stdlib/package.json | 4 +-- packages/shader-ast/CHANGELOG.md | 8 ++++++ packages/shader-ast/package.json | 4 +-- packages/simd/CHANGELOG.md | 8 ++++++ packages/simd/package.json | 4 +-- packages/soa/CHANGELOG.md | 8 ++++++ packages/soa/package.json | 6 ++--- packages/sparse/CHANGELOG.md | 8 ++++++ packages/sparse/package.json | 4 +-- packages/system/CHANGELOG.md | 8 ++++++ packages/system/package.json | 4 +-- packages/text-canvas/CHANGELOG.md | 8 ++++++ packages/text-canvas/package.json | 6 ++--- packages/transducers-binary/CHANGELOG.md | 8 ++++++ packages/transducers-binary/package.json | 4 +-- packages/transducers-fsm/CHANGELOG.md | 8 ++++++ packages/transducers-fsm/package.json | 4 +-- packages/transducers-hdom/CHANGELOG.md | 8 ++++++ packages/transducers-hdom/package.json | 4 +-- packages/transducers-patch/CHANGELOG.md | 8 ++++++ packages/transducers-patch/package.json | 4 +-- packages/transducers-stats/CHANGELOG.md | 8 ++++++ packages/transducers-stats/package.json | 6 ++--- packages/transducers/CHANGELOG.md | 11 ++++++++ packages/transducers/package.json | 2 +- packages/vector-pools/CHANGELOG.md | 8 ++++++ packages/vector-pools/package.json | 6 ++--- packages/vectors/CHANGELOG.md | 8 ++++++ packages/vectors/package.json | 4 +-- packages/viz/CHANGELOG.md | 8 ++++++ packages/viz/package.json | 6 ++--- packages/webgl-msdf/CHANGELOG.md | 8 ++++++ packages/webgl-msdf/package.json | 12 ++++----- packages/webgl-shadertoy/CHANGELOG.md | 8 ++++++ packages/webgl-shadertoy/package.json | 8 +++--- packages/webgl/CHANGELOG.md | 8 ++++++ packages/webgl/package.json | 20 +++++++------- 186 files changed, 1056 insertions(+), 306 deletions(-) diff --git a/packages/adjacency/CHANGELOG.md b/packages/adjacency/CHANGELOG.md index 11781c0801..e07092bb31 100644 --- a/packages/adjacency/CHANGELOG.md +++ b/packages/adjacency/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/adjacency@1.0.2...@thi.ng/adjacency@1.0.3) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/adjacency + + + + + ## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/adjacency@1.0.1...@thi.ng/adjacency@1.0.2) (2021-08-17) **Note:** Version bump only for package @thi.ng/adjacency diff --git a/packages/adjacency/package.json b/packages/adjacency/package.json index fd32789e2d..8c51eaa3e6 100644 --- a/packages/adjacency/package.json +++ b/packages/adjacency/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/adjacency", - "version": "1.0.2", + "version": "1.0.3", "description": "Sparse & bitwise adjacency matrices and related functions for directed & undirected graphs", "module": "./index.js", "main": "./lib/index.js", @@ -38,15 +38,15 @@ "pub": "yarn build:release && yarn publish --access public" }, "devDependencies": { - "@thi.ng/vectors": "^6.1.0" + "@thi.ng/vectors": "^6.1.1" }, "dependencies": { "@thi.ng/api": "^7.1.9", "@thi.ng/arrays": "^1.0.2", "@thi.ng/bitfield": "^1.0.2", - "@thi.ng/dcons": "^2.3.31", + "@thi.ng/dcons": "^2.3.32", "@thi.ng/errors": "^1.3.4", - "@thi.ng/sparse": "^0.1.86" + "@thi.ng/sparse": "^0.1.87" }, "files": [ "*.js", diff --git a/packages/args/CHANGELOG.md b/packages/args/CHANGELOG.md index 0607d51114..6fa46b92ac 100644 --- a/packages/args/CHANGELOG.md +++ b/packages/args/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.1.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/args@1.0.4...@thi.ng/args@1.1.0) (2021-08-19) + + +### Features + +* **args:** capitalize usage section headings ([eaa0f23](https://github.com/thi-ng/umbrella/commit/eaa0f23a88cfb98da05b245b720a6fbb260ea7da)) + + + + + ## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/args@1.0.3...@thi.ng/args@1.0.4) (2021-08-17) **Note:** Version bump only for package @thi.ng/args diff --git a/packages/args/package.json b/packages/args/package.json index fe48c02d6c..b8643fc688 100644 --- a/packages/args/package.json +++ b/packages/args/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/args", - "version": "1.0.4", + "version": "1.1.0", "description": "Declarative, functional & typechecked CLI argument/options parser, value coercions etc.", "module": "./index.js", "main": "./lib/index.js", diff --git a/packages/associative/CHANGELOG.md b/packages/associative/CHANGELOG.md index 9a1182fe5b..ffa15ed499 100644 --- a/packages/associative/CHANGELOG.md +++ b/packages/associative/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.2.13](https://github.com/thi-ng/umbrella/compare/@thi.ng/associative@5.2.12...@thi.ng/associative@5.2.13) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/associative + + + + + ## [5.2.12](https://github.com/thi-ng/umbrella/compare/@thi.ng/associative@5.2.11...@thi.ng/associative@5.2.12) (2021-08-17) **Note:** Version bump only for package @thi.ng/associative diff --git a/packages/associative/package.json b/packages/associative/package.json index a7d3f9533a..4d856786d5 100644 --- a/packages/associative/package.json +++ b/packages/associative/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/associative", - "version": "5.2.12", + "version": "5.2.13", "description": "Alternative Map and Set implementations with customizable equality semantics & supporting operations", "module": "./index.js", "main": "./lib/index.js", @@ -43,10 +43,10 @@ "@thi.ng/binary": "^2.2.10", "@thi.ng/checks": "^2.9.10", "@thi.ng/compare": "^1.3.33", - "@thi.ng/dcons": "^2.3.31", + "@thi.ng/dcons": "^2.3.32", "@thi.ng/equiv": "^1.0.45", "@thi.ng/errors": "^1.3.4", - "@thi.ng/transducers": "^7.8.4", + "@thi.ng/transducers": "^7.9.0", "tslib": "^2.3.0" }, "files": [ diff --git a/packages/bencode/CHANGELOG.md b/packages/bencode/CHANGELOG.md index 83da3e7cc7..0145efd37f 100644 --- a/packages/bencode/CHANGELOG.md +++ b/packages/bencode/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/bencode@1.0.2...@thi.ng/bencode@1.0.3) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/bencode + + + + + ## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/bencode@1.0.1...@thi.ng/bencode@1.0.2) (2021-08-17) **Note:** Version bump only for package @thi.ng/bencode diff --git a/packages/bencode/package.json b/packages/bencode/package.json index 3d11c2deb8..2f78f2e2cd 100644 --- a/packages/bencode/package.json +++ b/packages/bencode/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/bencode", - "version": "1.0.2", + "version": "1.0.3", "description": "Bencode binary encoder / decoder with optional UTF8 encoding & floating point support", "module": "./index.js", "main": "./lib/index.js", @@ -43,8 +43,8 @@ "@thi.ng/checks": "^2.9.10", "@thi.ng/defmulti": "^1.3.16", "@thi.ng/errors": "^1.3.4", - "@thi.ng/transducers": "^7.8.4", - "@thi.ng/transducers-binary": "^1.0.2" + "@thi.ng/transducers": "^7.9.0", + "@thi.ng/transducers-binary": "^1.0.3" }, "files": [ "*.js", diff --git a/packages/cache/CHANGELOG.md b/packages/cache/CHANGELOG.md index d4f4296f49..3e632ce243 100644 --- a/packages/cache/CHANGELOG.md +++ b/packages/cache/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.92](https://github.com/thi-ng/umbrella/compare/@thi.ng/cache@1.0.91...@thi.ng/cache@1.0.92) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/cache + + + + + ## [1.0.91](https://github.com/thi-ng/umbrella/compare/@thi.ng/cache@1.0.90...@thi.ng/cache@1.0.91) (2021-08-17) **Note:** Version bump only for package @thi.ng/cache diff --git a/packages/cache/package.json b/packages/cache/package.json index 4ffff8072f..d050d98608 100644 --- a/packages/cache/package.json +++ b/packages/cache/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/cache", - "version": "1.0.91", + "version": "1.0.92", "description": "In-memory cache implementations with ES6 Map-like API and different eviction strategies", "module": "./index.js", "main": "./lib/index.js", @@ -39,8 +39,8 @@ }, "dependencies": { "@thi.ng/api": "^7.1.9", - "@thi.ng/dcons": "^2.3.31", - "@thi.ng/transducers": "^7.8.4" + "@thi.ng/dcons": "^2.3.32", + "@thi.ng/transducers": "^7.9.0" }, "files": [ "*.js", diff --git a/packages/color/CHANGELOG.md b/packages/color/CHANGELOG.md index 91f1e89d53..f24ce21213 100644 --- a/packages/color/CHANGELOG.md +++ b/packages/color/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.2.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/color@3.2.4...@thi.ng/color@3.2.5) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/color + + + + + ## [3.2.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/color@3.2.3...@thi.ng/color@3.2.4) (2021-08-17) **Note:** Version bump only for package @thi.ng/color diff --git a/packages/color/package.json b/packages/color/package.json index aaee32955d..d94f6dd463 100644 --- a/packages/color/package.json +++ b/packages/color/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/color", - "version": "3.2.4", + "version": "3.2.5", "description": "Array-based color types, CSS parsing, conversions, transformations, declarative theme generation, gradients, presets", "module": "./index.js", "main": "./lib/index.js", @@ -50,8 +50,8 @@ "@thi.ng/math": "^4.0.5", "@thi.ng/random": "^2.4.7", "@thi.ng/strings": "^2.1.6", - "@thi.ng/transducers": "^7.8.4", - "@thi.ng/vectors": "^6.1.0" + "@thi.ng/transducers": "^7.9.0", + "@thi.ng/vectors": "^6.1.1" }, "files": [ "*.js", diff --git a/packages/colored-noise/CHANGELOG.md b/packages/colored-noise/CHANGELOG.md index 4f97d6d4f7..62c56771bc 100644 --- a/packages/colored-noise/CHANGELOG.md +++ b/packages/colored-noise/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.45](https://github.com/thi-ng/umbrella/compare/@thi.ng/colored-noise@0.1.44...@thi.ng/colored-noise@0.1.45) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/colored-noise + + + + + ## [0.1.44](https://github.com/thi-ng/umbrella/compare/@thi.ng/colored-noise@0.1.43...@thi.ng/colored-noise@0.1.44) (2021-08-17) **Note:** Version bump only for package @thi.ng/colored-noise diff --git a/packages/colored-noise/package.json b/packages/colored-noise/package.json index 033a22076a..dd10f50572 100644 --- a/packages/colored-noise/package.json +++ b/packages/colored-noise/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/colored-noise", - "version": "0.1.44", + "version": "0.1.45", "description": "Customizable O(1) ES6 generators for colored noise", "module": "./index.js", "main": "./lib/index.js", @@ -39,11 +39,11 @@ }, "devDependencies": { "@thi.ng/api": "^7.1.9", - "@thi.ng/dsp": "^3.0.28", - "@thi.ng/dsp-io-wav": "^1.0.4", - "@thi.ng/text-canvas": "^1.1.1", - "@thi.ng/transducers": "^7.8.4", - "@thi.ng/vectors": "^6.1.0" + "@thi.ng/dsp": "^3.0.29", + "@thi.ng/dsp-io-wav": "^1.0.5", + "@thi.ng/text-canvas": "^1.1.2", + "@thi.ng/transducers": "^7.9.0", + "@thi.ng/vectors": "^6.1.1" }, "dependencies": { "@thi.ng/binary": "^2.2.10", diff --git a/packages/csp/CHANGELOG.md b/packages/csp/CHANGELOG.md index 2e899636d9..4abf2e1dfe 100644 --- a/packages/csp/CHANGELOG.md +++ b/packages/csp/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.1.72](https://github.com/thi-ng/umbrella/compare/@thi.ng/csp@1.1.71...@thi.ng/csp@1.1.72) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/csp + + + + + ## [1.1.71](https://github.com/thi-ng/umbrella/compare/@thi.ng/csp@1.1.70...@thi.ng/csp@1.1.71) (2021-08-17) **Note:** Version bump only for package @thi.ng/csp diff --git a/packages/csp/package.json b/packages/csp/package.json index c9e3bc67d2..b94794fa1f 100644 --- a/packages/csp/package.json +++ b/packages/csp/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/csp", - "version": "1.1.71", + "version": "1.1.72", "description": "ES6 promise based CSP primitives & operations", "module": "./index.js", "main": "./lib/index.js", @@ -45,9 +45,9 @@ "@thi.ng/api": "^7.1.9", "@thi.ng/arrays": "^1.0.2", "@thi.ng/checks": "^2.9.10", - "@thi.ng/dcons": "^2.3.31", + "@thi.ng/dcons": "^2.3.32", "@thi.ng/errors": "^1.3.4", - "@thi.ng/transducers": "^7.8.4" + "@thi.ng/transducers": "^7.9.0" }, "files": [ "*.js", diff --git a/packages/csv/CHANGELOG.md b/packages/csv/CHANGELOG.md index b88a2b8d6f..a61430d5a4 100644 --- a/packages/csv/CHANGELOG.md +++ b/packages/csv/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/csv@1.0.4...@thi.ng/csv@1.0.5) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/csv + + + + + ## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/csv@1.0.3...@thi.ng/csv@1.0.4) (2021-08-17) **Note:** Version bump only for package @thi.ng/csv diff --git a/packages/csv/package.json b/packages/csv/package.json index c459178868..536cde93da 100644 --- a/packages/csv/package.json +++ b/packages/csv/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/csv", - "version": "1.0.4", + "version": "1.0.5", "description": "Customizable, transducer-based CSV parser/object mapper and transformer", "module": "./index.js", "main": "./lib/index.js", @@ -41,7 +41,7 @@ "@thi.ng/api": "^7.1.9", "@thi.ng/checks": "^2.9.10", "@thi.ng/strings": "^2.1.6", - "@thi.ng/transducers": "^7.8.4" + "@thi.ng/transducers": "^7.9.0" }, "files": [ "*.js", diff --git a/packages/dcons/CHANGELOG.md b/packages/dcons/CHANGELOG.md index dca8e3ea68..e6de825e94 100644 --- a/packages/dcons/CHANGELOG.md +++ b/packages/dcons/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.3.32](https://github.com/thi-ng/umbrella/compare/@thi.ng/dcons@2.3.31...@thi.ng/dcons@2.3.32) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/dcons + + + + + ## [2.3.31](https://github.com/thi-ng/umbrella/compare/@thi.ng/dcons@2.3.30...@thi.ng/dcons@2.3.31) (2021-08-17) **Note:** Version bump only for package @thi.ng/dcons diff --git a/packages/dcons/package.json b/packages/dcons/package.json index 3757eb93db..62ded3e46f 100644 --- a/packages/dcons/package.json +++ b/packages/dcons/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/dcons", - "version": "2.3.31", + "version": "2.3.32", "description": "Double-linked lists with comprehensive set of operations (incl. optional self-organizing behaviors)", "module": "./index.js", "main": "./lib/index.js", @@ -44,7 +44,7 @@ "@thi.ng/equiv": "^1.0.45", "@thi.ng/errors": "^1.3.4", "@thi.ng/random": "^2.4.7", - "@thi.ng/transducers": "^7.8.4" + "@thi.ng/transducers": "^7.9.0" }, "files": [ "*.js", diff --git a/packages/dgraph-dot/CHANGELOG.md b/packages/dgraph-dot/CHANGELOG.md index 73292c8171..a7f69a4e99 100644 --- a/packages/dgraph-dot/CHANGELOG.md +++ b/packages/dgraph-dot/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/dgraph-dot@1.0.4...@thi.ng/dgraph-dot@1.0.5) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/dgraph-dot + + + + + ## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/dgraph-dot@1.0.3...@thi.ng/dgraph-dot@1.0.4) (2021-08-17) **Note:** Version bump only for package @thi.ng/dgraph-dot diff --git a/packages/dgraph-dot/package.json b/packages/dgraph-dot/package.json index a967b6b1d6..b57fc2f556 100644 --- a/packages/dgraph-dot/package.json +++ b/packages/dgraph-dot/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/dgraph-dot", - "version": "1.0.4", + "version": "1.0.5", "description": "Customizable Graphviz DOT serialization for @thi.ng/dgraph", "module": "./index.js", "main": "./lib/index.js", @@ -39,7 +39,7 @@ }, "dependencies": { "@thi.ng/api": "^7.1.9", - "@thi.ng/dgraph": "^1.3.31", + "@thi.ng/dgraph": "^1.3.32", "@thi.ng/dot": "^1.2.37" }, "files": [ diff --git a/packages/dgraph/CHANGELOG.md b/packages/dgraph/CHANGELOG.md index 7a9e8902c8..4cb3883093 100644 --- a/packages/dgraph/CHANGELOG.md +++ b/packages/dgraph/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.3.32](https://github.com/thi-ng/umbrella/compare/@thi.ng/dgraph@1.3.31...@thi.ng/dgraph@1.3.32) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/dgraph + + + + + ## [1.3.31](https://github.com/thi-ng/umbrella/compare/@thi.ng/dgraph@1.3.30...@thi.ng/dgraph@1.3.31) (2021-08-17) **Note:** Version bump only for package @thi.ng/dgraph diff --git a/packages/dgraph/package.json b/packages/dgraph/package.json index 5c7e7e3ae8..e4a4fa0440 100644 --- a/packages/dgraph/package.json +++ b/packages/dgraph/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/dgraph", - "version": "1.3.31", + "version": "1.3.32", "description": "Type-agnostic directed acyclic graph (DAG) & graph operations", "module": "./index.js", "main": "./lib/index.js", @@ -39,10 +39,10 @@ }, "dependencies": { "@thi.ng/api": "^7.1.9", - "@thi.ng/associative": "^5.2.12", + "@thi.ng/associative": "^5.2.13", "@thi.ng/equiv": "^1.0.45", "@thi.ng/errors": "^1.3.4", - "@thi.ng/transducers": "^7.8.4" + "@thi.ng/transducers": "^7.9.0" }, "files": [ "*.js", diff --git a/packages/distance/CHANGELOG.md b/packages/distance/CHANGELOG.md index bd87cc55ff..bfe173e3bf 100644 --- a/packages/distance/CHANGELOG.md +++ b/packages/distance/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/distance@1.0.4...@thi.ng/distance@1.0.5) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/distance + + + + + ## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/distance@1.0.3...@thi.ng/distance@1.0.4) (2021-08-17) **Note:** Version bump only for package @thi.ng/distance diff --git a/packages/distance/package.json b/packages/distance/package.json index 43aa892bc2..ea6a39fd6d 100644 --- a/packages/distance/package.json +++ b/packages/distance/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/distance", - "version": "1.0.4", + "version": "1.0.5", "description": "N-dimensional distance metrics & K-nearest neighborhoods for point queries", "module": "./index.js", "main": "./lib/index.js", @@ -41,7 +41,7 @@ "@thi.ng/api": "^7.1.9", "@thi.ng/heaps": "^1.3.0", "@thi.ng/math": "^4.0.5", - "@thi.ng/vectors": "^6.1.0" + "@thi.ng/vectors": "^6.1.1" }, "files": [ "*.js", diff --git a/packages/dsp-io-wav/CHANGELOG.md b/packages/dsp-io-wav/CHANGELOG.md index 642b952497..64ce8579b8 100644 --- a/packages/dsp-io-wav/CHANGELOG.md +++ b/packages/dsp-io-wav/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/dsp-io-wav@1.0.4...@thi.ng/dsp-io-wav@1.0.5) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/dsp-io-wav + + + + + ## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/dsp-io-wav@1.0.3...@thi.ng/dsp-io-wav@1.0.4) (2021-08-17) **Note:** Version bump only for package @thi.ng/dsp-io-wav diff --git a/packages/dsp-io-wav/package.json b/packages/dsp-io-wav/package.json index 2ae602a910..85c41e2903 100644 --- a/packages/dsp-io-wav/package.json +++ b/packages/dsp-io-wav/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/dsp-io-wav", - "version": "1.0.4", + "version": "1.0.5", "description": "WAV file format generation", "module": "./index.js", "main": "./lib/index.js", @@ -40,8 +40,8 @@ "dependencies": { "@thi.ng/api": "^7.1.9", "@thi.ng/binary": "^2.2.10", - "@thi.ng/transducers": "^7.8.4", - "@thi.ng/transducers-binary": "^1.0.2" + "@thi.ng/transducers": "^7.9.0", + "@thi.ng/transducers-binary": "^1.0.3" }, "files": [ "*.js", diff --git a/packages/dsp/CHANGELOG.md b/packages/dsp/CHANGELOG.md index 25e9d72828..875b8a4e3d 100644 --- a/packages/dsp/CHANGELOG.md +++ b/packages/dsp/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.0.29](https://github.com/thi-ng/umbrella/compare/@thi.ng/dsp@3.0.28...@thi.ng/dsp@3.0.29) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/dsp + + + + + ## [3.0.28](https://github.com/thi-ng/umbrella/compare/@thi.ng/dsp@3.0.27...@thi.ng/dsp@3.0.28) (2021-08-17) **Note:** Version bump only for package @thi.ng/dsp diff --git a/packages/dsp/package.json b/packages/dsp/package.json index 85f1da5c30..7f726c8232 100644 --- a/packages/dsp/package.json +++ b/packages/dsp/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/dsp", - "version": "3.0.28", + "version": "3.0.29", "description": "Composable signal generators, oscillators, filters, FFT, spectrum, windowing & related DSP utils", "module": "./index.js", "main": "./lib/index.js", @@ -43,7 +43,7 @@ "@thi.ng/errors": "^1.3.4", "@thi.ng/math": "^4.0.5", "@thi.ng/random": "^2.4.7", - "@thi.ng/transducers": "^7.8.4" + "@thi.ng/transducers": "^7.9.0" }, "files": [ "*.js", diff --git a/packages/ecs/CHANGELOG.md b/packages/ecs/CHANGELOG.md index 4d9e0e8d5e..6e508bba25 100644 --- a/packages/ecs/CHANGELOG.md +++ b/packages/ecs/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.5.23](https://github.com/thi-ng/umbrella/compare/@thi.ng/ecs@0.5.22...@thi.ng/ecs@0.5.23) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/ecs + + + + + ## [0.5.22](https://github.com/thi-ng/umbrella/compare/@thi.ng/ecs@0.5.21...@thi.ng/ecs@0.5.22) (2021-08-17) **Note:** Version bump only for package @thi.ng/ecs diff --git a/packages/ecs/package.json b/packages/ecs/package.json index 147a2367b5..055a39f60d 100644 --- a/packages/ecs/package.json +++ b/packages/ecs/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/ecs", - "version": "0.5.22", + "version": "0.5.23", "description": "Entity Component System based around typed arrays & sparse sets", "module": "./index.js", "main": "./lib/index.js", @@ -42,13 +42,13 @@ }, "dependencies": { "@thi.ng/api": "^7.1.9", - "@thi.ng/associative": "^5.2.12", + "@thi.ng/associative": "^5.2.13", "@thi.ng/binary": "^2.2.10", "@thi.ng/checks": "^2.9.10", - "@thi.ng/dcons": "^2.3.31", + "@thi.ng/dcons": "^2.3.32", "@thi.ng/idgen": "^1.0.4", "@thi.ng/malloc": "^5.0.13", - "@thi.ng/transducers": "^7.8.4", + "@thi.ng/transducers": "^7.9.0", "tslib": "^2.3.0" }, "files": [ diff --git a/packages/egf/CHANGELOG.md b/packages/egf/CHANGELOG.md index 858318dd1c..fd849cffc6 100644 --- a/packages/egf/CHANGELOG.md +++ b/packages/egf/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.4.15](https://github.com/thi-ng/umbrella/compare/@thi.ng/egf@0.4.14...@thi.ng/egf@0.4.15) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/egf + + + + + ## [0.4.14](https://github.com/thi-ng/umbrella/compare/@thi.ng/egf@0.4.13...@thi.ng/egf@0.4.14) (2021-08-17) **Note:** Version bump only for package @thi.ng/egf diff --git a/packages/egf/package.json b/packages/egf/package.json index 7944e244f2..bb59d8b1e6 100644 --- a/packages/egf/package.json +++ b/packages/egf/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/egf", - "version": "0.4.14", + "version": "0.4.15", "description": "Extensible Graph Format", "module": "./index.js", "main": "./lib/index.js", @@ -37,13 +37,13 @@ }, "dependencies": { "@thi.ng/api": "^7.1.9", - "@thi.ng/associative": "^5.2.12", + "@thi.ng/associative": "^5.2.13", "@thi.ng/checks": "^2.9.10", "@thi.ng/dot": "^1.2.37", "@thi.ng/errors": "^1.3.4", "@thi.ng/prefixes": "^1.0.2", "@thi.ng/strings": "^2.1.6", - "@thi.ng/transducers-binary": "^1.0.2" + "@thi.ng/transducers-binary": "^1.0.3" }, "files": [ "*.js", diff --git a/packages/fsm/CHANGELOG.md b/packages/fsm/CHANGELOG.md index c794c090a8..c9a85c8eca 100644 --- a/packages/fsm/CHANGELOG.md +++ b/packages/fsm/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.4.61](https://github.com/thi-ng/umbrella/compare/@thi.ng/fsm@2.4.60...@thi.ng/fsm@2.4.61) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/fsm + + + + + ## [2.4.60](https://github.com/thi-ng/umbrella/compare/@thi.ng/fsm@2.4.59...@thi.ng/fsm@2.4.60) (2021-08-17) **Note:** Version bump only for package @thi.ng/fsm diff --git a/packages/fsm/package.json b/packages/fsm/package.json index aab54e3086..622f37b161 100644 --- a/packages/fsm/package.json +++ b/packages/fsm/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/fsm", - "version": "2.4.60", + "version": "2.4.61", "description": "Composable primitives for building declarative, transducer based Finite-State Machines & matchers for arbitrary data streams", "module": "./index.js", "main": "./lib/index.js", @@ -43,7 +43,7 @@ "@thi.ng/equiv": "^1.0.45", "@thi.ng/errors": "^1.3.4", "@thi.ng/strings": "^2.1.6", - "@thi.ng/transducers": "^7.8.4" + "@thi.ng/transducers": "^7.9.0" }, "files": [ "*.js", diff --git a/packages/fuzzy-viz/CHANGELOG.md b/packages/fuzzy-viz/CHANGELOG.md index b595ea8b0f..62641dfc47 100644 --- a/packages/fuzzy-viz/CHANGELOG.md +++ b/packages/fuzzy-viz/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/fuzzy-viz@1.0.5...@thi.ng/fuzzy-viz@1.0.6) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/fuzzy-viz + + + + + ## [1.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/fuzzy-viz@1.0.4...@thi.ng/fuzzy-viz@1.0.5) (2021-08-17) **Note:** Version bump only for package @thi.ng/fuzzy-viz diff --git a/packages/fuzzy-viz/package.json b/packages/fuzzy-viz/package.json index ee8453768b..b8dff45619 100644 --- a/packages/fuzzy-viz/package.json +++ b/packages/fuzzy-viz/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/fuzzy-viz", - "version": "1.0.5", + "version": "1.0.6", "description": "Visualization, instrumentation & introspection utils for @thi.ng/fuzzy", "module": "./index.js", "main": "./lib/index.js", @@ -41,10 +41,10 @@ "@thi.ng/api": "^7.1.9", "@thi.ng/fuzzy": "^1.0.3", "@thi.ng/hiccup": "^3.6.21", - "@thi.ng/hiccup-svg": "^3.7.31", + "@thi.ng/hiccup-svg": "^3.7.32", "@thi.ng/math": "^4.0.5", "@thi.ng/strings": "^2.1.6", - "@thi.ng/text-canvas": "^1.1.1" + "@thi.ng/text-canvas": "^1.1.2" }, "files": [ "*.js", diff --git a/packages/geom-accel/CHANGELOG.md b/packages/geom-accel/CHANGELOG.md index 5743de7708..d07cbe5d01 100644 --- a/packages/geom-accel/CHANGELOG.md +++ b/packages/geom-accel/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.1.58](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-accel@2.1.57...@thi.ng/geom-accel@2.1.58) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/geom-accel + + + + + ## [2.1.57](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-accel@2.1.56...@thi.ng/geom-accel@2.1.57) (2021-08-17) **Note:** Version bump only for package @thi.ng/geom-accel diff --git a/packages/geom-accel/package.json b/packages/geom-accel/package.json index 8f9bc3d089..0b2fb3f204 100644 --- a/packages/geom-accel/package.json +++ b/packages/geom-accel/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-accel", - "version": "2.1.57", + "version": "2.1.58", "description": "n-D spatial indexing data structures with a shared ES6 Map/Set-like API", "module": "./index.js", "main": "./lib/index.js", @@ -43,12 +43,12 @@ "@thi.ng/arrays": "^1.0.2", "@thi.ng/checks": "^2.9.10", "@thi.ng/equiv": "^1.0.45", - "@thi.ng/geom-api": "^2.0.28", - "@thi.ng/geom-isec": "^1.0.2", + "@thi.ng/geom-api": "^2.0.29", + "@thi.ng/geom-isec": "^1.0.3", "@thi.ng/heaps": "^1.3.0", "@thi.ng/math": "^4.0.5", - "@thi.ng/transducers": "^7.8.4", - "@thi.ng/vectors": "^6.1.0" + "@thi.ng/transducers": "^7.9.0", + "@thi.ng/vectors": "^6.1.1" }, "files": [ "*.js", diff --git a/packages/geom-api/CHANGELOG.md b/packages/geom-api/CHANGELOG.md index a49d391e25..5a2bc50f11 100644 --- a/packages/geom-api/CHANGELOG.md +++ b/packages/geom-api/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.0.29](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-api@2.0.28...@thi.ng/geom-api@2.0.29) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/geom-api + + + + + ## [2.0.28](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-api@2.0.27...@thi.ng/geom-api@2.0.28) (2021-08-17) **Note:** Version bump only for package @thi.ng/geom-api diff --git a/packages/geom-api/package.json b/packages/geom-api/package.json index ed1e75f2e7..cfd387814c 100644 --- a/packages/geom-api/package.json +++ b/packages/geom-api/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-api", - "version": "2.0.28", + "version": "2.0.29", "description": "Shared type & interface declarations for @thi.ng/geom packages", "module": "./index.js", "main": "./lib/index.js", @@ -39,7 +39,7 @@ }, "dependencies": { "@thi.ng/api": "^7.1.9", - "@thi.ng/vectors": "^6.1.0" + "@thi.ng/vectors": "^6.1.1" }, "files": [ "*.js", diff --git a/packages/geom-arc/CHANGELOG.md b/packages/geom-arc/CHANGELOG.md index e2ec29aeac..0a50ac0b33 100644 --- a/packages/geom-arc/CHANGELOG.md +++ b/packages/geom-arc/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-arc@1.0.2...@thi.ng/geom-arc@1.0.3) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/geom-arc + + + + + ## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-arc@1.0.1...@thi.ng/geom-arc@1.0.2) (2021-08-17) **Note:** Version bump only for package @thi.ng/geom-arc diff --git a/packages/geom-arc/package.json b/packages/geom-arc/package.json index a9a1fbd913..88c6ce0016 100644 --- a/packages/geom-arc/package.json +++ b/packages/geom-arc/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-arc", - "version": "1.0.2", + "version": "1.0.3", "description": "2D circular / elliptic arc operations", "module": "./index.js", "main": "./lib/index.js", @@ -39,10 +39,10 @@ }, "dependencies": { "@thi.ng/checks": "^2.9.10", - "@thi.ng/geom-api": "^2.0.28", - "@thi.ng/geom-resample": "^1.0.2", + "@thi.ng/geom-api": "^2.0.29", + "@thi.ng/geom-resample": "^1.0.3", "@thi.ng/math": "^4.0.5", - "@thi.ng/vectors": "^6.1.0" + "@thi.ng/vectors": "^6.1.1" }, "files": [ "*.js", diff --git a/packages/geom-clip-line/CHANGELOG.md b/packages/geom-clip-line/CHANGELOG.md index f3b39d5368..6d0691695b 100644 --- a/packages/geom-clip-line/CHANGELOG.md +++ b/packages/geom-clip-line/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.2.43](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-clip-line@1.2.42...@thi.ng/geom-clip-line@1.2.43) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/geom-clip-line + + + + + ## [1.2.42](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-clip-line@1.2.41...@thi.ng/geom-clip-line@1.2.42) (2021-08-17) diff --git a/packages/geom-clip-line/package.json b/packages/geom-clip-line/package.json index 6c6cfb0820..e7b0a30394 100644 --- a/packages/geom-clip-line/package.json +++ b/packages/geom-clip-line/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-clip-line", - "version": "1.2.42", + "version": "1.2.43", "description": "2D line clipping (Liang-Barsky)", "module": "./index.js", "main": "./lib/index.js", @@ -39,8 +39,8 @@ }, "dependencies": { "@thi.ng/api": "^7.1.9", - "@thi.ng/geom-isec": "^1.0.2", - "@thi.ng/vectors": "^6.1.0" + "@thi.ng/geom-isec": "^1.0.3", + "@thi.ng/vectors": "^6.1.1" }, "files": [ "*.js", diff --git a/packages/geom-clip-poly/CHANGELOG.md b/packages/geom-clip-poly/CHANGELOG.md index 83838b43d8..05eed1b6ea 100644 --- a/packages/geom-clip-poly/CHANGELOG.md +++ b/packages/geom-clip-poly/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.68](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-clip-poly@1.0.67...@thi.ng/geom-clip-poly@1.0.68) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/geom-clip-poly + + + + + ## [1.0.67](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-clip-poly@1.0.66...@thi.ng/geom-clip-poly@1.0.67) (2021-08-17) **Note:** Version bump only for package @thi.ng/geom-clip-poly diff --git a/packages/geom-clip-poly/package.json b/packages/geom-clip-poly/package.json index de2527fa0d..eb79675c82 100644 --- a/packages/geom-clip-poly/package.json +++ b/packages/geom-clip-poly/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-clip-poly", - "version": "1.0.67", + "version": "1.0.68", "description": "2D convex polygon clipping (Sutherland-Hodgeman)", "module": "./index.js", "main": "./lib/index.js", @@ -38,10 +38,10 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/geom-isec": "^1.0.2", - "@thi.ng/geom-poly-utils": "^1.0.2", + "@thi.ng/geom-isec": "^1.0.3", + "@thi.ng/geom-poly-utils": "^1.0.3", "@thi.ng/math": "^4.0.5", - "@thi.ng/vectors": "^6.1.0" + "@thi.ng/vectors": "^6.1.1" }, "files": [ "*.js", diff --git a/packages/geom-closest-point/CHANGELOG.md b/packages/geom-closest-point/CHANGELOG.md index 941107c20a..c60f2aa1b3 100644 --- a/packages/geom-closest-point/CHANGELOG.md +++ b/packages/geom-closest-point/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-closest-point@1.0.2...@thi.ng/geom-closest-point@1.0.3) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/geom-closest-point + + + + + ## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-closest-point@1.0.1...@thi.ng/geom-closest-point@1.0.2) (2021-08-17) **Note:** Version bump only for package @thi.ng/geom-closest-point diff --git a/packages/geom-closest-point/package.json b/packages/geom-closest-point/package.json index 6c19dc8dd7..3d887a6628 100644 --- a/packages/geom-closest-point/package.json +++ b/packages/geom-closest-point/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-closest-point", - "version": "1.0.2", + "version": "1.0.3", "description": "2D / 3D closest point / proximity helpers", "module": "./index.js", "main": "./lib/index.js", @@ -40,7 +40,7 @@ "dependencies": { "@thi.ng/api": "^7.1.9", "@thi.ng/math": "^4.0.5", - "@thi.ng/vectors": "^6.1.0" + "@thi.ng/vectors": "^6.1.1" }, "files": [ "*.js", diff --git a/packages/geom-fuzz/CHANGELOG.md b/packages/geom-fuzz/CHANGELOG.md index 1ca7b9a262..b8ff99a120 100644 --- a/packages/geom-fuzz/CHANGELOG.md +++ b/packages/geom-fuzz/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-fuzz@1.0.4...@thi.ng/geom-fuzz@1.0.5) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/geom-fuzz + + + + + ## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-fuzz@1.0.3...@thi.ng/geom-fuzz@1.0.4) (2021-08-17) **Note:** Version bump only for package @thi.ng/geom-fuzz diff --git a/packages/geom-fuzz/package.json b/packages/geom-fuzz/package.json index e86c4aced6..d343f60a46 100644 --- a/packages/geom-fuzz/package.json +++ b/packages/geom-fuzz/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-fuzz", - "version": "1.0.4", + "version": "1.0.5", "description": "Highly configurable, fuzzy line & polygon creation with presets and composable fill & stroke styles. Canvas & SVG support", "module": "./index.js", "main": "./lib/index.js", @@ -38,15 +38,15 @@ }, "dependencies": { "@thi.ng/api": "^7.1.9", - "@thi.ng/associative": "^5.2.12", - "@thi.ng/color": "^3.2.4", - "@thi.ng/geom": "^2.1.25", - "@thi.ng/geom-api": "^2.0.28", - "@thi.ng/geom-clip-line": "^1.2.42", - "@thi.ng/geom-resample": "^1.0.2", - "@thi.ng/grid-iterators": "^1.0.2", - "@thi.ng/transducers": "^7.8.4", - "@thi.ng/vectors": "^6.1.0" + "@thi.ng/associative": "^5.2.13", + "@thi.ng/color": "^3.2.5", + "@thi.ng/geom": "^2.1.26", + "@thi.ng/geom-api": "^2.0.29", + "@thi.ng/geom-clip-line": "^1.2.43", + "@thi.ng/geom-resample": "^1.0.3", + "@thi.ng/grid-iterators": "^1.0.3", + "@thi.ng/transducers": "^7.9.0", + "@thi.ng/vectors": "^6.1.1" }, "files": [ "*.js", diff --git a/packages/geom-hull/CHANGELOG.md b/packages/geom-hull/CHANGELOG.md index 9f36e6a9b8..5814a03093 100644 --- a/packages/geom-hull/CHANGELOG.md +++ b/packages/geom-hull/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-hull@1.0.2...@thi.ng/geom-hull@1.0.3) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/geom-hull + + + + + ## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-hull@1.0.1...@thi.ng/geom-hull@1.0.2) (2021-08-17) **Note:** Version bump only for package @thi.ng/geom-hull diff --git a/packages/geom-hull/package.json b/packages/geom-hull/package.json index a5d86b187a..4e9182d6d9 100644 --- a/packages/geom-hull/package.json +++ b/packages/geom-hull/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-hull", - "version": "1.0.2", + "version": "1.0.3", "description": "Fast 2D convex hull (Graham Scan)", "module": "./index.js", "main": "./lib/index.js", @@ -39,7 +39,7 @@ }, "dependencies": { "@thi.ng/math": "^4.0.5", - "@thi.ng/vectors": "^6.1.0" + "@thi.ng/vectors": "^6.1.1" }, "files": [ "*.js", diff --git a/packages/geom-io-obj/CHANGELOG.md b/packages/geom-io-obj/CHANGELOG.md index b106dc0bd6..0ec521926b 100644 --- a/packages/geom-io-obj/CHANGELOG.md +++ b/packages/geom-io-obj/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.58](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-io-obj@0.1.57...@thi.ng/geom-io-obj@0.1.58) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/geom-io-obj + + + + + ## [0.1.57](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-io-obj@0.1.56...@thi.ng/geom-io-obj@0.1.57) (2021-08-17) **Note:** Version bump only for package @thi.ng/geom-io-obj diff --git a/packages/geom-io-obj/package.json b/packages/geom-io-obj/package.json index a2b499cd7a..272f9477e7 100644 --- a/packages/geom-io-obj/package.json +++ b/packages/geom-io-obj/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-io-obj", - "version": "0.1.57", + "version": "0.1.58", "description": "Wavefront OBJ parser (& exporter soon)", "module": "./index.js", "main": "./lib/index.js", @@ -39,7 +39,7 @@ }, "dependencies": { "@thi.ng/api": "^7.1.9", - "@thi.ng/vectors": "^6.1.0" + "@thi.ng/vectors": "^6.1.1" }, "files": [ "*.js", diff --git a/packages/geom-isec/CHANGELOG.md b/packages/geom-isec/CHANGELOG.md index 467b8bfcaf..1d55c8e9e7 100644 --- a/packages/geom-isec/CHANGELOG.md +++ b/packages/geom-isec/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-isec@1.0.2...@thi.ng/geom-isec@1.0.3) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/geom-isec + + + + + ## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-isec@1.0.1...@thi.ng/geom-isec@1.0.2) (2021-08-17) **Note:** Version bump only for package @thi.ng/geom-isec diff --git a/packages/geom-isec/package.json b/packages/geom-isec/package.json index 2c82fdf2f1..18e4bc8b38 100644 --- a/packages/geom-isec/package.json +++ b/packages/geom-isec/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-isec", - "version": "1.0.2", + "version": "1.0.3", "description": "2D/3D shape intersection checks", "module": "./index.js", "main": "./lib/index.js", @@ -39,10 +39,10 @@ }, "dependencies": { "@thi.ng/api": "^7.1.9", - "@thi.ng/geom-api": "^2.0.28", - "@thi.ng/geom-closest-point": "^1.0.2", + "@thi.ng/geom-api": "^2.0.29", + "@thi.ng/geom-closest-point": "^1.0.3", "@thi.ng/math": "^4.0.5", - "@thi.ng/vectors": "^6.1.0" + "@thi.ng/vectors": "^6.1.1" }, "files": [ "*.js", diff --git a/packages/geom-isoline/CHANGELOG.md b/packages/geom-isoline/CHANGELOG.md index 520eacde83..2d0a362dde 100644 --- a/packages/geom-isoline/CHANGELOG.md +++ b/packages/geom-isoline/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.1.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-isoline@1.1.1...@thi.ng/geom-isoline@1.1.2) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/geom-isoline + + + + + ## [1.1.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-isoline@1.1.0...@thi.ng/geom-isoline@1.1.1) (2021-08-17) **Note:** Version bump only for package @thi.ng/geom-isoline diff --git a/packages/geom-isoline/package.json b/packages/geom-isoline/package.json index f3a1808e4a..8a07c39350 100644 --- a/packages/geom-isoline/package.json +++ b/packages/geom-isoline/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-isoline", - "version": "1.1.1", + "version": "1.1.2", "description": "Fast 2D contour line extraction / generation", "module": "./index.js", "main": "./lib/index.js", @@ -39,8 +39,8 @@ }, "dependencies": { "@thi.ng/api": "^7.1.9", - "@thi.ng/transducers": "^7.8.4", - "@thi.ng/vectors": "^6.1.0" + "@thi.ng/transducers": "^7.9.0", + "@thi.ng/vectors": "^6.1.1" }, "files": [ "*.js", diff --git a/packages/geom-poly-utils/CHANGELOG.md b/packages/geom-poly-utils/CHANGELOG.md index 9a66446f24..c674e9f417 100644 --- a/packages/geom-poly-utils/CHANGELOG.md +++ b/packages/geom-poly-utils/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-poly-utils@1.0.2...@thi.ng/geom-poly-utils@1.0.3) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/geom-poly-utils + + + + + ## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-poly-utils@1.0.1...@thi.ng/geom-poly-utils@1.0.2) (2021-08-17) **Note:** Version bump only for package @thi.ng/geom-poly-utils diff --git a/packages/geom-poly-utils/package.json b/packages/geom-poly-utils/package.json index 3a707259ed..dab3b12e3b 100644 --- a/packages/geom-poly-utils/package.json +++ b/packages/geom-poly-utils/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-poly-utils", - "version": "1.0.2", + "version": "1.0.3", "description": "2D polygon/polyline analysis & processing utilities", "module": "./index.js", "main": "./lib/index.js", @@ -40,9 +40,9 @@ "dependencies": { "@thi.ng/api": "^7.1.9", "@thi.ng/errors": "^1.3.4", - "@thi.ng/geom-api": "^2.0.28", + "@thi.ng/geom-api": "^2.0.29", "@thi.ng/math": "^4.0.5", - "@thi.ng/vectors": "^6.1.0" + "@thi.ng/vectors": "^6.1.1" }, "files": [ "*.js", diff --git a/packages/geom-resample/CHANGELOG.md b/packages/geom-resample/CHANGELOG.md index 0aba680e6e..eb88f58193 100644 --- a/packages/geom-resample/CHANGELOG.md +++ b/packages/geom-resample/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-resample@1.0.2...@thi.ng/geom-resample@1.0.3) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/geom-resample + + + + + ## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-resample@1.0.1...@thi.ng/geom-resample@1.0.2) (2021-08-17) **Note:** Version bump only for package @thi.ng/geom-resample diff --git a/packages/geom-resample/package.json b/packages/geom-resample/package.json index 0eff586a48..55758e92b3 100644 --- a/packages/geom-resample/package.json +++ b/packages/geom-resample/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-resample", - "version": "1.0.2", + "version": "1.0.3", "description": "Customizable nD polyline interpolation, re-sampling, splitting & nearest point computation", "module": "./index.js", "main": "./lib/index.js", @@ -39,10 +39,10 @@ }, "dependencies": { "@thi.ng/checks": "^2.9.10", - "@thi.ng/geom-api": "^2.0.28", - "@thi.ng/geom-closest-point": "^1.0.2", + "@thi.ng/geom-api": "^2.0.29", + "@thi.ng/geom-closest-point": "^1.0.3", "@thi.ng/math": "^4.0.5", - "@thi.ng/vectors": "^6.1.0" + "@thi.ng/vectors": "^6.1.1" }, "files": [ "*.js", diff --git a/packages/geom-splines/CHANGELOG.md b/packages/geom-splines/CHANGELOG.md index 3e2b7f4163..f2204c84eb 100644 --- a/packages/geom-splines/CHANGELOG.md +++ b/packages/geom-splines/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-splines@1.0.2...@thi.ng/geom-splines@1.0.3) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/geom-splines + + + + + ## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-splines@1.0.1...@thi.ng/geom-splines@1.0.2) (2021-08-17) **Note:** Version bump only for package @thi.ng/geom-splines diff --git a/packages/geom-splines/package.json b/packages/geom-splines/package.json index 590e4600cf..3b2ba04ae7 100644 --- a/packages/geom-splines/package.json +++ b/packages/geom-splines/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-splines", - "version": "1.0.2", + "version": "1.0.3", "description": "nD cubic & quadratic curve analysis, conversion, interpolation, splitting", "module": "./index.js", "main": "./lib/index.js", @@ -40,11 +40,11 @@ "dependencies": { "@thi.ng/api": "^7.1.9", "@thi.ng/checks": "^2.9.10", - "@thi.ng/geom-api": "^2.0.28", - "@thi.ng/geom-arc": "^1.0.2", - "@thi.ng/geom-resample": "^1.0.2", + "@thi.ng/geom-api": "^2.0.29", + "@thi.ng/geom-arc": "^1.0.3", + "@thi.ng/geom-resample": "^1.0.3", "@thi.ng/math": "^4.0.5", - "@thi.ng/vectors": "^6.1.0" + "@thi.ng/vectors": "^6.1.1" }, "files": [ "*.js", diff --git a/packages/geom-subdiv-curve/CHANGELOG.md b/packages/geom-subdiv-curve/CHANGELOG.md index f6e5ef289b..6793637565 100644 --- a/packages/geom-subdiv-curve/CHANGELOG.md +++ b/packages/geom-subdiv-curve/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-subdiv-curve@1.0.2...@thi.ng/geom-subdiv-curve@1.0.3) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/geom-subdiv-curve + + + + + ## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-subdiv-curve@1.0.1...@thi.ng/geom-subdiv-curve@1.0.2) (2021-08-17) **Note:** Version bump only for package @thi.ng/geom-subdiv-curve diff --git a/packages/geom-subdiv-curve/package.json b/packages/geom-subdiv-curve/package.json index 0f90c21fb2..089ff63379 100644 --- a/packages/geom-subdiv-curve/package.json +++ b/packages/geom-subdiv-curve/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-subdiv-curve", - "version": "1.0.2", + "version": "1.0.3", "description": "Freely customizable, iterative nD subdivision curves for open / closed geometries", "module": "./index.js", "main": "./lib/index.js", @@ -39,9 +39,9 @@ }, "dependencies": { "@thi.ng/api": "^7.1.9", - "@thi.ng/geom-api": "^2.0.28", - "@thi.ng/transducers": "^7.8.4", - "@thi.ng/vectors": "^6.1.0" + "@thi.ng/geom-api": "^2.0.29", + "@thi.ng/transducers": "^7.9.0", + "@thi.ng/vectors": "^6.1.1" }, "files": [ "*.js", diff --git a/packages/geom-tessellate/CHANGELOG.md b/packages/geom-tessellate/CHANGELOG.md index d4052dd438..dbe55593bc 100644 --- a/packages/geom-tessellate/CHANGELOG.md +++ b/packages/geom-tessellate/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-tessellate@1.0.2...@thi.ng/geom-tessellate@1.0.3) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/geom-tessellate + + + + + ## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-tessellate@1.0.1...@thi.ng/geom-tessellate@1.0.2) (2021-08-17) **Note:** Version bump only for package @thi.ng/geom-tessellate diff --git a/packages/geom-tessellate/package.json b/packages/geom-tessellate/package.json index 4bb2fe81ad..547e50dab2 100644 --- a/packages/geom-tessellate/package.json +++ b/packages/geom-tessellate/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-tessellate", - "version": "1.0.2", + "version": "1.0.3", "description": "2D/3D convex polygon tessellators", "module": "./index.js", "main": "./lib/index.js", @@ -39,11 +39,11 @@ }, "dependencies": { "@thi.ng/checks": "^2.9.10", - "@thi.ng/geom-api": "^2.0.28", - "@thi.ng/geom-isec": "^1.0.2", - "@thi.ng/geom-poly-utils": "^1.0.2", - "@thi.ng/transducers": "^7.8.4", - "@thi.ng/vectors": "^6.1.0" + "@thi.ng/geom-api": "^2.0.29", + "@thi.ng/geom-isec": "^1.0.3", + "@thi.ng/geom-poly-utils": "^1.0.3", + "@thi.ng/transducers": "^7.9.0", + "@thi.ng/vectors": "^6.1.1" }, "files": [ "*.js", diff --git a/packages/geom-voronoi/CHANGELOG.md b/packages/geom-voronoi/CHANGELOG.md index 377148f53b..7c33ae1a34 100644 --- a/packages/geom-voronoi/CHANGELOG.md +++ b/packages/geom-voronoi/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-voronoi@1.0.2...@thi.ng/geom-voronoi@1.0.3) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/geom-voronoi + + + + + ## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-voronoi@1.0.1...@thi.ng/geom-voronoi@1.0.2) (2021-08-17) **Note:** Version bump only for package @thi.ng/geom-voronoi diff --git a/packages/geom-voronoi/package.json b/packages/geom-voronoi/package.json index 591ec8a579..a64e0db3c5 100644 --- a/packages/geom-voronoi/package.json +++ b/packages/geom-voronoi/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-voronoi", - "version": "1.0.2", + "version": "1.0.3", "description": "Fast, incremental 2D Delaunay & Voronoi mesh implementation", "module": "./index.js", "main": "./lib/index.js", @@ -40,13 +40,13 @@ "dependencies": { "@thi.ng/api": "^7.1.9", "@thi.ng/checks": "^2.9.10", - "@thi.ng/geom-clip-line": "^1.2.42", - "@thi.ng/geom-clip-poly": "^1.0.67", - "@thi.ng/geom-isec": "^1.0.2", - "@thi.ng/geom-poly-utils": "^1.0.2", + "@thi.ng/geom-clip-line": "^1.2.43", + "@thi.ng/geom-clip-poly": "^1.0.68", + "@thi.ng/geom-isec": "^1.0.3", + "@thi.ng/geom-poly-utils": "^1.0.3", "@thi.ng/math": "^4.0.5", "@thi.ng/quad-edge": "^1.0.1", - "@thi.ng/vectors": "^6.1.0" + "@thi.ng/vectors": "^6.1.1" }, "files": [ "*.js", diff --git a/packages/geom/CHANGELOG.md b/packages/geom/CHANGELOG.md index 9ba20ddacd..71df2cbc04 100644 --- a/packages/geom/CHANGELOG.md +++ b/packages/geom/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.1.26](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom@2.1.25...@thi.ng/geom@2.1.26) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/geom + + + + + ## [2.1.25](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom@2.1.24...@thi.ng/geom@2.1.25) (2021-08-17) **Note:** Version bump only for package @thi.ng/geom diff --git a/packages/geom/package.json b/packages/geom/package.json index 2a0a2a0f53..3bdd9475ce 100644 --- a/packages/geom/package.json +++ b/packages/geom/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom", - "version": "2.1.25", + "version": "2.1.26", "description": "Functional, polymorphic API for 2D geometry types & SVG generation", "module": "./index.js", "main": "./lib/index.js", @@ -44,26 +44,26 @@ "@thi.ng/defmulti": "^1.3.16", "@thi.ng/equiv": "^1.0.45", "@thi.ng/errors": "^1.3.4", - "@thi.ng/geom-api": "^2.0.28", - "@thi.ng/geom-arc": "^1.0.2", - "@thi.ng/geom-clip-line": "^1.2.42", - "@thi.ng/geom-clip-poly": "^1.0.67", - "@thi.ng/geom-closest-point": "^1.0.2", - "@thi.ng/geom-hull": "^1.0.2", - "@thi.ng/geom-isec": "^1.0.2", - "@thi.ng/geom-poly-utils": "^1.0.2", - "@thi.ng/geom-resample": "^1.0.2", - "@thi.ng/geom-splines": "^1.0.2", - "@thi.ng/geom-subdiv-curve": "^1.0.2", - "@thi.ng/geom-tessellate": "^1.0.2", + "@thi.ng/geom-api": "^2.0.29", + "@thi.ng/geom-arc": "^1.0.3", + "@thi.ng/geom-clip-line": "^1.2.43", + "@thi.ng/geom-clip-poly": "^1.0.68", + "@thi.ng/geom-closest-point": "^1.0.3", + "@thi.ng/geom-hull": "^1.0.3", + "@thi.ng/geom-isec": "^1.0.3", + "@thi.ng/geom-poly-utils": "^1.0.3", + "@thi.ng/geom-resample": "^1.0.3", + "@thi.ng/geom-splines": "^1.0.3", + "@thi.ng/geom-subdiv-curve": "^1.0.3", + "@thi.ng/geom-tessellate": "^1.0.3", "@thi.ng/hiccup": "^3.6.21", - "@thi.ng/hiccup-svg": "^3.7.31", + "@thi.ng/hiccup-svg": "^3.7.32", "@thi.ng/math": "^4.0.5", - "@thi.ng/matrices": "^1.0.2", + "@thi.ng/matrices": "^1.0.3", "@thi.ng/random": "^2.4.7", "@thi.ng/strings": "^2.1.6", - "@thi.ng/transducers": "^7.8.4", - "@thi.ng/vectors": "^6.1.0" + "@thi.ng/transducers": "^7.9.0", + "@thi.ng/vectors": "^6.1.1" }, "files": [ "*.js", diff --git a/packages/gp/CHANGELOG.md b/packages/gp/CHANGELOG.md index 2d70abec40..0a89fe8aa8 100644 --- a/packages/gp/CHANGELOG.md +++ b/packages/gp/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.2.28](https://github.com/thi-ng/umbrella/compare/@thi.ng/gp@0.2.27...@thi.ng/gp@0.2.28) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/gp + + + + + ## [0.2.27](https://github.com/thi-ng/umbrella/compare/@thi.ng/gp@0.2.26...@thi.ng/gp@0.2.27) (2021-08-17) **Note:** Version bump only for package @thi.ng/gp diff --git a/packages/gp/package.json b/packages/gp/package.json index 9d0ea9506a..b7ab196d84 100644 --- a/packages/gp/package.json +++ b/packages/gp/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/gp", - "version": "0.2.27", + "version": "0.2.28", "description": "Genetic programming helpers & strategies (tree based & multi-expression programming)", "module": "./index.js", "main": "./lib/index.js", @@ -41,7 +41,7 @@ "@thi.ng/api": "^7.1.9", "@thi.ng/math": "^4.0.5", "@thi.ng/random": "^2.4.7", - "@thi.ng/transducers": "^7.8.4", + "@thi.ng/transducers": "^7.9.0", "@thi.ng/zipper": "^1.0.2" }, "files": [ diff --git a/packages/grid-iterators/CHANGELOG.md b/packages/grid-iterators/CHANGELOG.md index 9e171e28de..c78f867a59 100644 --- a/packages/grid-iterators/CHANGELOG.md +++ b/packages/grid-iterators/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/grid-iterators@1.0.2...@thi.ng/grid-iterators@1.0.3) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/grid-iterators + + + + + ## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/grid-iterators@1.0.1...@thi.ng/grid-iterators@1.0.2) (2021-08-17) **Note:** Version bump only for package @thi.ng/grid-iterators diff --git a/packages/grid-iterators/package.json b/packages/grid-iterators/package.json index f6874b2c9e..e5b07ed90f 100644 --- a/packages/grid-iterators/package.json +++ b/packages/grid-iterators/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/grid-iterators", - "version": "1.0.2", + "version": "1.0.3", "description": "2D grid iterators w/ multiple orderings", "module": "./index.js", "main": "./lib/index.js", @@ -43,7 +43,7 @@ "@thi.ng/binary": "^2.2.10", "@thi.ng/morton": "^2.0.46", "@thi.ng/random": "^2.4.7", - "@thi.ng/transducers": "^7.8.4" + "@thi.ng/transducers": "^7.9.0" }, "files": [ "*.js", diff --git a/packages/hdiff/CHANGELOG.md b/packages/hdiff/CHANGELOG.md index d8cda523b4..4dad9eb790 100644 --- a/packages/hdiff/CHANGELOG.md +++ b/packages/hdiff/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.51](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdiff@0.1.50...@thi.ng/hdiff@0.1.51) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/hdiff + + + + + ## [0.1.50](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdiff@0.1.49...@thi.ng/hdiff@0.1.50) (2021-08-17) **Note:** Version bump only for package @thi.ng/hdiff diff --git a/packages/hdiff/package.json b/packages/hdiff/package.json index aea969e7f5..986bd13ffd 100644 --- a/packages/hdiff/package.json +++ b/packages/hdiff/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hdiff", - "version": "0.1.50", + "version": "0.1.51", "description": "String diffing w/ hiccup output for further processing, e.g. with @thi.ng/hdom, @thi.ng/hiccup. Includes CLI util to generate HTML, with theme support and code folding", "module": "./index.js", "main": "./lib/index.js", @@ -43,7 +43,7 @@ "@thi.ng/api": "^7.1.9", "@thi.ng/diff": "^4.0.12", "@thi.ng/hiccup": "^3.6.21", - "@thi.ng/hiccup-css": "^1.1.70", + "@thi.ng/hiccup-css": "^1.1.71", "@thi.ng/strings": "^2.1.6" }, "files": [ diff --git a/packages/hdom-canvas/CHANGELOG.md b/packages/hdom-canvas/CHANGELOG.md index f4318b7e70..128fabd5e9 100644 --- a/packages/hdom-canvas/CHANGELOG.md +++ b/packages/hdom-canvas/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.0.58](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-canvas@3.0.57...@thi.ng/hdom-canvas@3.0.58) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/hdom-canvas + + + + + ## [3.0.57](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-canvas@3.0.56...@thi.ng/hdom-canvas@3.0.57) (2021-08-17) **Note:** Version bump only for package @thi.ng/hdom-canvas diff --git a/packages/hdom-canvas/package.json b/packages/hdom-canvas/package.json index 0918778fce..49ed58fa90 100644 --- a/packages/hdom-canvas/package.json +++ b/packages/hdom-canvas/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hdom-canvas", - "version": "3.0.57", + "version": "3.0.58", "description": "@thi.ng/hdom component wrapper for declarative canvas scenegraphs", "module": "./index.js", "main": "./lib/index.js", @@ -42,7 +42,7 @@ "@thi.ng/checks": "^2.9.10", "@thi.ng/diff": "^4.0.12", "@thi.ng/hdom": "^8.2.31", - "@thi.ng/hiccup-canvas": "^1.2.12" + "@thi.ng/hiccup-canvas": "^1.2.13" }, "files": [ "*.js", diff --git a/packages/hdom-components/CHANGELOG.md b/packages/hdom-components/CHANGELOG.md index 2601d3e24d..c827552b84 100644 --- a/packages/hdom-components/CHANGELOG.md +++ b/packages/hdom-components/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.46](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-components@4.0.45...@thi.ng/hdom-components@4.0.46) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/hdom-components + + + + + ## [4.0.45](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-components@4.0.44...@thi.ng/hdom-components@4.0.45) (2021-08-17) **Note:** Version bump only for package @thi.ng/hdom-components diff --git a/packages/hdom-components/package.json b/packages/hdom-components/package.json index 3ba35b16e2..65dd9b68f4 100644 --- a/packages/hdom-components/package.json +++ b/packages/hdom-components/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hdom-components", - "version": "4.0.45", + "version": "4.0.46", "description": "Raw, skinnable UI & SVG components for @thi.ng/hdom", "module": "./index.js", "main": "./lib/index.js", @@ -42,8 +42,8 @@ "@thi.ng/api": "^7.1.9", "@thi.ng/checks": "^2.9.10", "@thi.ng/math": "^4.0.5", - "@thi.ng/transducers": "^7.8.4", - "@thi.ng/transducers-stats": "^1.1.71" + "@thi.ng/transducers": "^7.9.0", + "@thi.ng/transducers-stats": "^1.1.72" }, "files": [ "*.js", diff --git a/packages/hiccup-canvas/CHANGELOG.md b/packages/hiccup-canvas/CHANGELOG.md index 51b68a2319..d57d24cec7 100644 --- a/packages/hiccup-canvas/CHANGELOG.md +++ b/packages/hiccup-canvas/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.2.13](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-canvas@1.2.12...@thi.ng/hiccup-canvas@1.2.13) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/hiccup-canvas + + + + + ## [1.2.12](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-canvas@1.2.11...@thi.ng/hiccup-canvas@1.2.12) (2021-08-17) **Note:** Version bump only for package @thi.ng/hiccup-canvas diff --git a/packages/hiccup-canvas/package.json b/packages/hiccup-canvas/package.json index c723ff5a6a..023db22e18 100644 --- a/packages/hiccup-canvas/package.json +++ b/packages/hiccup-canvas/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hiccup-canvas", - "version": "1.2.12", + "version": "1.2.13", "description": "Hiccup shape tree renderer for vanilla Canvas 2D contexts", "module": "./index.js", "main": "./lib/index.js", @@ -42,10 +42,10 @@ "dependencies": { "@thi.ng/api": "^7.1.9", "@thi.ng/checks": "^2.9.10", - "@thi.ng/color": "^3.2.4", + "@thi.ng/color": "^3.2.5", "@thi.ng/math": "^4.0.5", - "@thi.ng/pixel": "^1.0.2", - "@thi.ng/vectors": "^6.1.0" + "@thi.ng/pixel": "^1.0.3", + "@thi.ng/vectors": "^6.1.1" }, "files": [ "*.js", diff --git a/packages/hiccup-css/CHANGELOG.md b/packages/hiccup-css/CHANGELOG.md index 0dda0c0660..9ed59e44d8 100644 --- a/packages/hiccup-css/CHANGELOG.md +++ b/packages/hiccup-css/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.1.71](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-css@1.1.70...@thi.ng/hiccup-css@1.1.71) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/hiccup-css + + + + + ## [1.1.70](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-css@1.1.69...@thi.ng/hiccup-css@1.1.70) (2021-08-17) **Note:** Version bump only for package @thi.ng/hiccup-css diff --git a/packages/hiccup-css/package.json b/packages/hiccup-css/package.json index ea9257686c..583c43b80e 100644 --- a/packages/hiccup-css/package.json +++ b/packages/hiccup-css/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hiccup-css", - "version": "1.1.70", + "version": "1.1.71", "description": "CSS from nested JS data structures", "module": "./index.js", "main": "./lib/index.js", @@ -41,7 +41,7 @@ "@thi.ng/api": "^7.1.9", "@thi.ng/checks": "^2.9.10", "@thi.ng/errors": "^1.3.4", - "@thi.ng/transducers": "^7.8.4" + "@thi.ng/transducers": "^7.9.0" }, "files": [ "*.js", diff --git a/packages/hiccup-markdown/CHANGELOG.md b/packages/hiccup-markdown/CHANGELOG.md index bd8a1de9c4..b9d673fff9 100644 --- a/packages/hiccup-markdown/CHANGELOG.md +++ b/packages/hiccup-markdown/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.3.31](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-markdown@1.3.30...@thi.ng/hiccup-markdown@1.3.31) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/hiccup-markdown + + + + + ## [1.3.30](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-markdown@1.3.29...@thi.ng/hiccup-markdown@1.3.30) (2021-08-17) **Note:** Version bump only for package @thi.ng/hiccup-markdown diff --git a/packages/hiccup-markdown/package.json b/packages/hiccup-markdown/package.json index 5ab608ae76..a3c7d9a3c7 100644 --- a/packages/hiccup-markdown/package.json +++ b/packages/hiccup-markdown/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hiccup-markdown", - "version": "1.3.30", + "version": "1.3.31", "description": "Markdown parser & serializer from/to Hiccup format", "module": "./index.js", "main": "./lib/index.js", @@ -43,11 +43,11 @@ "@thi.ng/checks": "^2.9.10", "@thi.ng/defmulti": "^1.3.16", "@thi.ng/errors": "^1.3.4", - "@thi.ng/fsm": "^2.4.60", + "@thi.ng/fsm": "^2.4.61", "@thi.ng/hiccup": "^3.6.21", "@thi.ng/strings": "^2.1.6", - "@thi.ng/text-canvas": "^1.1.1", - "@thi.ng/transducers": "^7.8.4" + "@thi.ng/text-canvas": "^1.1.2", + "@thi.ng/transducers": "^7.9.0" }, "files": [ "*.js", diff --git a/packages/hiccup-svg/CHANGELOG.md b/packages/hiccup-svg/CHANGELOG.md index 90e8216996..5895ac919f 100644 --- a/packages/hiccup-svg/CHANGELOG.md +++ b/packages/hiccup-svg/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.7.32](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-svg@3.7.31...@thi.ng/hiccup-svg@3.7.32) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/hiccup-svg + + + + + ## [3.7.31](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-svg@3.7.30...@thi.ng/hiccup-svg@3.7.31) (2021-08-17) **Note:** Version bump only for package @thi.ng/hiccup-svg diff --git a/packages/hiccup-svg/package.json b/packages/hiccup-svg/package.json index bdd6c7e4dc..d62da72c9d 100644 --- a/packages/hiccup-svg/package.json +++ b/packages/hiccup-svg/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hiccup-svg", - "version": "3.7.31", + "version": "3.7.32", "description": "SVG element functions for @thi.ng/hiccup & @thi.ng/hdom", "module": "./index.js", "main": "./lib/index.js", @@ -39,7 +39,7 @@ }, "dependencies": { "@thi.ng/checks": "^2.9.10", - "@thi.ng/color": "^3.2.4", + "@thi.ng/color": "^3.2.5", "@thi.ng/prefixes": "^1.0.2" }, "files": [ diff --git a/packages/iges/CHANGELOG.md b/packages/iges/CHANGELOG.md index 4c188b2843..a0827f67e1 100644 --- a/packages/iges/CHANGELOG.md +++ b/packages/iges/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.1.85](https://github.com/thi-ng/umbrella/compare/@thi.ng/iges@1.1.84...@thi.ng/iges@1.1.85) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/iges + + + + + ## [1.1.84](https://github.com/thi-ng/umbrella/compare/@thi.ng/iges@1.1.83...@thi.ng/iges@1.1.84) (2021-08-17) **Note:** Version bump only for package @thi.ng/iges diff --git a/packages/iges/package.json b/packages/iges/package.json index 3e6b011de0..e5172c7f35 100644 --- a/packages/iges/package.json +++ b/packages/iges/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/iges", - "version": "1.1.84", + "version": "1.1.85", "description": "IGES 5.3 serializer for (currently only) polygonal geometry, both open & closed", "module": "./index.js", "main": "./lib/index.js", @@ -42,8 +42,8 @@ "@thi.ng/checks": "^2.9.10", "@thi.ng/defmulti": "^1.3.16", "@thi.ng/strings": "^2.1.6", - "@thi.ng/transducers": "^7.8.4", - "@thi.ng/vectors": "^6.1.0" + "@thi.ng/transducers": "^7.9.0", + "@thi.ng/vectors": "^6.1.1" }, "files": [ "*.js", diff --git a/packages/imgui/CHANGELOG.md b/packages/imgui/CHANGELOG.md index 1d60236883..5dde8aa4d4 100644 --- a/packages/imgui/CHANGELOG.md +++ b/packages/imgui/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/imgui@1.0.3...@thi.ng/imgui@1.0.4) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/imgui + + + + + ## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/imgui@1.0.2...@thi.ng/imgui@1.0.3) (2021-08-18) diff --git a/packages/imgui/package.json b/packages/imgui/package.json index fb5fe5a303..96a88a58a1 100644 --- a/packages/imgui/package.json +++ b/packages/imgui/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/imgui", - "version": "1.0.3", + "version": "1.0.4", "description": "Immediate mode GUI with flexible state handling & data only shape output", "module": "./index.js", "main": "./lib/index.js", @@ -40,14 +40,14 @@ "dependencies": { "@thi.ng/api": "^7.1.9", "@thi.ng/checks": "^2.9.10", - "@thi.ng/geom": "^2.1.25", - "@thi.ng/geom-api": "^2.0.28", - "@thi.ng/geom-isec": "^1.0.2", - "@thi.ng/geom-tessellate": "^1.0.2", + "@thi.ng/geom": "^2.1.26", + "@thi.ng/geom-api": "^2.0.29", + "@thi.ng/geom-isec": "^1.0.3", + "@thi.ng/geom-tessellate": "^1.0.3", "@thi.ng/layout": "^1.0.1", "@thi.ng/math": "^4.0.5", - "@thi.ng/transducers": "^7.8.4", - "@thi.ng/vectors": "^6.1.0" + "@thi.ng/transducers": "^7.9.0", + "@thi.ng/vectors": "^6.1.1" }, "files": [ "*.js", diff --git a/packages/iterators/CHANGELOG.md b/packages/iterators/CHANGELOG.md index 670dc0b0c2..d80d502adb 100644 --- a/packages/iterators/CHANGELOG.md +++ b/packages/iterators/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.1.72](https://github.com/thi-ng/umbrella/compare/@thi.ng/iterators@5.1.71...@thi.ng/iterators@5.1.72) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/iterators + + + + + ## [5.1.71](https://github.com/thi-ng/umbrella/compare/@thi.ng/iterators@5.1.70...@thi.ng/iterators@5.1.71) (2021-08-17) **Note:** Version bump only for package @thi.ng/iterators diff --git a/packages/iterators/package.json b/packages/iterators/package.json index 0c403dc0ad..81b6b62693 100644 --- a/packages/iterators/package.json +++ b/packages/iterators/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/iterators", - "version": "5.1.71", + "version": "5.1.72", "description": "Clojure inspired, composable ES6 iterators & generators", "module": "./index.js", "main": "./lib/index.js", @@ -39,7 +39,7 @@ }, "dependencies": { "@thi.ng/api": "^7.1.9", - "@thi.ng/dcons": "^2.3.31", + "@thi.ng/dcons": "^2.3.32", "@thi.ng/errors": "^1.3.4" }, "files": [ diff --git a/packages/k-means/CHANGELOG.md b/packages/k-means/CHANGELOG.md index 8dc19de925..a754b7a665 100644 --- a/packages/k-means/CHANGELOG.md +++ b/packages/k-means/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.3.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/k-means@0.3.3...@thi.ng/k-means@0.3.4) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/k-means + + + + + ## [0.3.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/k-means@0.3.2...@thi.ng/k-means@0.3.3) (2021-08-17) **Note:** Version bump only for package @thi.ng/k-means diff --git a/packages/k-means/package.json b/packages/k-means/package.json index ddd96aa570..a2f0421d50 100644 --- a/packages/k-means/package.json +++ b/packages/k-means/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/k-means", - "version": "0.3.3", + "version": "0.3.4", "description": "Configurable k-means & k-medians (with k-means++ initialization) for n-D vectors", "module": "./index.js", "main": "./lib/index.js", @@ -39,9 +39,9 @@ }, "dependencies": { "@thi.ng/api": "^7.1.9", - "@thi.ng/distance": "^1.0.4", + "@thi.ng/distance": "^1.0.5", "@thi.ng/random": "^2.4.7", - "@thi.ng/vectors": "^6.1.0" + "@thi.ng/vectors": "^6.1.1" }, "files": [ "*.js", diff --git a/packages/leb128/CHANGELOG.md b/packages/leb128/CHANGELOG.md index e4ab8c8094..3227f11e12 100644 --- a/packages/leb128/CHANGELOG.md +++ b/packages/leb128/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.66](https://github.com/thi-ng/umbrella/compare/@thi.ng/leb128@1.0.65...@thi.ng/leb128@1.0.66) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/leb128 + + + + + ## [1.0.65](https://github.com/thi-ng/umbrella/compare/@thi.ng/leb128@1.0.64...@thi.ng/leb128@1.0.65) (2021-08-17) **Note:** Version bump only for package @thi.ng/leb128 diff --git a/packages/leb128/package.json b/packages/leb128/package.json index ae38422ff9..d9de839d00 100644 --- a/packages/leb128/package.json +++ b/packages/leb128/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/leb128", - "version": "1.0.65", + "version": "1.0.66", "description": "WASM based LEB128 encoder / decoder (signed & unsigned)", "module": "./index.js", "main": "./lib/index.js", @@ -41,7 +41,7 @@ "dependencies": { "@thi.ng/checks": "^2.9.10", "@thi.ng/errors": "^1.3.4", - "@thi.ng/transducers-binary": "^1.0.2" + "@thi.ng/transducers-binary": "^1.0.3" }, "files": [ "*.js", diff --git a/packages/lsys/CHANGELOG.md b/packages/lsys/CHANGELOG.md index bcaaac08eb..ca4785443a 100644 --- a/packages/lsys/CHANGELOG.md +++ b/packages/lsys/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/lsys@1.0.2...@thi.ng/lsys@1.0.3) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/lsys + + + + + ## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/lsys@1.0.1...@thi.ng/lsys@1.0.2) (2021-08-17) **Note:** Version bump only for package @thi.ng/lsys diff --git a/packages/lsys/package.json b/packages/lsys/package.json index 1fd7e7b17f..27f940a8c4 100644 --- a/packages/lsys/package.json +++ b/packages/lsys/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/lsys", - "version": "1.0.2", + "version": "1.0.3", "description": "Functional, extensible L-System architecture w/ support for probabilistic rules", "module": "./index.js", "main": "./lib/index.js", @@ -43,8 +43,8 @@ "@thi.ng/errors": "^1.3.4", "@thi.ng/math": "^4.0.5", "@thi.ng/random": "^2.4.7", - "@thi.ng/transducers": "^7.8.4", - "@thi.ng/vectors": "^6.1.0" + "@thi.ng/transducers": "^7.9.0", + "@thi.ng/vectors": "^6.1.1" }, "files": [ "*.js", diff --git a/packages/matrices/CHANGELOG.md b/packages/matrices/CHANGELOG.md index 4fd4882535..a06694bd15 100644 --- a/packages/matrices/CHANGELOG.md +++ b/packages/matrices/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/matrices@1.0.2...@thi.ng/matrices@1.0.3) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/matrices + + + + + ## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/matrices@1.0.1...@thi.ng/matrices@1.0.2) (2021-08-17) **Note:** Version bump only for package @thi.ng/matrices diff --git a/packages/matrices/package.json b/packages/matrices/package.json index fc4ab12165..8a50a97643 100644 --- a/packages/matrices/package.json +++ b/packages/matrices/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/matrices", - "version": "1.0.2", + "version": "1.0.3", "description": "Matrix & quaternion operations for 2D/3D geometry processing", "module": "./index.js", "main": "./lib/index.js", @@ -41,7 +41,7 @@ "@thi.ng/api": "^7.1.9", "@thi.ng/checks": "^2.9.10", "@thi.ng/math": "^4.0.5", - "@thi.ng/vectors": "^6.1.0" + "@thi.ng/vectors": "^6.1.1" }, "files": [ "*.js", diff --git a/packages/pixel-io-netpbm/CHANGELOG.md b/packages/pixel-io-netpbm/CHANGELOG.md index 0ff9f5b078..c197a9b0b6 100644 --- a/packages/pixel-io-netpbm/CHANGELOG.md +++ b/packages/pixel-io-netpbm/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/pixel-io-netpbm@1.0.4...@thi.ng/pixel-io-netpbm@1.0.5) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/pixel-io-netpbm + + + + + ## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/pixel-io-netpbm@1.0.3...@thi.ng/pixel-io-netpbm@1.0.4) (2021-08-17) **Note:** Version bump only for package @thi.ng/pixel-io-netpbm diff --git a/packages/pixel-io-netpbm/package.json b/packages/pixel-io-netpbm/package.json index 93ed814551..ed4816a661 100644 --- a/packages/pixel-io-netpbm/package.json +++ b/packages/pixel-io-netpbm/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/pixel-io-netpbm", - "version": "1.0.4", + "version": "1.0.5", "description": "Multi-format NetPBM reader & writer support for @thi.ng/pixel", "module": "./index.js", "main": "./lib/index.js", @@ -40,7 +40,7 @@ "dependencies": { "@thi.ng/api": "^7.1.9", "@thi.ng/errors": "^1.3.4", - "@thi.ng/pixel": "^1.0.2" + "@thi.ng/pixel": "^1.0.3" }, "files": [ "*.js", diff --git a/packages/pixel/CHANGELOG.md b/packages/pixel/CHANGELOG.md index 702ff5b463..18c9565275 100644 --- a/packages/pixel/CHANGELOG.md +++ b/packages/pixel/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/pixel@1.0.2...@thi.ng/pixel@1.0.3) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/pixel + + + + + ## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/pixel@1.0.1...@thi.ng/pixel@1.0.2) (2021-08-17) **Note:** Version bump only for package @thi.ng/pixel diff --git a/packages/pixel/package.json b/packages/pixel/package.json index f39e4892a9..e54be7d881 100644 --- a/packages/pixel/package.json +++ b/packages/pixel/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/pixel", - "version": "1.0.2", + "version": "1.0.3", "description": "Typedarray integer & float pixel buffers w/ customizable formats, blitting, dithering, convolution", "module": "./index.js", "main": "./lib/index.js", @@ -41,7 +41,7 @@ "@thi.ng/api": "^7.1.9", "@thi.ng/binary": "^2.2.10", "@thi.ng/checks": "^2.9.10", - "@thi.ng/k-means": "^0.3.3", + "@thi.ng/k-means": "^0.3.4", "@thi.ng/math": "^4.0.5", "@thi.ng/porter-duff": "^1.0.1" }, diff --git a/packages/pointfree-lang/CHANGELOG.md b/packages/pointfree-lang/CHANGELOG.md index bcd950c62b..f26d292367 100644 --- a/packages/pointfree-lang/CHANGELOG.md +++ b/packages/pointfree-lang/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.4.37](https://github.com/thi-ng/umbrella/compare/@thi.ng/pointfree-lang@1.4.36...@thi.ng/pointfree-lang@1.4.37) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/pointfree-lang + + + + + ## [1.4.36](https://github.com/thi-ng/umbrella/compare/@thi.ng/pointfree-lang@1.4.35...@thi.ng/pointfree-lang@1.4.36) (2021-08-17) **Note:** Version bump only for package @thi.ng/pointfree-lang diff --git a/packages/pointfree-lang/package.json b/packages/pointfree-lang/package.json index 053c026e5b..2a6eed06f2 100644 --- a/packages/pointfree-lang/package.json +++ b/packages/pointfree-lang/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/pointfree-lang", - "version": "1.4.36", + "version": "1.4.37", "description": "Forth style syntax layer/compiler & CLI for the @thi.ng/pointfree DSL", "module": "./index.js", "main": "./lib/index.js", @@ -47,7 +47,7 @@ }, "dependencies": { "@thi.ng/api": "^7.1.9", - "@thi.ng/args": "^1.0.4", + "@thi.ng/args": "^1.1.0", "@thi.ng/bench": "^2.1.5", "@thi.ng/errors": "^1.3.4", "@thi.ng/pointfree": "^2.0.35" diff --git a/packages/poisson/CHANGELOG.md b/packages/poisson/CHANGELOG.md index e5679d7c5b..64105ce0d4 100644 --- a/packages/poisson/CHANGELOG.md +++ b/packages/poisson/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.1.51](https://github.com/thi-ng/umbrella/compare/@thi.ng/poisson@1.1.50...@thi.ng/poisson@1.1.51) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/poisson + + + + + ## [1.1.50](https://github.com/thi-ng/umbrella/compare/@thi.ng/poisson@1.1.49...@thi.ng/poisson@1.1.50) (2021-08-17) **Note:** Version bump only for package @thi.ng/poisson diff --git a/packages/poisson/package.json b/packages/poisson/package.json index da0ec41da4..5896a8ef37 100644 --- a/packages/poisson/package.json +++ b/packages/poisson/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/poisson", - "version": "1.1.50", + "version": "1.1.51", "description": "nD Stratified grid and Poisson-disc sampling w/ support for spatial density functions and custom PRNGs", "module": "./index.js", "main": "./lib/index.js", @@ -40,10 +40,10 @@ "dependencies": { "@thi.ng/api": "^7.1.9", "@thi.ng/checks": "^2.9.10", - "@thi.ng/geom-api": "^2.0.28", + "@thi.ng/geom-api": "^2.0.29", "@thi.ng/random": "^2.4.7", - "@thi.ng/transducers": "^7.8.4", - "@thi.ng/vectors": "^6.1.0" + "@thi.ng/transducers": "^7.9.0", + "@thi.ng/vectors": "^6.1.1" }, "files": [ "*.js", diff --git a/packages/ramp/CHANGELOG.md b/packages/ramp/CHANGELOG.md index 230c16d31a..ac322a0c24 100644 --- a/packages/ramp/CHANGELOG.md +++ b/packages/ramp/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/ramp@1.0.4...@thi.ng/ramp@1.0.5) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/ramp + + + + + ## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/ramp@1.0.3...@thi.ng/ramp@1.0.4) (2021-08-17) **Note:** Version bump only for package @thi.ng/ramp diff --git a/packages/ramp/package.json b/packages/ramp/package.json index 21cd38b229..cf4ca5bb36 100644 --- a/packages/ramp/package.json +++ b/packages/ramp/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/ramp", - "version": "1.0.4", + "version": "1.0.5", "description": "Parametric interpolated 1D lookup tables for remapping values", "module": "./index.js", "main": "./lib/index.js", @@ -41,8 +41,8 @@ "@thi.ng/arrays": "^1.0.2", "@thi.ng/compare": "^1.3.33", "@thi.ng/math": "^4.0.5", - "@thi.ng/transducers": "^7.8.4", - "@thi.ng/vectors": "^6.1.0" + "@thi.ng/transducers": "^7.9.0", + "@thi.ng/vectors": "^6.1.1" }, "files": [ "*.js", diff --git a/packages/range-coder/CHANGELOG.md b/packages/range-coder/CHANGELOG.md index 9a355b6cc1..95753a2804 100644 --- a/packages/range-coder/CHANGELOG.md +++ b/packages/range-coder/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.91](https://github.com/thi-ng/umbrella/compare/@thi.ng/range-coder@1.0.90...@thi.ng/range-coder@1.0.91) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/range-coder + + + + + ## [1.0.90](https://github.com/thi-ng/umbrella/compare/@thi.ng/range-coder@1.0.89...@thi.ng/range-coder@1.0.90) (2021-08-17) **Note:** Version bump only for package @thi.ng/range-coder diff --git a/packages/range-coder/package.json b/packages/range-coder/package.json index 1c6d327657..9fb8171ac3 100644 --- a/packages/range-coder/package.json +++ b/packages/range-coder/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/range-coder", - "version": "1.0.90", + "version": "1.0.91", "description": "Binary data range encoder / decoder", "module": "./index.js", "main": "./lib/index.js", @@ -38,7 +38,7 @@ "pub": "yarn build:release && yarn publish --access public" }, "devDependencies": { - "@thi.ng/transducers": "^7.8.4" + "@thi.ng/transducers": "^7.9.0" }, "dependencies": { "@thi.ng/bitstream": "^1.1.43" diff --git a/packages/rdom-canvas/CHANGELOG.md b/packages/rdom-canvas/CHANGELOG.md index 428b73d762..cb6424736c 100644 --- a/packages/rdom-canvas/CHANGELOG.md +++ b/packages/rdom-canvas/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.57](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom-canvas@0.1.56...@thi.ng/rdom-canvas@0.1.57) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/rdom-canvas + + + + + ## [0.1.56](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom-canvas@0.1.55...@thi.ng/rdom-canvas@0.1.56) (2021-08-17) **Note:** Version bump only for package @thi.ng/rdom-canvas diff --git a/packages/rdom-canvas/package.json b/packages/rdom-canvas/package.json index d249390c9f..fbf3e79572 100644 --- a/packages/rdom-canvas/package.json +++ b/packages/rdom-canvas/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rdom-canvas", - "version": "0.1.56", + "version": "0.1.57", "description": "@thi.ng/rdom component wrapper for @thi.ng/hiccup-canvas and declarative canvas drawing", "module": "./index.js", "main": "./lib/index.js", @@ -40,10 +40,10 @@ "@thi.ng/adapt-dpi": "^1.0.23", "@thi.ng/api": "^7.1.9", "@thi.ng/checks": "^2.9.10", - "@thi.ng/hiccup-canvas": "^1.2.12", - "@thi.ng/rdom": "^0.6.5", - "@thi.ng/rstream": "^6.0.17", - "@thi.ng/transducers": "^7.8.4" + "@thi.ng/hiccup-canvas": "^1.2.13", + "@thi.ng/rdom": "^0.6.6", + "@thi.ng/rstream": "^6.0.18", + "@thi.ng/transducers": "^7.9.0" }, "files": [ "*.js", diff --git a/packages/rdom-components/CHANGELOG.md b/packages/rdom-components/CHANGELOG.md index 1dce8fbcd8..ba70aa3ad1 100644 --- a/packages/rdom-components/CHANGELOG.md +++ b/packages/rdom-components/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.2.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom-components@0.2.5...@thi.ng/rdom-components@0.2.6) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/rdom-components + + + + + ## [0.2.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom-components@0.2.4...@thi.ng/rdom-components@0.2.5) (2021-08-17) **Note:** Version bump only for package @thi.ng/rdom-components diff --git a/packages/rdom-components/package.json b/packages/rdom-components/package.json index 84b5e3603c..5fb945fba6 100644 --- a/packages/rdom-components/package.json +++ b/packages/rdom-components/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rdom-components", - "version": "0.2.5", + "version": "0.2.6", "description": "Collection of unstyled, customizable components for @thi.ng/rdom", "module": "./index.js", "main": "./lib/index.js", @@ -38,12 +38,12 @@ }, "dependencies": { "@thi.ng/api": "^7.1.9", - "@thi.ng/associative": "^5.2.12", + "@thi.ng/associative": "^5.2.13", "@thi.ng/hiccup-html": "^1.1.0", - "@thi.ng/rdom": "^0.6.5", - "@thi.ng/rstream": "^6.0.17", + "@thi.ng/rdom": "^0.6.6", + "@thi.ng/rstream": "^6.0.18", "@thi.ng/strings": "^2.1.6", - "@thi.ng/transducers": "^7.8.4" + "@thi.ng/transducers": "^7.9.0" }, "files": [ "*.js", diff --git a/packages/rdom/CHANGELOG.md b/packages/rdom/CHANGELOG.md index 5a4d196837..425c86965c 100644 --- a/packages/rdom/CHANGELOG.md +++ b/packages/rdom/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.6.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom@0.6.5...@thi.ng/rdom@0.6.6) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/rdom + + + + + ## [0.6.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom@0.6.4...@thi.ng/rdom@0.6.5) (2021-08-17) **Note:** Version bump only for package @thi.ng/rdom diff --git a/packages/rdom/package.json b/packages/rdom/package.json index 89b3c166cc..c1053689c8 100644 --- a/packages/rdom/package.json +++ b/packages/rdom/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rdom", - "version": "0.6.5", + "version": "0.6.6", "description": "Lightweight, reactive, VDOM-less UI/DOM components with async lifecycle and @thi.ng/hiccup compatible", "module": "./index.js", "main": "./lib/index.js", @@ -44,7 +44,7 @@ "@thi.ng/hiccup": "^3.6.21", "@thi.ng/paths": "^4.2.13", "@thi.ng/prefixes": "^1.0.2", - "@thi.ng/rstream": "^6.0.17", + "@thi.ng/rstream": "^6.0.18", "@thi.ng/strings": "^2.1.6" }, "files": [ diff --git a/packages/rstream-csp/CHANGELOG.md b/packages/rstream-csp/CHANGELOG.md index 9394270f58..f0302c38b8 100644 --- a/packages/rstream-csp/CHANGELOG.md +++ b/packages/rstream-csp/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.0.77](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-csp@2.0.76...@thi.ng/rstream-csp@2.0.77) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/rstream-csp + + + + + ## [2.0.76](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-csp@2.0.75...@thi.ng/rstream-csp@2.0.76) (2021-08-17) **Note:** Version bump only for package @thi.ng/rstream-csp diff --git a/packages/rstream-csp/package.json b/packages/rstream-csp/package.json index 80cc0ba18b..cd7456a4f3 100644 --- a/packages/rstream-csp/package.json +++ b/packages/rstream-csp/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-csp", - "version": "2.0.76", + "version": "2.0.77", "description": "@thi.ng/csp bridge module for @thi.ng/rstream", "module": "./index.js", "main": "./lib/index.js", @@ -38,8 +38,8 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/csp": "^1.1.71", - "@thi.ng/rstream": "^6.0.17" + "@thi.ng/csp": "^1.1.72", + "@thi.ng/rstream": "^6.0.18" }, "files": [ "*.js", diff --git a/packages/rstream-dot/CHANGELOG.md b/packages/rstream-dot/CHANGELOG.md index ce5e611564..0e0b74beaa 100644 --- a/packages/rstream-dot/CHANGELOG.md +++ b/packages/rstream-dot/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.2.26](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-dot@1.2.25...@thi.ng/rstream-dot@1.2.26) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/rstream-dot + + + + + ## [1.2.25](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-dot@1.2.24...@thi.ng/rstream-dot@1.2.25) (2021-08-17) **Note:** Version bump only for package @thi.ng/rstream-dot diff --git a/packages/rstream-dot/package.json b/packages/rstream-dot/package.json index 7a4fa83220..8a5bde0d05 100644 --- a/packages/rstream-dot/package.json +++ b/packages/rstream-dot/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-dot", - "version": "1.2.25", + "version": "1.2.26", "description": "Graphviz DOT conversion of @thi.ng/rstream dataflow graph topologies", "module": "./index.js", "main": "./lib/index.js", @@ -38,9 +38,9 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/rstream": "^6.0.17", + "@thi.ng/rstream": "^6.0.18", "@thi.ng/strings": "^2.1.6", - "@thi.ng/transducers": "^7.8.4" + "@thi.ng/transducers": "^7.9.0" }, "files": [ "*.js", diff --git a/packages/rstream-gestures/CHANGELOG.md b/packages/rstream-gestures/CHANGELOG.md index 133f6d130b..9284fe4592 100644 --- a/packages/rstream-gestures/CHANGELOG.md +++ b/packages/rstream-gestures/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.0.31](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-gestures@3.0.30...@thi.ng/rstream-gestures@3.0.31) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/rstream-gestures + + + + + ## [3.0.30](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-gestures@3.0.29...@thi.ng/rstream-gestures@3.0.30) (2021-08-17) **Note:** Version bump only for package @thi.ng/rstream-gestures diff --git a/packages/rstream-gestures/package.json b/packages/rstream-gestures/package.json index 4f9b58e9d7..e04ed52b9c 100644 --- a/packages/rstream-gestures/package.json +++ b/packages/rstream-gestures/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-gestures", - "version": "3.0.30", + "version": "3.0.31", "description": "Unified mouse, mouse wheel & multi-touch event stream abstraction", "module": "./index.js", "main": "./lib/index.js", @@ -41,8 +41,8 @@ "@thi.ng/api": "^7.1.9", "@thi.ng/checks": "^2.9.10", "@thi.ng/math": "^4.0.5", - "@thi.ng/rstream": "^6.0.17", - "@thi.ng/transducers": "^7.8.4" + "@thi.ng/rstream": "^6.0.18", + "@thi.ng/transducers": "^7.9.0" }, "files": [ "*.js", diff --git a/packages/rstream-graph/CHANGELOG.md b/packages/rstream-graph/CHANGELOG.md index aa2a0e1d82..7500233dfa 100644 --- a/packages/rstream-graph/CHANGELOG.md +++ b/packages/rstream-graph/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.2.78](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-graph@3.2.77...@thi.ng/rstream-graph@3.2.78) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/rstream-graph + + + + + ## [3.2.77](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-graph@3.2.76...@thi.ng/rstream-graph@3.2.77) (2021-08-17) **Note:** Version bump only for package @thi.ng/rstream-graph diff --git a/packages/rstream-graph/package.json b/packages/rstream-graph/package.json index 1dbcc863ed..799ea4f481 100644 --- a/packages/rstream-graph/package.json +++ b/packages/rstream-graph/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-graph", - "version": "3.2.77", + "version": "3.2.78", "description": "Declarative dataflow graph construction for @thi.ng/rstream", "module": "./index.js", "main": "./lib/index.js", @@ -44,8 +44,8 @@ "@thi.ng/errors": "^1.3.4", "@thi.ng/paths": "^4.2.13", "@thi.ng/resolve-map": "^4.2.26", - "@thi.ng/rstream": "^6.0.17", - "@thi.ng/transducers": "^7.8.4" + "@thi.ng/rstream": "^6.0.18", + "@thi.ng/transducers": "^7.9.0" }, "files": [ "*.js", diff --git a/packages/rstream-log-file/CHANGELOG.md b/packages/rstream-log-file/CHANGELOG.md index e32cd8b197..01ccce2b6e 100644 --- a/packages/rstream-log-file/CHANGELOG.md +++ b/packages/rstream-log-file/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log-file@1.0.2...@thi.ng/rstream-log-file@1.0.3) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/rstream-log-file + + + + + ## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log-file@1.0.1...@thi.ng/rstream-log-file@1.0.2) (2021-08-17) **Note:** Version bump only for package @thi.ng/rstream-log-file diff --git a/packages/rstream-log-file/package.json b/packages/rstream-log-file/package.json index 5c1de8f9bb..4d2c2d6e28 100644 --- a/packages/rstream-log-file/package.json +++ b/packages/rstream-log-file/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-log-file", - "version": "1.0.2", + "version": "1.0.3", "description": "File output handler for structured, multilevel & hierarchical loggers based on @thi.ng/rstream", "module": "./index.js", "main": "./lib/index.js", @@ -38,7 +38,7 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/rstream": "^6.0.17" + "@thi.ng/rstream": "^6.0.18" }, "files": [ "*.js", diff --git a/packages/rstream-log/CHANGELOG.md b/packages/rstream-log/CHANGELOG.md index b5a5f4279d..5bb5b42204 100644 --- a/packages/rstream-log/CHANGELOG.md +++ b/packages/rstream-log/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.2.30](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log@3.2.29...@thi.ng/rstream-log@3.2.30) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/rstream-log + + + + + ## [3.2.29](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log@3.2.28...@thi.ng/rstream-log@3.2.29) (2021-08-17) **Note:** Version bump only for package @thi.ng/rstream-log diff --git a/packages/rstream-log/package.json b/packages/rstream-log/package.json index 749e2ca74b..a1e50b6890 100644 --- a/packages/rstream-log/package.json +++ b/packages/rstream-log/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-log", - "version": "3.2.29", + "version": "3.2.30", "description": "Structured, multilevel & hierarchical loggers based on @thi.ng/rstream", "module": "./index.js", "main": "./lib/index.js", @@ -41,9 +41,9 @@ "@thi.ng/api": "^7.1.9", "@thi.ng/checks": "^2.9.10", "@thi.ng/errors": "^1.3.4", - "@thi.ng/rstream": "^6.0.17", + "@thi.ng/rstream": "^6.0.18", "@thi.ng/strings": "^2.1.6", - "@thi.ng/transducers": "^7.8.4" + "@thi.ng/transducers": "^7.9.0" }, "files": [ "*.js", diff --git a/packages/rstream-query/CHANGELOG.md b/packages/rstream-query/CHANGELOG.md index d6505256d0..2a2b12b3d5 100644 --- a/packages/rstream-query/CHANGELOG.md +++ b/packages/rstream-query/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.1.86](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-query@1.1.85...@thi.ng/rstream-query@1.1.86) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/rstream-query + + + + + ## [1.1.85](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-query@1.1.84...@thi.ng/rstream-query@1.1.85) (2021-08-17) **Note:** Version bump only for package @thi.ng/rstream-query diff --git a/packages/rstream-query/package.json b/packages/rstream-query/package.json index 54d826c408..bb4ddea0f7 100644 --- a/packages/rstream-query/package.json +++ b/packages/rstream-query/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-query", - "version": "1.1.85", + "version": "1.1.86", "description": "@thi.ng/rstream based triple store & reactive query engine", "module": "./index.js", "main": "./lib/index.js", @@ -39,14 +39,14 @@ }, "dependencies": { "@thi.ng/api": "^7.1.9", - "@thi.ng/associative": "^5.2.12", + "@thi.ng/associative": "^5.2.13", "@thi.ng/checks": "^2.9.10", "@thi.ng/equiv": "^1.0.45", "@thi.ng/errors": "^1.3.4", "@thi.ng/math": "^4.0.5", - "@thi.ng/rstream": "^6.0.17", - "@thi.ng/rstream-dot": "^1.2.25", - "@thi.ng/transducers": "^7.8.4" + "@thi.ng/rstream": "^6.0.18", + "@thi.ng/rstream-dot": "^1.2.26", + "@thi.ng/transducers": "^7.9.0" }, "files": [ "*.js", diff --git a/packages/rstream/CHANGELOG.md b/packages/rstream/CHANGELOG.md index 69695db8f8..985c4e4a53 100644 --- a/packages/rstream/CHANGELOG.md +++ b/packages/rstream/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [6.0.18](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream@6.0.17...@thi.ng/rstream@6.0.18) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/rstream + + + + + ## [6.0.17](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream@6.0.16...@thi.ng/rstream@6.0.17) (2021-08-17) **Note:** Version bump only for package @thi.ng/rstream diff --git a/packages/rstream/package.json b/packages/rstream/package.json index 3f2bfe9cc8..c689fcdbca 100644 --- a/packages/rstream/package.json +++ b/packages/rstream/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream", - "version": "6.0.17", + "version": "6.0.18", "description": "Reactive streams & subscription primitives for constructing dataflow graphs / pipelines", "module": "./index.js", "main": "./lib/index.js", @@ -40,11 +40,11 @@ "dependencies": { "@thi.ng/api": "^7.1.9", "@thi.ng/arrays": "^1.0.2", - "@thi.ng/associative": "^5.2.12", + "@thi.ng/associative": "^5.2.13", "@thi.ng/atom": "^4.1.41", "@thi.ng/checks": "^2.9.10", "@thi.ng/errors": "^1.3.4", - "@thi.ng/transducers": "^7.8.4" + "@thi.ng/transducers": "^7.9.0" }, "files": [ "*.js", diff --git a/packages/sax/CHANGELOG.md b/packages/sax/CHANGELOG.md index ab9e748b56..a5d442e5e1 100644 --- a/packages/sax/CHANGELOG.md +++ b/packages/sax/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.1.71](https://github.com/thi-ng/umbrella/compare/@thi.ng/sax@1.1.70...@thi.ng/sax@1.1.71) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/sax + + + + + ## [1.1.70](https://github.com/thi-ng/umbrella/compare/@thi.ng/sax@1.1.69...@thi.ng/sax@1.1.70) (2021-08-17) **Note:** Version bump only for package @thi.ng/sax diff --git a/packages/sax/package.json b/packages/sax/package.json index b70c227855..6b6edb4e02 100644 --- a/packages/sax/package.json +++ b/packages/sax/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/sax", - "version": "1.1.70", + "version": "1.1.71", "description": "Transducer-based, SAX-like, non-validating, speedy & tiny XML parser", "module": "./index.js", "main": "./lib/index.js", @@ -39,8 +39,8 @@ }, "dependencies": { "@thi.ng/api": "^7.1.9", - "@thi.ng/transducers": "^7.8.4", - "@thi.ng/transducers-fsm": "^1.1.70" + "@thi.ng/transducers": "^7.9.0", + "@thi.ng/transducers-fsm": "^1.1.71" }, "files": [ "*.js", diff --git a/packages/scenegraph/CHANGELOG.md b/packages/scenegraph/CHANGELOG.md index 0eccd2b3f5..947eea0128 100644 --- a/packages/scenegraph/CHANGELOG.md +++ b/packages/scenegraph/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.3.41](https://github.com/thi-ng/umbrella/compare/@thi.ng/scenegraph@0.3.40...@thi.ng/scenegraph@0.3.41) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/scenegraph + + + + + ## [0.3.40](https://github.com/thi-ng/umbrella/compare/@thi.ng/scenegraph@0.3.39...@thi.ng/scenegraph@0.3.40) (2021-08-17) **Note:** Version bump only for package @thi.ng/scenegraph diff --git a/packages/scenegraph/package.json b/packages/scenegraph/package.json index b2d7a62550..a16759db4e 100644 --- a/packages/scenegraph/package.json +++ b/packages/scenegraph/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/scenegraph", - "version": "0.3.40", + "version": "0.3.41", "description": "Extensible 2D/3D scene graph with @thi.ng/hiccup-canvas support", "module": "./index.js", "main": "./lib/index.js", @@ -40,8 +40,8 @@ "dependencies": { "@thi.ng/api": "^7.1.9", "@thi.ng/checks": "^2.9.10", - "@thi.ng/matrices": "^1.0.2", - "@thi.ng/vectors": "^6.1.0" + "@thi.ng/matrices": "^1.0.3", + "@thi.ng/vectors": "^6.1.1" }, "files": [ "*.js", diff --git a/packages/shader-ast-glsl/CHANGELOG.md b/packages/shader-ast-glsl/CHANGELOG.md index bf125a6e49..ed5013cbec 100644 --- a/packages/shader-ast-glsl/CHANGELOG.md +++ b/packages/shader-ast-glsl/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.2.45](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-glsl@0.2.44...@thi.ng/shader-ast-glsl@0.2.45) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/shader-ast-glsl + + + + + ## [0.2.44](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-glsl@0.2.43...@thi.ng/shader-ast-glsl@0.2.44) (2021-08-17) **Note:** Version bump only for package @thi.ng/shader-ast-glsl diff --git a/packages/shader-ast-glsl/package.json b/packages/shader-ast-glsl/package.json index 13963c1273..760e392dcf 100644 --- a/packages/shader-ast-glsl/package.json +++ b/packages/shader-ast-glsl/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/shader-ast-glsl", - "version": "0.2.44", + "version": "0.2.45", "description": "Customizable GLSL codegen for @thi.ng/shader-ast", "module": "./index.js", "main": "./lib/index.js", @@ -41,7 +41,7 @@ "@thi.ng/api": "^7.1.9", "@thi.ng/checks": "^2.9.10", "@thi.ng/errors": "^1.3.4", - "@thi.ng/shader-ast": "^0.10.0" + "@thi.ng/shader-ast": "^0.10.1" }, "files": [ "*.js", diff --git a/packages/shader-ast-js/CHANGELOG.md b/packages/shader-ast-js/CHANGELOG.md index 121c05508b..1282a1bb03 100644 --- a/packages/shader-ast-js/CHANGELOG.md +++ b/packages/shader-ast-js/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.5.46](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-js@0.5.45...@thi.ng/shader-ast-js@0.5.46) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/shader-ast-js + + + + + ## [0.5.45](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-js@0.5.44...@thi.ng/shader-ast-js@0.5.45) (2021-08-17) diff --git a/packages/shader-ast-js/package.json b/packages/shader-ast-js/package.json index 077ebbe300..3258f5a5e0 100644 --- a/packages/shader-ast-js/package.json +++ b/packages/shader-ast-js/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/shader-ast-js", - "version": "0.5.45", + "version": "0.5.46", "description": "Customizable JS codegen, compiler & runtime for @thi.ng/shader-ast", "module": "./index.js", "main": "./lib/index.js", @@ -42,10 +42,10 @@ "@thi.ng/checks": "^2.9.10", "@thi.ng/errors": "^1.3.4", "@thi.ng/math": "^4.0.5", - "@thi.ng/matrices": "^1.0.2", - "@thi.ng/pixel": "^1.0.2", - "@thi.ng/shader-ast": "^0.10.0", - "@thi.ng/vectors": "^6.1.0" + "@thi.ng/matrices": "^1.0.3", + "@thi.ng/pixel": "^1.0.3", + "@thi.ng/shader-ast": "^0.10.1", + "@thi.ng/vectors": "^6.1.1" }, "files": [ "*.js", diff --git a/packages/shader-ast-stdlib/CHANGELOG.md b/packages/shader-ast-stdlib/CHANGELOG.md index 9d84568ac9..8a4dfc98ce 100644 --- a/packages/shader-ast-stdlib/CHANGELOG.md +++ b/packages/shader-ast-stdlib/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-stdlib@0.9.0...@thi.ng/shader-ast-stdlib@0.9.1) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/shader-ast-stdlib + + + + + # [0.9.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-stdlib@0.8.0...@thi.ng/shader-ast-stdlib@0.9.0) (2021-08-17) diff --git a/packages/shader-ast-stdlib/package.json b/packages/shader-ast-stdlib/package.json index 8225d91b87..035015a16c 100644 --- a/packages/shader-ast-stdlib/package.json +++ b/packages/shader-ast-stdlib/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/shader-ast-stdlib", - "version": "0.9.0", + "version": "0.9.1", "description": "Function collection for modular GPGPU / shader programming with @thi.ng/shader-ast", "module": "./index.js", "main": "./lib/index.js", @@ -39,7 +39,7 @@ }, "dependencies": { "@thi.ng/api": "^7.1.9", - "@thi.ng/shader-ast": "^0.10.0" + "@thi.ng/shader-ast": "^0.10.1" }, "files": [ "*.js", diff --git a/packages/shader-ast/CHANGELOG.md b/packages/shader-ast/CHANGELOG.md index 3cbd97055e..36b421a462 100644 --- a/packages/shader-ast/CHANGELOG.md +++ b/packages/shader-ast/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.10.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast@0.10.0...@thi.ng/shader-ast@0.10.1) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/shader-ast + + + + + # [0.10.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast@0.9.0...@thi.ng/shader-ast@0.10.0) (2021-08-17) diff --git a/packages/shader-ast/package.json b/packages/shader-ast/package.json index 2e656d2f66..8d177ff868 100644 --- a/packages/shader-ast/package.json +++ b/packages/shader-ast/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/shader-ast", - "version": "0.10.0", + "version": "0.10.1", "description": "DSL to define shader code in TypeScript and cross-compile to GLSL, JS and other targets", "module": "./index.js", "main": "./lib/index.js", @@ -41,7 +41,7 @@ "@thi.ng/api": "^7.1.9", "@thi.ng/checks": "^2.9.10", "@thi.ng/defmulti": "^1.3.16", - "@thi.ng/dgraph": "^1.3.31", + "@thi.ng/dgraph": "^1.3.32", "@thi.ng/errors": "^1.3.4", "@thi.ng/math": "^4.0.5" }, diff --git a/packages/simd/CHANGELOG.md b/packages/simd/CHANGELOG.md index f1ea9ad455..34c4cb2741 100644 --- a/packages/simd/CHANGELOG.md +++ b/packages/simd/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.4.39](https://github.com/thi-ng/umbrella/compare/@thi.ng/simd@0.4.38...@thi.ng/simd@0.4.39) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/simd + + + + + ## [0.4.38](https://github.com/thi-ng/umbrella/compare/@thi.ng/simd@0.4.37...@thi.ng/simd@0.4.38) (2021-08-17) **Note:** Version bump only for package @thi.ng/simd diff --git a/packages/simd/package.json b/packages/simd/package.json index dd016b2e3b..273a78b133 100644 --- a/packages/simd/package.json +++ b/packages/simd/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/simd", - "version": "0.4.38", + "version": "0.4.39", "description": "WASM based SIMD vector operations for batch processing", "module": "./index.js", "main": "./lib/index.js", @@ -43,7 +43,7 @@ "assemblyscript": "0.19.8" }, "dependencies": { - "@thi.ng/transducers-binary": "^1.0.2" + "@thi.ng/transducers-binary": "^1.0.3" }, "files": [ "*.js", diff --git a/packages/soa/CHANGELOG.md b/packages/soa/CHANGELOG.md index 113f380cfb..dd05d9accb 100644 --- a/packages/soa/CHANGELOG.md +++ b/packages/soa/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.2.23](https://github.com/thi-ng/umbrella/compare/@thi.ng/soa@0.2.22...@thi.ng/soa@0.2.23) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/soa + + + + + ## [0.2.22](https://github.com/thi-ng/umbrella/compare/@thi.ng/soa@0.2.21...@thi.ng/soa@0.2.22) (2021-08-17) **Note:** Version bump only for package @thi.ng/soa diff --git a/packages/soa/package.json b/packages/soa/package.json index ee09a203d8..406e444a05 100644 --- a/packages/soa/package.json +++ b/packages/soa/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/soa", - "version": "0.2.22", + "version": "0.2.23", "description": "SOA & AOS memory mapped structured views with optional & extensible serialization", "module": "./index.js", "main": "./lib/index.js", @@ -44,8 +44,8 @@ "@thi.ng/api": "^7.1.9", "@thi.ng/binary": "^2.2.10", "@thi.ng/errors": "^1.3.4", - "@thi.ng/transducers-binary": "^1.0.2", - "@thi.ng/vectors": "^6.1.0" + "@thi.ng/transducers-binary": "^1.0.3", + "@thi.ng/vectors": "^6.1.1" }, "files": [ "*.js", diff --git a/packages/sparse/CHANGELOG.md b/packages/sparse/CHANGELOG.md index f108d9ede9..cd677909cd 100644 --- a/packages/sparse/CHANGELOG.md +++ b/packages/sparse/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.87](https://github.com/thi-ng/umbrella/compare/@thi.ng/sparse@0.1.86...@thi.ng/sparse@0.1.87) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/sparse + + + + + ## [0.1.86](https://github.com/thi-ng/umbrella/compare/@thi.ng/sparse@0.1.85...@thi.ng/sparse@0.1.86) (2021-08-17) **Note:** Version bump only for package @thi.ng/sparse diff --git a/packages/sparse/package.json b/packages/sparse/package.json index 23d4594e9f..dcee22b5fe 100644 --- a/packages/sparse/package.json +++ b/packages/sparse/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/sparse", - "version": "0.1.86", + "version": "0.1.87", "description": "Sparse vector & matrix implementations", "module": "./index.js", "main": "./lib/index.js", @@ -40,7 +40,7 @@ "dependencies": { "@thi.ng/api": "^7.1.9", "@thi.ng/errors": "^1.3.4", - "@thi.ng/transducers": "^7.8.4" + "@thi.ng/transducers": "^7.9.0" }, "files": [ "*.js", diff --git a/packages/system/CHANGELOG.md b/packages/system/CHANGELOG.md index 2ad9940985..69b35dd4b3 100644 --- a/packages/system/CHANGELOG.md +++ b/packages/system/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/system@1.0.4...@thi.ng/system@1.0.5) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/system + + + + + ## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/system@1.0.3...@thi.ng/system@1.0.4) (2021-08-17) **Note:** Version bump only for package @thi.ng/system diff --git a/packages/system/package.json b/packages/system/package.json index 24010e07f3..cf47cdceff 100644 --- a/packages/system/package.json +++ b/packages/system/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/system", - "version": "1.0.4", + "version": "1.0.5", "description": "Minimal and explicit dependency-injection & lifecycle container for stateful app components", "module": "./index.js", "main": "./lib/index.js", @@ -39,7 +39,7 @@ }, "dependencies": { "@thi.ng/api": "^7.1.9", - "@thi.ng/dgraph": "^1.3.31" + "@thi.ng/dgraph": "^1.3.32" }, "files": [ "*.js", diff --git a/packages/text-canvas/CHANGELOG.md b/packages/text-canvas/CHANGELOG.md index 43d9b687ad..a7362d89cb 100644 --- a/packages/text-canvas/CHANGELOG.md +++ b/packages/text-canvas/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.1.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/text-canvas@1.1.1...@thi.ng/text-canvas@1.1.2) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/text-canvas + + + + + ## [1.1.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/text-canvas@1.1.0...@thi.ng/text-canvas@1.1.1) (2021-08-17) **Note:** Version bump only for package @thi.ng/text-canvas diff --git a/packages/text-canvas/package.json b/packages/text-canvas/package.json index 49232ef40e..27adee6015 100644 --- a/packages/text-canvas/package.json +++ b/packages/text-canvas/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/text-canvas", - "version": "1.1.1", + "version": "1.1.2", "description": "Text based canvas, drawing, tables with arbitrary formatting (incl. ANSI/HTML)", "module": "./index.js", "main": "./lib/index.js", @@ -41,11 +41,11 @@ "@thi.ng/api": "^7.1.9", "@thi.ng/arrays": "^1.0.2", "@thi.ng/checks": "^2.9.10", - "@thi.ng/geom-clip-line": "^1.2.42", + "@thi.ng/geom-clip-line": "^1.2.43", "@thi.ng/math": "^4.0.5", "@thi.ng/memoize": "^2.1.20", "@thi.ng/strings": "^2.1.6", - "@thi.ng/transducers": "^7.8.4" + "@thi.ng/transducers": "^7.9.0" }, "files": [ "*.js", diff --git a/packages/transducers-binary/CHANGELOG.md b/packages/transducers-binary/CHANGELOG.md index 37ce8db41a..7de040b91c 100644 --- a/packages/transducers-binary/CHANGELOG.md +++ b/packages/transducers-binary/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-binary@1.0.2...@thi.ng/transducers-binary@1.0.3) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/transducers-binary + + + + + ## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-binary@1.0.1...@thi.ng/transducers-binary@1.0.2) (2021-08-17) **Note:** Version bump only for package @thi.ng/transducers-binary diff --git a/packages/transducers-binary/package.json b/packages/transducers-binary/package.json index 28ad4b7819..e50ad3294f 100644 --- a/packages/transducers-binary/package.json +++ b/packages/transducers-binary/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/transducers-binary", - "version": "1.0.2", + "version": "1.0.3", "description": "Binary data related transducers & reducers", "module": "./index.js", "main": "./lib/index.js", @@ -43,7 +43,7 @@ "@thi.ng/errors": "^1.3.4", "@thi.ng/hex": "^1.0.4", "@thi.ng/random": "^2.4.7", - "@thi.ng/transducers": "^7.8.4" + "@thi.ng/transducers": "^7.9.0" }, "files": [ "*.js", diff --git a/packages/transducers-fsm/CHANGELOG.md b/packages/transducers-fsm/CHANGELOG.md index 44c72457f3..4f9ab231db 100644 --- a/packages/transducers-fsm/CHANGELOG.md +++ b/packages/transducers-fsm/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.1.71](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-fsm@1.1.70...@thi.ng/transducers-fsm@1.1.71) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/transducers-fsm + + + + + ## [1.1.70](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-fsm@1.1.69...@thi.ng/transducers-fsm@1.1.70) (2021-08-17) **Note:** Version bump only for package @thi.ng/transducers-fsm diff --git a/packages/transducers-fsm/package.json b/packages/transducers-fsm/package.json index 82b5227bd8..931205a0da 100644 --- a/packages/transducers-fsm/package.json +++ b/packages/transducers-fsm/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/transducers-fsm", - "version": "1.1.70", + "version": "1.1.71", "description": "Transducer-based Finite State Machine transformer", "module": "./index.js", "main": "./lib/index.js", @@ -39,7 +39,7 @@ }, "dependencies": { "@thi.ng/api": "^7.1.9", - "@thi.ng/transducers": "^7.8.4" + "@thi.ng/transducers": "^7.9.0" }, "files": [ "*.js", diff --git a/packages/transducers-hdom/CHANGELOG.md b/packages/transducers-hdom/CHANGELOG.md index e4525d7fa7..98179d9546 100644 --- a/packages/transducers-hdom/CHANGELOG.md +++ b/packages/transducers-hdom/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.0.103](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-hdom@2.0.102...@thi.ng/transducers-hdom@2.0.103) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/transducers-hdom + + + + + ## [2.0.102](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-hdom@2.0.101...@thi.ng/transducers-hdom@2.0.102) (2021-08-17) **Note:** Version bump only for package @thi.ng/transducers-hdom diff --git a/packages/transducers-hdom/package.json b/packages/transducers-hdom/package.json index e2b21b00a9..9ef1835c2a 100644 --- a/packages/transducers-hdom/package.json +++ b/packages/transducers-hdom/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/transducers-hdom", - "version": "2.0.102", + "version": "2.0.103", "description": "Transducer based UI updater for @thi.ng/hdom", "module": "./index.js", "main": "./lib/index.js", @@ -40,7 +40,7 @@ "dependencies": { "@thi.ng/hdom": "^8.2.31", "@thi.ng/hiccup": "^3.6.21", - "@thi.ng/transducers": "^7.8.4" + "@thi.ng/transducers": "^7.9.0" }, "files": [ "*.js", diff --git a/packages/transducers-patch/CHANGELOG.md b/packages/transducers-patch/CHANGELOG.md index 55cea44893..2e0990ee17 100644 --- a/packages/transducers-patch/CHANGELOG.md +++ b/packages/transducers-patch/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.2.28](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-patch@0.2.27...@thi.ng/transducers-patch@0.2.28) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/transducers-patch + + + + + ## [0.2.27](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-patch@0.2.26...@thi.ng/transducers-patch@0.2.27) (2021-08-17) **Note:** Version bump only for package @thi.ng/transducers-patch diff --git a/packages/transducers-patch/package.json b/packages/transducers-patch/package.json index eeeafd6a4d..f3ac64a43c 100644 --- a/packages/transducers-patch/package.json +++ b/packages/transducers-patch/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/transducers-patch", - "version": "0.2.27", + "version": "0.2.28", "description": "Reducers for patch-based, immutable-by-default array & object editing", "module": "./index.js", "main": "./lib/index.js", @@ -42,7 +42,7 @@ "@thi.ng/checks": "^2.9.10", "@thi.ng/errors": "^1.3.4", "@thi.ng/paths": "^4.2.13", - "@thi.ng/transducers": "^7.8.4" + "@thi.ng/transducers": "^7.9.0" }, "files": [ "*.js", diff --git a/packages/transducers-stats/CHANGELOG.md b/packages/transducers-stats/CHANGELOG.md index 2c4a22881d..4f8de5f196 100644 --- a/packages/transducers-stats/CHANGELOG.md +++ b/packages/transducers-stats/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.1.72](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-stats@1.1.71...@thi.ng/transducers-stats@1.1.72) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/transducers-stats + + + + + ## [1.1.71](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-stats@1.1.70...@thi.ng/transducers-stats@1.1.71) (2021-08-17) **Note:** Version bump only for package @thi.ng/transducers-stats diff --git a/packages/transducers-stats/package.json b/packages/transducers-stats/package.json index 10a9aaf4cc..8e344918a5 100644 --- a/packages/transducers-stats/package.json +++ b/packages/transducers-stats/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/transducers-stats", - "version": "1.1.71", + "version": "1.1.72", "description": "Transducers for statistical / technical analysis", "module": "./index.js", "main": "./lib/index.js", @@ -39,9 +39,9 @@ }, "dependencies": { "@thi.ng/checks": "^2.9.10", - "@thi.ng/dcons": "^2.3.31", + "@thi.ng/dcons": "^2.3.32", "@thi.ng/errors": "^1.3.4", - "@thi.ng/transducers": "^7.8.4" + "@thi.ng/transducers": "^7.9.0" }, "files": [ "*.js", diff --git a/packages/transducers/CHANGELOG.md b/packages/transducers/CHANGELOG.md index cf3a82cd10..cfcddbd37b 100644 --- a/packages/transducers/CHANGELOG.md +++ b/packages/transducers/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [7.9.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers@7.8.4...@thi.ng/transducers@7.9.0) (2021-08-19) + + +### Features + +* **transducers:** add normalized frequencies() reducers ([d09db8d](https://github.com/thi-ng/umbrella/commit/d09db8d47be81e78dea1f4e16917249924b65e35)) + + + + + ## [7.8.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers@7.8.3...@thi.ng/transducers@7.8.4) (2021-08-17) **Note:** Version bump only for package @thi.ng/transducers diff --git a/packages/transducers/package.json b/packages/transducers/package.json index 2b234bfdd0..266957ba38 100644 --- a/packages/transducers/package.json +++ b/packages/transducers/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/transducers", - "version": "7.8.4", + "version": "7.9.0", "description": "Lightweight transducer implementations for ES6 / TypeScript", "module": "./index.js", "main": "./lib/index.js", diff --git a/packages/vector-pools/CHANGELOG.md b/packages/vector-pools/CHANGELOG.md index d77bdd2657..01ea6ca1a8 100644 --- a/packages/vector-pools/CHANGELOG.md +++ b/packages/vector-pools/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.0.23](https://github.com/thi-ng/umbrella/compare/@thi.ng/vector-pools@2.0.22...@thi.ng/vector-pools@2.0.23) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/vector-pools + + + + + ## [2.0.22](https://github.com/thi-ng/umbrella/compare/@thi.ng/vector-pools@2.0.21...@thi.ng/vector-pools@2.0.22) (2021-08-17) **Note:** Version bump only for package @thi.ng/vector-pools diff --git a/packages/vector-pools/package.json b/packages/vector-pools/package.json index 6548ad9595..f10995a2a5 100644 --- a/packages/vector-pools/package.json +++ b/packages/vector-pools/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/vector-pools", - "version": "2.0.22", + "version": "2.0.23", "description": "Data structures for managing & working with strided, memory mapped vectors", "module": "./index.js", "main": "./lib/index.js", @@ -42,8 +42,8 @@ "@thi.ng/binary": "^2.2.10", "@thi.ng/checks": "^2.9.10", "@thi.ng/malloc": "^5.0.13", - "@thi.ng/transducers": "^7.8.4", - "@thi.ng/vectors": "^6.1.0" + "@thi.ng/transducers": "^7.9.0", + "@thi.ng/vectors": "^6.1.1" }, "files": [ "*.js", diff --git a/packages/vectors/CHANGELOG.md b/packages/vectors/CHANGELOG.md index 1cb554fe20..a6dcfc3bba 100644 --- a/packages/vectors/CHANGELOG.md +++ b/packages/vectors/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [6.1.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/vectors@6.1.0...@thi.ng/vectors@6.1.1) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/vectors + + + + + # [6.1.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/vectors@6.0.7...@thi.ng/vectors@6.1.0) (2021-08-17) diff --git a/packages/vectors/package.json b/packages/vectors/package.json index e1d991e2e9..534203c527 100644 --- a/packages/vectors/package.json +++ b/packages/vectors/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/vectors", - "version": "6.1.0", + "version": "6.1.1", "description": "Optimized 2d/3d/4d and arbitrary length vector operations", "module": "./index.js", "main": "./lib/index.js", @@ -46,7 +46,7 @@ "@thi.ng/math": "^4.0.5", "@thi.ng/memoize": "^2.1.20", "@thi.ng/random": "^2.4.7", - "@thi.ng/transducers": "^7.8.4" + "@thi.ng/transducers": "^7.9.0" }, "files": [ "*.js", diff --git a/packages/viz/CHANGELOG.md b/packages/viz/CHANGELOG.md index 2b96457786..554e0c0090 100644 --- a/packages/viz/CHANGELOG.md +++ b/packages/viz/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.2.39](https://github.com/thi-ng/umbrella/compare/@thi.ng/viz@0.2.38...@thi.ng/viz@0.2.39) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/viz + + + + + ## [0.2.38](https://github.com/thi-ng/umbrella/compare/@thi.ng/viz@0.2.37...@thi.ng/viz@0.2.38) (2021-08-17) **Note:** Version bump only for package @thi.ng/viz diff --git a/packages/viz/package.json b/packages/viz/package.json index 0d2366f5e5..d05eb43dbc 100644 --- a/packages/viz/package.json +++ b/packages/viz/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/viz", - "version": "0.2.38", + "version": "0.2.39", "description": "Declarative, functional & multi-format data visualization toolkit based around @thi.ng/hiccup", "module": "./index.js", "main": "./lib/index.js", @@ -49,11 +49,11 @@ "dependencies": { "@thi.ng/api": "^7.1.9", "@thi.ng/arrays": "^1.0.2", - "@thi.ng/associative": "^5.2.12", + "@thi.ng/associative": "^5.2.13", "@thi.ng/checks": "^2.9.10", "@thi.ng/math": "^4.0.5", "@thi.ng/strings": "^2.1.6", - "@thi.ng/transducers": "^7.8.4" + "@thi.ng/transducers": "^7.9.0" }, "files": [ "*.js", diff --git a/packages/webgl-msdf/CHANGELOG.md b/packages/webgl-msdf/CHANGELOG.md index 69d1fbb08e..9a815ed0f2 100644 --- a/packages/webgl-msdf/CHANGELOG.md +++ b/packages/webgl-msdf/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl-msdf@1.0.4...@thi.ng/webgl-msdf@1.0.5) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/webgl-msdf + + + + + ## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl-msdf@1.0.3...@thi.ng/webgl-msdf@1.0.4) (2021-08-17) **Note:** Version bump only for package @thi.ng/webgl-msdf diff --git a/packages/webgl-msdf/package.json b/packages/webgl-msdf/package.json index abfb2f6d15..92172fd0e5 100644 --- a/packages/webgl-msdf/package.json +++ b/packages/webgl-msdf/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/webgl-msdf", - "version": "1.0.4", + "version": "1.0.5", "description": "Multi-channel SDF font rendering & basic text layout for WebGL", "module": "./index.js", "main": "./lib/index.js", @@ -39,11 +39,11 @@ }, "dependencies": { "@thi.ng/api": "^7.1.9", - "@thi.ng/shader-ast": "^0.10.0", - "@thi.ng/transducers": "^7.8.4", - "@thi.ng/vector-pools": "^2.0.22", - "@thi.ng/vectors": "^6.1.0", - "@thi.ng/webgl": "^5.0.10" + "@thi.ng/shader-ast": "^0.10.1", + "@thi.ng/transducers": "^7.9.0", + "@thi.ng/vector-pools": "^2.0.23", + "@thi.ng/vectors": "^6.1.1", + "@thi.ng/webgl": "^5.0.11" }, "files": [ "*.js", diff --git a/packages/webgl-shadertoy/CHANGELOG.md b/packages/webgl-shadertoy/CHANGELOG.md index a12c078dd4..7bee235c37 100644 --- a/packages/webgl-shadertoy/CHANGELOG.md +++ b/packages/webgl-shadertoy/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.2.88](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl-shadertoy@0.2.87...@thi.ng/webgl-shadertoy@0.2.88) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/webgl-shadertoy + + + + + ## [0.2.87](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl-shadertoy@0.2.86...@thi.ng/webgl-shadertoy@0.2.87) (2021-08-17) **Note:** Version bump only for package @thi.ng/webgl-shadertoy diff --git a/packages/webgl-shadertoy/package.json b/packages/webgl-shadertoy/package.json index d34eaebbdf..c495f55022 100644 --- a/packages/webgl-shadertoy/package.json +++ b/packages/webgl-shadertoy/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/webgl-shadertoy", - "version": "0.2.87", + "version": "0.2.88", "description": "Basic WebGL scaffolding for running interactive fragment shaders via @thi.ng/shader-ast", "module": "./index.js", "main": "./lib/index.js", @@ -39,9 +39,9 @@ }, "dependencies": { "@thi.ng/api": "^7.1.9", - "@thi.ng/shader-ast": "^0.10.0", - "@thi.ng/shader-ast-glsl": "^0.2.44", - "@thi.ng/webgl": "^5.0.10" + "@thi.ng/shader-ast": "^0.10.1", + "@thi.ng/shader-ast-glsl": "^0.2.45", + "@thi.ng/webgl": "^5.0.11" }, "files": [ "*.js", diff --git a/packages/webgl/CHANGELOG.md b/packages/webgl/CHANGELOG.md index f101ef2a47..acafeb70a4 100644 --- a/packages/webgl/CHANGELOG.md +++ b/packages/webgl/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.11](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl@5.0.10...@thi.ng/webgl@5.0.11) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/webgl + + + + + ## [5.0.10](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl@5.0.9...@thi.ng/webgl@5.0.10) (2021-08-17) **Note:** Version bump only for package @thi.ng/webgl diff --git a/packages/webgl/package.json b/packages/webgl/package.json index cca60465f3..ff015ef362 100644 --- a/packages/webgl/package.json +++ b/packages/webgl/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/webgl", - "version": "5.0.10", + "version": "5.0.11", "description": "WebGL & GLSL abstraction layer", "module": "./index.js", "main": "./lib/index.js", @@ -40,19 +40,19 @@ "dependencies": { "@thi.ng/adapt-dpi": "^1.0.23", "@thi.ng/api": "^7.1.9", - "@thi.ng/associative": "^5.2.12", + "@thi.ng/associative": "^5.2.13", "@thi.ng/checks": "^2.9.10", "@thi.ng/equiv": "^1.0.45", "@thi.ng/errors": "^1.3.4", - "@thi.ng/matrices": "^1.0.2", + "@thi.ng/matrices": "^1.0.3", "@thi.ng/memoize": "^2.1.20", - "@thi.ng/pixel": "^1.0.2", - "@thi.ng/shader-ast": "^0.10.0", - "@thi.ng/shader-ast-glsl": "^0.2.44", - "@thi.ng/shader-ast-stdlib": "^0.9.0", - "@thi.ng/transducers": "^7.8.4", - "@thi.ng/vector-pools": "^2.0.22", - "@thi.ng/vectors": "^6.1.0" + "@thi.ng/pixel": "^1.0.3", + "@thi.ng/shader-ast": "^0.10.1", + "@thi.ng/shader-ast-glsl": "^0.2.45", + "@thi.ng/shader-ast-stdlib": "^0.9.1", + "@thi.ng/transducers": "^7.9.0", + "@thi.ng/vector-pools": "^2.0.23", + "@thi.ng/vectors": "^6.1.1" }, "files": [ "*.js", From 5b5200b6d4e61df6c2e6458b99b8b10ea9f3bb65 Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Thu, 19 Aug 2021 16:48:24 +0200 Subject: [PATCH 09/76] fix(transducers): update normFrequenciesAuto() - actually use `key` fn arg (if given) --- packages/transducers/src/rfn/norm-frequencies-auto.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/packages/transducers/src/rfn/norm-frequencies-auto.ts b/packages/transducers/src/rfn/norm-frequencies-auto.ts index 244d6fe817..c32c7dd3e9 100644 --- a/packages/transducers/src/rfn/norm-frequencies-auto.ts +++ b/packages/transducers/src/rfn/norm-frequencies-auto.ts @@ -13,6 +13,10 @@ import { frequencies } from "./frequencies"; * * normFrequenciesAuto(items) * // Map(5) { 1 => 0.4, 2 => 0.3, 3 => 0.1, 4 => 0.1, 5 => 0.1 } + * + * // frequencies by 1st letter + * normFrequenciesAuto(x => x[0], ["alice", "abba", "bob", "charlie"]) + * // Map(3) { 'a' => 0.5, 'b' => 0.25, 'c' => 0.25 } * ``` */ export function normFrequenciesAuto(): Reducer, A>; @@ -29,7 +33,7 @@ export function normFrequenciesAuto(...args: any[]): any { if (res !== undefined) { return res; } - const [init, complete, reduce] = frequencies(); + const [init, complete, reduce] = frequencies(...(<[]>args)); let norm = 0; return [ init, From 84a067278ef79ccd538eeb652046eb8e03f3e34e Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Thu, 19 Aug 2021 16:49:30 +0200 Subject: [PATCH 10/76] Publish - @thi.ng/adjacency@1.0.4 - @thi.ng/associative@5.2.14 - @thi.ng/bencode@1.0.4 - @thi.ng/cache@1.0.93 - @thi.ng/color@3.2.6 - @thi.ng/colored-noise@0.1.46 - @thi.ng/csp@1.1.73 - @thi.ng/csv@1.0.6 - @thi.ng/dcons@2.3.33 - @thi.ng/dgraph-dot@1.0.6 - @thi.ng/dgraph@1.3.33 - @thi.ng/distance@1.0.6 - @thi.ng/dsp-io-wav@1.0.6 - @thi.ng/dsp@3.0.30 - @thi.ng/ecs@0.5.24 - @thi.ng/egf@0.4.16 - @thi.ng/fsm@2.4.62 - @thi.ng/fuzzy-viz@1.0.7 - @thi.ng/geom-accel@2.1.59 - @thi.ng/geom-api@2.0.30 - @thi.ng/geom-arc@1.0.4 - @thi.ng/geom-clip-line@1.2.44 - @thi.ng/geom-clip-poly@1.0.69 - @thi.ng/geom-closest-point@1.0.4 - @thi.ng/geom-fuzz@1.0.6 - @thi.ng/geom-hull@1.0.4 - @thi.ng/geom-io-obj@0.1.59 - @thi.ng/geom-isec@1.0.4 - @thi.ng/geom-isoline@1.1.3 - @thi.ng/geom-poly-utils@1.0.4 - @thi.ng/geom-resample@1.0.4 - @thi.ng/geom-splines@1.0.4 - @thi.ng/geom-subdiv-curve@1.0.4 - @thi.ng/geom-tessellate@1.0.4 - @thi.ng/geom-voronoi@1.0.4 - @thi.ng/geom@2.1.27 - @thi.ng/gp@0.2.29 - @thi.ng/grid-iterators@1.0.4 - @thi.ng/hdiff@0.1.52 - @thi.ng/hdom-canvas@3.0.59 - @thi.ng/hdom-components@4.0.47 - @thi.ng/hiccup-canvas@1.2.14 - @thi.ng/hiccup-css@1.1.72 - @thi.ng/hiccup-markdown@1.3.32 - @thi.ng/hiccup-svg@3.7.33 - @thi.ng/iges@1.1.86 - @thi.ng/imgui@1.0.5 - @thi.ng/iterators@5.1.73 - @thi.ng/k-means@0.3.5 - @thi.ng/leb128@1.0.67 - @thi.ng/lsys@1.0.4 - @thi.ng/matrices@1.0.4 - @thi.ng/pixel-io-netpbm@1.0.6 - @thi.ng/pixel@1.0.4 - @thi.ng/poisson@1.1.52 - @thi.ng/ramp@1.0.6 - @thi.ng/range-coder@1.0.92 - @thi.ng/rdom-canvas@0.1.58 - @thi.ng/rdom-components@0.2.7 - @thi.ng/rdom@0.6.7 - @thi.ng/rstream-csp@2.0.78 - @thi.ng/rstream-dot@1.2.27 - @thi.ng/rstream-gestures@3.0.32 - @thi.ng/rstream-graph@3.2.79 - @thi.ng/rstream-log-file@1.0.4 - @thi.ng/rstream-log@3.2.31 - @thi.ng/rstream-query@1.1.87 - @thi.ng/rstream@6.0.19 - @thi.ng/sax@1.1.72 - @thi.ng/scenegraph@0.3.42 - @thi.ng/shader-ast-glsl@0.2.46 - @thi.ng/shader-ast-js@0.5.47 - @thi.ng/shader-ast-stdlib@0.9.2 - @thi.ng/shader-ast@0.10.2 - @thi.ng/simd@0.4.40 - @thi.ng/soa@0.2.24 - @thi.ng/sparse@0.1.88 - @thi.ng/system@1.0.6 - @thi.ng/text-canvas@1.1.3 - @thi.ng/transducers-binary@1.0.4 - @thi.ng/transducers-fsm@1.1.72 - @thi.ng/transducers-hdom@2.0.104 - @thi.ng/transducers-patch@0.2.29 - @thi.ng/transducers-stats@1.1.73 - @thi.ng/transducers@7.9.1 - @thi.ng/vector-pools@2.0.24 - @thi.ng/vectors@6.1.2 - @thi.ng/viz@0.2.40 - @thi.ng/webgl-msdf@1.0.6 - @thi.ng/webgl-shadertoy@0.2.89 - @thi.ng/webgl@5.0.12 --- packages/adjacency/CHANGELOG.md | 8 ++++++ packages/adjacency/package.json | 8 +++--- packages/associative/CHANGELOG.md | 8 ++++++ packages/associative/package.json | 6 ++--- packages/bencode/CHANGELOG.md | 8 ++++++ packages/bencode/package.json | 6 ++--- packages/cache/CHANGELOG.md | 8 ++++++ packages/cache/package.json | 6 ++--- packages/color/CHANGELOG.md | 8 ++++++ packages/color/package.json | 6 ++--- packages/colored-noise/CHANGELOG.md | 8 ++++++ packages/colored-noise/package.json | 12 ++++----- packages/csp/CHANGELOG.md | 8 ++++++ packages/csp/package.json | 6 ++--- packages/csv/CHANGELOG.md | 8 ++++++ packages/csv/package.json | 4 +-- packages/dcons/CHANGELOG.md | 8 ++++++ packages/dcons/package.json | 4 +-- packages/dgraph-dot/CHANGELOG.md | 8 ++++++ packages/dgraph-dot/package.json | 4 +-- packages/dgraph/CHANGELOG.md | 8 ++++++ packages/dgraph/package.json | 6 ++--- packages/distance/CHANGELOG.md | 8 ++++++ packages/distance/package.json | 4 +-- packages/dsp-io-wav/CHANGELOG.md | 8 ++++++ packages/dsp-io-wav/package.json | 6 ++--- packages/dsp/CHANGELOG.md | 8 ++++++ packages/dsp/package.json | 4 +-- packages/ecs/CHANGELOG.md | 8 ++++++ packages/ecs/package.json | 8 +++--- packages/egf/CHANGELOG.md | 8 ++++++ packages/egf/package.json | 6 ++--- packages/fsm/CHANGELOG.md | 8 ++++++ packages/fsm/package.json | 4 +-- packages/fuzzy-viz/CHANGELOG.md | 8 ++++++ packages/fuzzy-viz/package.json | 6 ++--- packages/geom-accel/CHANGELOG.md | 8 ++++++ packages/geom-accel/package.json | 10 +++---- packages/geom-api/CHANGELOG.md | 8 ++++++ packages/geom-api/package.json | 4 +-- packages/geom-arc/CHANGELOG.md | 8 ++++++ packages/geom-arc/package.json | 8 +++--- packages/geom-clip-line/CHANGELOG.md | 8 ++++++ packages/geom-clip-line/package.json | 6 ++--- packages/geom-clip-poly/CHANGELOG.md | 8 ++++++ packages/geom-clip-poly/package.json | 8 +++--- packages/geom-closest-point/CHANGELOG.md | 8 ++++++ packages/geom-closest-point/package.json | 4 +-- packages/geom-fuzz/CHANGELOG.md | 8 ++++++ packages/geom-fuzz/package.json | 20 +++++++------- packages/geom-hull/CHANGELOG.md | 8 ++++++ packages/geom-hull/package.json | 4 +-- packages/geom-io-obj/CHANGELOG.md | 8 ++++++ packages/geom-io-obj/package.json | 4 +-- packages/geom-isec/CHANGELOG.md | 8 ++++++ packages/geom-isec/package.json | 8 +++--- packages/geom-isoline/CHANGELOG.md | 8 ++++++ packages/geom-isoline/package.json | 6 ++--- packages/geom-poly-utils/CHANGELOG.md | 8 ++++++ packages/geom-poly-utils/package.json | 6 ++--- packages/geom-resample/CHANGELOG.md | 8 ++++++ packages/geom-resample/package.json | 8 +++--- packages/geom-splines/CHANGELOG.md | 8 ++++++ packages/geom-splines/package.json | 10 +++---- packages/geom-subdiv-curve/CHANGELOG.md | 8 ++++++ packages/geom-subdiv-curve/package.json | 8 +++--- packages/geom-tessellate/CHANGELOG.md | 8 ++++++ packages/geom-tessellate/package.json | 12 ++++----- packages/geom-voronoi/CHANGELOG.md | 8 ++++++ packages/geom-voronoi/package.json | 12 ++++----- packages/geom/CHANGELOG.md | 8 ++++++ packages/geom/package.json | 34 ++++++++++++------------ packages/gp/CHANGELOG.md | 8 ++++++ packages/gp/package.json | 4 +-- packages/grid-iterators/CHANGELOG.md | 8 ++++++ packages/grid-iterators/package.json | 4 +-- packages/hdiff/CHANGELOG.md | 8 ++++++ packages/hdiff/package.json | 4 +-- packages/hdom-canvas/CHANGELOG.md | 8 ++++++ packages/hdom-canvas/package.json | 4 +-- packages/hdom-components/CHANGELOG.md | 8 ++++++ packages/hdom-components/package.json | 6 ++--- packages/hiccup-canvas/CHANGELOG.md | 8 ++++++ packages/hiccup-canvas/package.json | 8 +++--- packages/hiccup-css/CHANGELOG.md | 8 ++++++ packages/hiccup-css/package.json | 4 +-- packages/hiccup-markdown/CHANGELOG.md | 8 ++++++ packages/hiccup-markdown/package.json | 8 +++--- packages/hiccup-svg/CHANGELOG.md | 8 ++++++ packages/hiccup-svg/package.json | 4 +-- packages/iges/CHANGELOG.md | 8 ++++++ packages/iges/package.json | 6 ++--- packages/imgui/CHANGELOG.md | 8 ++++++ packages/imgui/package.json | 14 +++++----- packages/iterators/CHANGELOG.md | 8 ++++++ packages/iterators/package.json | 4 +-- packages/k-means/CHANGELOG.md | 8 ++++++ packages/k-means/package.json | 6 ++--- packages/leb128/CHANGELOG.md | 8 ++++++ packages/leb128/package.json | 4 +-- packages/lsys/CHANGELOG.md | 8 ++++++ packages/lsys/package.json | 6 ++--- packages/matrices/CHANGELOG.md | 8 ++++++ packages/matrices/package.json | 4 +-- packages/pixel-io-netpbm/CHANGELOG.md | 8 ++++++ packages/pixel-io-netpbm/package.json | 4 +-- packages/pixel/CHANGELOG.md | 8 ++++++ packages/pixel/package.json | 4 +-- packages/poisson/CHANGELOG.md | 8 ++++++ packages/poisson/package.json | 8 +++--- packages/ramp/CHANGELOG.md | 8 ++++++ packages/ramp/package.json | 6 ++--- packages/range-coder/CHANGELOG.md | 8 ++++++ packages/range-coder/package.json | 4 +-- packages/rdom-canvas/CHANGELOG.md | 8 ++++++ packages/rdom-canvas/package.json | 10 +++---- packages/rdom-components/CHANGELOG.md | 8 ++++++ packages/rdom-components/package.json | 10 +++---- packages/rdom/CHANGELOG.md | 8 ++++++ packages/rdom/package.json | 4 +-- packages/rstream-csp/CHANGELOG.md | 8 ++++++ packages/rstream-csp/package.json | 6 ++--- packages/rstream-dot/CHANGELOG.md | 8 ++++++ packages/rstream-dot/package.json | 6 ++--- packages/rstream-gestures/CHANGELOG.md | 8 ++++++ packages/rstream-gestures/package.json | 6 ++--- packages/rstream-graph/CHANGELOG.md | 8 ++++++ packages/rstream-graph/package.json | 6 ++--- packages/rstream-log-file/CHANGELOG.md | 8 ++++++ packages/rstream-log-file/package.json | 4 +-- packages/rstream-log/CHANGELOG.md | 8 ++++++ packages/rstream-log/package.json | 6 ++--- packages/rstream-query/CHANGELOG.md | 8 ++++++ packages/rstream-query/package.json | 10 +++---- packages/rstream/CHANGELOG.md | 8 ++++++ packages/rstream/package.json | 6 ++--- packages/sax/CHANGELOG.md | 8 ++++++ packages/sax/package.json | 6 ++--- packages/scenegraph/CHANGELOG.md | 8 ++++++ packages/scenegraph/package.json | 6 ++--- packages/shader-ast-glsl/CHANGELOG.md | 8 ++++++ packages/shader-ast-glsl/package.json | 4 +-- packages/shader-ast-js/CHANGELOG.md | 8 ++++++ packages/shader-ast-js/package.json | 10 +++---- packages/shader-ast-stdlib/CHANGELOG.md | 8 ++++++ packages/shader-ast-stdlib/package.json | 4 +-- packages/shader-ast/CHANGELOG.md | 8 ++++++ packages/shader-ast/package.json | 4 +-- packages/simd/CHANGELOG.md | 8 ++++++ packages/simd/package.json | 4 +-- packages/soa/CHANGELOG.md | 8 ++++++ packages/soa/package.json | 6 ++--- packages/sparse/CHANGELOG.md | 8 ++++++ packages/sparse/package.json | 4 +-- packages/system/CHANGELOG.md | 8 ++++++ packages/system/package.json | 4 +-- packages/text-canvas/CHANGELOG.md | 8 ++++++ packages/text-canvas/package.json | 6 ++--- packages/transducers-binary/CHANGELOG.md | 8 ++++++ packages/transducers-binary/package.json | 4 +-- packages/transducers-fsm/CHANGELOG.md | 8 ++++++ packages/transducers-fsm/package.json | 4 +-- packages/transducers-hdom/CHANGELOG.md | 8 ++++++ packages/transducers-hdom/package.json | 4 +-- packages/transducers-patch/CHANGELOG.md | 8 ++++++ packages/transducers-patch/package.json | 4 +-- packages/transducers-stats/CHANGELOG.md | 8 ++++++ packages/transducers-stats/package.json | 6 ++--- packages/transducers/CHANGELOG.md | 11 ++++++++ packages/transducers/package.json | 2 +- packages/vector-pools/CHANGELOG.md | 8 ++++++ packages/vector-pools/package.json | 6 ++--- packages/vectors/CHANGELOG.md | 8 ++++++ packages/vectors/package.json | 4 +-- packages/viz/CHANGELOG.md | 8 ++++++ packages/viz/package.json | 6 ++--- packages/webgl-msdf/CHANGELOG.md | 8 ++++++ packages/webgl-msdf/package.json | 12 ++++----- packages/webgl-shadertoy/CHANGELOG.md | 8 ++++++ packages/webgl-shadertoy/package.json | 8 +++--- packages/webgl/CHANGELOG.md | 8 ++++++ packages/webgl/package.json | 20 +++++++------- 182 files changed, 1034 insertions(+), 303 deletions(-) diff --git a/packages/adjacency/CHANGELOG.md b/packages/adjacency/CHANGELOG.md index e07092bb31..b7a0c53b8d 100644 --- a/packages/adjacency/CHANGELOG.md +++ b/packages/adjacency/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/adjacency@1.0.3...@thi.ng/adjacency@1.0.4) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/adjacency + + + + + ## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/adjacency@1.0.2...@thi.ng/adjacency@1.0.3) (2021-08-19) **Note:** Version bump only for package @thi.ng/adjacency diff --git a/packages/adjacency/package.json b/packages/adjacency/package.json index 8c51eaa3e6..84812b94f3 100644 --- a/packages/adjacency/package.json +++ b/packages/adjacency/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/adjacency", - "version": "1.0.3", + "version": "1.0.4", "description": "Sparse & bitwise adjacency matrices and related functions for directed & undirected graphs", "module": "./index.js", "main": "./lib/index.js", @@ -38,15 +38,15 @@ "pub": "yarn build:release && yarn publish --access public" }, "devDependencies": { - "@thi.ng/vectors": "^6.1.1" + "@thi.ng/vectors": "^6.1.2" }, "dependencies": { "@thi.ng/api": "^7.1.9", "@thi.ng/arrays": "^1.0.2", "@thi.ng/bitfield": "^1.0.2", - "@thi.ng/dcons": "^2.3.32", + "@thi.ng/dcons": "^2.3.33", "@thi.ng/errors": "^1.3.4", - "@thi.ng/sparse": "^0.1.87" + "@thi.ng/sparse": "^0.1.88" }, "files": [ "*.js", diff --git a/packages/associative/CHANGELOG.md b/packages/associative/CHANGELOG.md index ffa15ed499..2cb610eb35 100644 --- a/packages/associative/CHANGELOG.md +++ b/packages/associative/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.2.14](https://github.com/thi-ng/umbrella/compare/@thi.ng/associative@5.2.13...@thi.ng/associative@5.2.14) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/associative + + + + + ## [5.2.13](https://github.com/thi-ng/umbrella/compare/@thi.ng/associative@5.2.12...@thi.ng/associative@5.2.13) (2021-08-19) **Note:** Version bump only for package @thi.ng/associative diff --git a/packages/associative/package.json b/packages/associative/package.json index 4d856786d5..88640d0644 100644 --- a/packages/associative/package.json +++ b/packages/associative/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/associative", - "version": "5.2.13", + "version": "5.2.14", "description": "Alternative Map and Set implementations with customizable equality semantics & supporting operations", "module": "./index.js", "main": "./lib/index.js", @@ -43,10 +43,10 @@ "@thi.ng/binary": "^2.2.10", "@thi.ng/checks": "^2.9.10", "@thi.ng/compare": "^1.3.33", - "@thi.ng/dcons": "^2.3.32", + "@thi.ng/dcons": "^2.3.33", "@thi.ng/equiv": "^1.0.45", "@thi.ng/errors": "^1.3.4", - "@thi.ng/transducers": "^7.9.0", + "@thi.ng/transducers": "^7.9.1", "tslib": "^2.3.0" }, "files": [ diff --git a/packages/bencode/CHANGELOG.md b/packages/bencode/CHANGELOG.md index 0145efd37f..696de27364 100644 --- a/packages/bencode/CHANGELOG.md +++ b/packages/bencode/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/bencode@1.0.3...@thi.ng/bencode@1.0.4) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/bencode + + + + + ## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/bencode@1.0.2...@thi.ng/bencode@1.0.3) (2021-08-19) **Note:** Version bump only for package @thi.ng/bencode diff --git a/packages/bencode/package.json b/packages/bencode/package.json index 2f78f2e2cd..5d638f15a0 100644 --- a/packages/bencode/package.json +++ b/packages/bencode/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/bencode", - "version": "1.0.3", + "version": "1.0.4", "description": "Bencode binary encoder / decoder with optional UTF8 encoding & floating point support", "module": "./index.js", "main": "./lib/index.js", @@ -43,8 +43,8 @@ "@thi.ng/checks": "^2.9.10", "@thi.ng/defmulti": "^1.3.16", "@thi.ng/errors": "^1.3.4", - "@thi.ng/transducers": "^7.9.0", - "@thi.ng/transducers-binary": "^1.0.3" + "@thi.ng/transducers": "^7.9.1", + "@thi.ng/transducers-binary": "^1.0.4" }, "files": [ "*.js", diff --git a/packages/cache/CHANGELOG.md b/packages/cache/CHANGELOG.md index 3e632ce243..a5d796a70a 100644 --- a/packages/cache/CHANGELOG.md +++ b/packages/cache/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.93](https://github.com/thi-ng/umbrella/compare/@thi.ng/cache@1.0.92...@thi.ng/cache@1.0.93) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/cache + + + + + ## [1.0.92](https://github.com/thi-ng/umbrella/compare/@thi.ng/cache@1.0.91...@thi.ng/cache@1.0.92) (2021-08-19) **Note:** Version bump only for package @thi.ng/cache diff --git a/packages/cache/package.json b/packages/cache/package.json index d050d98608..1259eb0ea4 100644 --- a/packages/cache/package.json +++ b/packages/cache/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/cache", - "version": "1.0.92", + "version": "1.0.93", "description": "In-memory cache implementations with ES6 Map-like API and different eviction strategies", "module": "./index.js", "main": "./lib/index.js", @@ -39,8 +39,8 @@ }, "dependencies": { "@thi.ng/api": "^7.1.9", - "@thi.ng/dcons": "^2.3.32", - "@thi.ng/transducers": "^7.9.0" + "@thi.ng/dcons": "^2.3.33", + "@thi.ng/transducers": "^7.9.1" }, "files": [ "*.js", diff --git a/packages/color/CHANGELOG.md b/packages/color/CHANGELOG.md index f24ce21213..0d1fe11462 100644 --- a/packages/color/CHANGELOG.md +++ b/packages/color/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.2.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/color@3.2.5...@thi.ng/color@3.2.6) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/color + + + + + ## [3.2.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/color@3.2.4...@thi.ng/color@3.2.5) (2021-08-19) **Note:** Version bump only for package @thi.ng/color diff --git a/packages/color/package.json b/packages/color/package.json index d94f6dd463..ea2fad9a09 100644 --- a/packages/color/package.json +++ b/packages/color/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/color", - "version": "3.2.5", + "version": "3.2.6", "description": "Array-based color types, CSS parsing, conversions, transformations, declarative theme generation, gradients, presets", "module": "./index.js", "main": "./lib/index.js", @@ -50,8 +50,8 @@ "@thi.ng/math": "^4.0.5", "@thi.ng/random": "^2.4.7", "@thi.ng/strings": "^2.1.6", - "@thi.ng/transducers": "^7.9.0", - "@thi.ng/vectors": "^6.1.1" + "@thi.ng/transducers": "^7.9.1", + "@thi.ng/vectors": "^6.1.2" }, "files": [ "*.js", diff --git a/packages/colored-noise/CHANGELOG.md b/packages/colored-noise/CHANGELOG.md index 62c56771bc..634a30faf4 100644 --- a/packages/colored-noise/CHANGELOG.md +++ b/packages/colored-noise/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.46](https://github.com/thi-ng/umbrella/compare/@thi.ng/colored-noise@0.1.45...@thi.ng/colored-noise@0.1.46) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/colored-noise + + + + + ## [0.1.45](https://github.com/thi-ng/umbrella/compare/@thi.ng/colored-noise@0.1.44...@thi.ng/colored-noise@0.1.45) (2021-08-19) **Note:** Version bump only for package @thi.ng/colored-noise diff --git a/packages/colored-noise/package.json b/packages/colored-noise/package.json index dd10f50572..e740ca1190 100644 --- a/packages/colored-noise/package.json +++ b/packages/colored-noise/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/colored-noise", - "version": "0.1.45", + "version": "0.1.46", "description": "Customizable O(1) ES6 generators for colored noise", "module": "./index.js", "main": "./lib/index.js", @@ -39,11 +39,11 @@ }, "devDependencies": { "@thi.ng/api": "^7.1.9", - "@thi.ng/dsp": "^3.0.29", - "@thi.ng/dsp-io-wav": "^1.0.5", - "@thi.ng/text-canvas": "^1.1.2", - "@thi.ng/transducers": "^7.9.0", - "@thi.ng/vectors": "^6.1.1" + "@thi.ng/dsp": "^3.0.30", + "@thi.ng/dsp-io-wav": "^1.0.6", + "@thi.ng/text-canvas": "^1.1.3", + "@thi.ng/transducers": "^7.9.1", + "@thi.ng/vectors": "^6.1.2" }, "dependencies": { "@thi.ng/binary": "^2.2.10", diff --git a/packages/csp/CHANGELOG.md b/packages/csp/CHANGELOG.md index 4abf2e1dfe..157cd95ae3 100644 --- a/packages/csp/CHANGELOG.md +++ b/packages/csp/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.1.73](https://github.com/thi-ng/umbrella/compare/@thi.ng/csp@1.1.72...@thi.ng/csp@1.1.73) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/csp + + + + + ## [1.1.72](https://github.com/thi-ng/umbrella/compare/@thi.ng/csp@1.1.71...@thi.ng/csp@1.1.72) (2021-08-19) **Note:** Version bump only for package @thi.ng/csp diff --git a/packages/csp/package.json b/packages/csp/package.json index b94794fa1f..2d5bde932f 100644 --- a/packages/csp/package.json +++ b/packages/csp/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/csp", - "version": "1.1.72", + "version": "1.1.73", "description": "ES6 promise based CSP primitives & operations", "module": "./index.js", "main": "./lib/index.js", @@ -45,9 +45,9 @@ "@thi.ng/api": "^7.1.9", "@thi.ng/arrays": "^1.0.2", "@thi.ng/checks": "^2.9.10", - "@thi.ng/dcons": "^2.3.32", + "@thi.ng/dcons": "^2.3.33", "@thi.ng/errors": "^1.3.4", - "@thi.ng/transducers": "^7.9.0" + "@thi.ng/transducers": "^7.9.1" }, "files": [ "*.js", diff --git a/packages/csv/CHANGELOG.md b/packages/csv/CHANGELOG.md index a61430d5a4..323071ab05 100644 --- a/packages/csv/CHANGELOG.md +++ b/packages/csv/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/csv@1.0.5...@thi.ng/csv@1.0.6) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/csv + + + + + ## [1.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/csv@1.0.4...@thi.ng/csv@1.0.5) (2021-08-19) **Note:** Version bump only for package @thi.ng/csv diff --git a/packages/csv/package.json b/packages/csv/package.json index 536cde93da..c462281a1e 100644 --- a/packages/csv/package.json +++ b/packages/csv/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/csv", - "version": "1.0.5", + "version": "1.0.6", "description": "Customizable, transducer-based CSV parser/object mapper and transformer", "module": "./index.js", "main": "./lib/index.js", @@ -41,7 +41,7 @@ "@thi.ng/api": "^7.1.9", "@thi.ng/checks": "^2.9.10", "@thi.ng/strings": "^2.1.6", - "@thi.ng/transducers": "^7.9.0" + "@thi.ng/transducers": "^7.9.1" }, "files": [ "*.js", diff --git a/packages/dcons/CHANGELOG.md b/packages/dcons/CHANGELOG.md index e6de825e94..1c129562e5 100644 --- a/packages/dcons/CHANGELOG.md +++ b/packages/dcons/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.3.33](https://github.com/thi-ng/umbrella/compare/@thi.ng/dcons@2.3.32...@thi.ng/dcons@2.3.33) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/dcons + + + + + ## [2.3.32](https://github.com/thi-ng/umbrella/compare/@thi.ng/dcons@2.3.31...@thi.ng/dcons@2.3.32) (2021-08-19) **Note:** Version bump only for package @thi.ng/dcons diff --git a/packages/dcons/package.json b/packages/dcons/package.json index 62ded3e46f..6a2c271f5b 100644 --- a/packages/dcons/package.json +++ b/packages/dcons/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/dcons", - "version": "2.3.32", + "version": "2.3.33", "description": "Double-linked lists with comprehensive set of operations (incl. optional self-organizing behaviors)", "module": "./index.js", "main": "./lib/index.js", @@ -44,7 +44,7 @@ "@thi.ng/equiv": "^1.0.45", "@thi.ng/errors": "^1.3.4", "@thi.ng/random": "^2.4.7", - "@thi.ng/transducers": "^7.9.0" + "@thi.ng/transducers": "^7.9.1" }, "files": [ "*.js", diff --git a/packages/dgraph-dot/CHANGELOG.md b/packages/dgraph-dot/CHANGELOG.md index a7f69a4e99..cff2ef7bf9 100644 --- a/packages/dgraph-dot/CHANGELOG.md +++ b/packages/dgraph-dot/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/dgraph-dot@1.0.5...@thi.ng/dgraph-dot@1.0.6) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/dgraph-dot + + + + + ## [1.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/dgraph-dot@1.0.4...@thi.ng/dgraph-dot@1.0.5) (2021-08-19) **Note:** Version bump only for package @thi.ng/dgraph-dot diff --git a/packages/dgraph-dot/package.json b/packages/dgraph-dot/package.json index b57fc2f556..178b619d18 100644 --- a/packages/dgraph-dot/package.json +++ b/packages/dgraph-dot/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/dgraph-dot", - "version": "1.0.5", + "version": "1.0.6", "description": "Customizable Graphviz DOT serialization for @thi.ng/dgraph", "module": "./index.js", "main": "./lib/index.js", @@ -39,7 +39,7 @@ }, "dependencies": { "@thi.ng/api": "^7.1.9", - "@thi.ng/dgraph": "^1.3.32", + "@thi.ng/dgraph": "^1.3.33", "@thi.ng/dot": "^1.2.37" }, "files": [ diff --git a/packages/dgraph/CHANGELOG.md b/packages/dgraph/CHANGELOG.md index 4cb3883093..935f9cd654 100644 --- a/packages/dgraph/CHANGELOG.md +++ b/packages/dgraph/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.3.33](https://github.com/thi-ng/umbrella/compare/@thi.ng/dgraph@1.3.32...@thi.ng/dgraph@1.3.33) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/dgraph + + + + + ## [1.3.32](https://github.com/thi-ng/umbrella/compare/@thi.ng/dgraph@1.3.31...@thi.ng/dgraph@1.3.32) (2021-08-19) **Note:** Version bump only for package @thi.ng/dgraph diff --git a/packages/dgraph/package.json b/packages/dgraph/package.json index e4a4fa0440..2f1823a360 100644 --- a/packages/dgraph/package.json +++ b/packages/dgraph/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/dgraph", - "version": "1.3.32", + "version": "1.3.33", "description": "Type-agnostic directed acyclic graph (DAG) & graph operations", "module": "./index.js", "main": "./lib/index.js", @@ -39,10 +39,10 @@ }, "dependencies": { "@thi.ng/api": "^7.1.9", - "@thi.ng/associative": "^5.2.13", + "@thi.ng/associative": "^5.2.14", "@thi.ng/equiv": "^1.0.45", "@thi.ng/errors": "^1.3.4", - "@thi.ng/transducers": "^7.9.0" + "@thi.ng/transducers": "^7.9.1" }, "files": [ "*.js", diff --git a/packages/distance/CHANGELOG.md b/packages/distance/CHANGELOG.md index bfe173e3bf..49ff47de28 100644 --- a/packages/distance/CHANGELOG.md +++ b/packages/distance/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/distance@1.0.5...@thi.ng/distance@1.0.6) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/distance + + + + + ## [1.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/distance@1.0.4...@thi.ng/distance@1.0.5) (2021-08-19) **Note:** Version bump only for package @thi.ng/distance diff --git a/packages/distance/package.json b/packages/distance/package.json index ea6a39fd6d..204a52155a 100644 --- a/packages/distance/package.json +++ b/packages/distance/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/distance", - "version": "1.0.5", + "version": "1.0.6", "description": "N-dimensional distance metrics & K-nearest neighborhoods for point queries", "module": "./index.js", "main": "./lib/index.js", @@ -41,7 +41,7 @@ "@thi.ng/api": "^7.1.9", "@thi.ng/heaps": "^1.3.0", "@thi.ng/math": "^4.0.5", - "@thi.ng/vectors": "^6.1.1" + "@thi.ng/vectors": "^6.1.2" }, "files": [ "*.js", diff --git a/packages/dsp-io-wav/CHANGELOG.md b/packages/dsp-io-wav/CHANGELOG.md index 64ce8579b8..bd08df7ab4 100644 --- a/packages/dsp-io-wav/CHANGELOG.md +++ b/packages/dsp-io-wav/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/dsp-io-wav@1.0.5...@thi.ng/dsp-io-wav@1.0.6) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/dsp-io-wav + + + + + ## [1.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/dsp-io-wav@1.0.4...@thi.ng/dsp-io-wav@1.0.5) (2021-08-19) **Note:** Version bump only for package @thi.ng/dsp-io-wav diff --git a/packages/dsp-io-wav/package.json b/packages/dsp-io-wav/package.json index 85c41e2903..5a589bcd38 100644 --- a/packages/dsp-io-wav/package.json +++ b/packages/dsp-io-wav/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/dsp-io-wav", - "version": "1.0.5", + "version": "1.0.6", "description": "WAV file format generation", "module": "./index.js", "main": "./lib/index.js", @@ -40,8 +40,8 @@ "dependencies": { "@thi.ng/api": "^7.1.9", "@thi.ng/binary": "^2.2.10", - "@thi.ng/transducers": "^7.9.0", - "@thi.ng/transducers-binary": "^1.0.3" + "@thi.ng/transducers": "^7.9.1", + "@thi.ng/transducers-binary": "^1.0.4" }, "files": [ "*.js", diff --git a/packages/dsp/CHANGELOG.md b/packages/dsp/CHANGELOG.md index 875b8a4e3d..7475793128 100644 --- a/packages/dsp/CHANGELOG.md +++ b/packages/dsp/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.0.30](https://github.com/thi-ng/umbrella/compare/@thi.ng/dsp@3.0.29...@thi.ng/dsp@3.0.30) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/dsp + + + + + ## [3.0.29](https://github.com/thi-ng/umbrella/compare/@thi.ng/dsp@3.0.28...@thi.ng/dsp@3.0.29) (2021-08-19) **Note:** Version bump only for package @thi.ng/dsp diff --git a/packages/dsp/package.json b/packages/dsp/package.json index 7f726c8232..7e43f2cdd2 100644 --- a/packages/dsp/package.json +++ b/packages/dsp/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/dsp", - "version": "3.0.29", + "version": "3.0.30", "description": "Composable signal generators, oscillators, filters, FFT, spectrum, windowing & related DSP utils", "module": "./index.js", "main": "./lib/index.js", @@ -43,7 +43,7 @@ "@thi.ng/errors": "^1.3.4", "@thi.ng/math": "^4.0.5", "@thi.ng/random": "^2.4.7", - "@thi.ng/transducers": "^7.9.0" + "@thi.ng/transducers": "^7.9.1" }, "files": [ "*.js", diff --git a/packages/ecs/CHANGELOG.md b/packages/ecs/CHANGELOG.md index 6e508bba25..023aeed9c4 100644 --- a/packages/ecs/CHANGELOG.md +++ b/packages/ecs/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.5.24](https://github.com/thi-ng/umbrella/compare/@thi.ng/ecs@0.5.23...@thi.ng/ecs@0.5.24) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/ecs + + + + + ## [0.5.23](https://github.com/thi-ng/umbrella/compare/@thi.ng/ecs@0.5.22...@thi.ng/ecs@0.5.23) (2021-08-19) **Note:** Version bump only for package @thi.ng/ecs diff --git a/packages/ecs/package.json b/packages/ecs/package.json index 055a39f60d..3a99cacbfa 100644 --- a/packages/ecs/package.json +++ b/packages/ecs/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/ecs", - "version": "0.5.23", + "version": "0.5.24", "description": "Entity Component System based around typed arrays & sparse sets", "module": "./index.js", "main": "./lib/index.js", @@ -42,13 +42,13 @@ }, "dependencies": { "@thi.ng/api": "^7.1.9", - "@thi.ng/associative": "^5.2.13", + "@thi.ng/associative": "^5.2.14", "@thi.ng/binary": "^2.2.10", "@thi.ng/checks": "^2.9.10", - "@thi.ng/dcons": "^2.3.32", + "@thi.ng/dcons": "^2.3.33", "@thi.ng/idgen": "^1.0.4", "@thi.ng/malloc": "^5.0.13", - "@thi.ng/transducers": "^7.9.0", + "@thi.ng/transducers": "^7.9.1", "tslib": "^2.3.0" }, "files": [ diff --git a/packages/egf/CHANGELOG.md b/packages/egf/CHANGELOG.md index fd849cffc6..9e02144123 100644 --- a/packages/egf/CHANGELOG.md +++ b/packages/egf/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.4.16](https://github.com/thi-ng/umbrella/compare/@thi.ng/egf@0.4.15...@thi.ng/egf@0.4.16) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/egf + + + + + ## [0.4.15](https://github.com/thi-ng/umbrella/compare/@thi.ng/egf@0.4.14...@thi.ng/egf@0.4.15) (2021-08-19) **Note:** Version bump only for package @thi.ng/egf diff --git a/packages/egf/package.json b/packages/egf/package.json index bb59d8b1e6..4b02f11835 100644 --- a/packages/egf/package.json +++ b/packages/egf/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/egf", - "version": "0.4.15", + "version": "0.4.16", "description": "Extensible Graph Format", "module": "./index.js", "main": "./lib/index.js", @@ -37,13 +37,13 @@ }, "dependencies": { "@thi.ng/api": "^7.1.9", - "@thi.ng/associative": "^5.2.13", + "@thi.ng/associative": "^5.2.14", "@thi.ng/checks": "^2.9.10", "@thi.ng/dot": "^1.2.37", "@thi.ng/errors": "^1.3.4", "@thi.ng/prefixes": "^1.0.2", "@thi.ng/strings": "^2.1.6", - "@thi.ng/transducers-binary": "^1.0.3" + "@thi.ng/transducers-binary": "^1.0.4" }, "files": [ "*.js", diff --git a/packages/fsm/CHANGELOG.md b/packages/fsm/CHANGELOG.md index c9a85c8eca..cae8bd4deb 100644 --- a/packages/fsm/CHANGELOG.md +++ b/packages/fsm/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.4.62](https://github.com/thi-ng/umbrella/compare/@thi.ng/fsm@2.4.61...@thi.ng/fsm@2.4.62) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/fsm + + + + + ## [2.4.61](https://github.com/thi-ng/umbrella/compare/@thi.ng/fsm@2.4.60...@thi.ng/fsm@2.4.61) (2021-08-19) **Note:** Version bump only for package @thi.ng/fsm diff --git a/packages/fsm/package.json b/packages/fsm/package.json index 622f37b161..0f10d92084 100644 --- a/packages/fsm/package.json +++ b/packages/fsm/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/fsm", - "version": "2.4.61", + "version": "2.4.62", "description": "Composable primitives for building declarative, transducer based Finite-State Machines & matchers for arbitrary data streams", "module": "./index.js", "main": "./lib/index.js", @@ -43,7 +43,7 @@ "@thi.ng/equiv": "^1.0.45", "@thi.ng/errors": "^1.3.4", "@thi.ng/strings": "^2.1.6", - "@thi.ng/transducers": "^7.9.0" + "@thi.ng/transducers": "^7.9.1" }, "files": [ "*.js", diff --git a/packages/fuzzy-viz/CHANGELOG.md b/packages/fuzzy-viz/CHANGELOG.md index 62641dfc47..d916206629 100644 --- a/packages/fuzzy-viz/CHANGELOG.md +++ b/packages/fuzzy-viz/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/fuzzy-viz@1.0.6...@thi.ng/fuzzy-viz@1.0.7) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/fuzzy-viz + + + + + ## [1.0.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/fuzzy-viz@1.0.5...@thi.ng/fuzzy-viz@1.0.6) (2021-08-19) **Note:** Version bump only for package @thi.ng/fuzzy-viz diff --git a/packages/fuzzy-viz/package.json b/packages/fuzzy-viz/package.json index b8dff45619..8bc22db75d 100644 --- a/packages/fuzzy-viz/package.json +++ b/packages/fuzzy-viz/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/fuzzy-viz", - "version": "1.0.6", + "version": "1.0.7", "description": "Visualization, instrumentation & introspection utils for @thi.ng/fuzzy", "module": "./index.js", "main": "./lib/index.js", @@ -41,10 +41,10 @@ "@thi.ng/api": "^7.1.9", "@thi.ng/fuzzy": "^1.0.3", "@thi.ng/hiccup": "^3.6.21", - "@thi.ng/hiccup-svg": "^3.7.32", + "@thi.ng/hiccup-svg": "^3.7.33", "@thi.ng/math": "^4.0.5", "@thi.ng/strings": "^2.1.6", - "@thi.ng/text-canvas": "^1.1.2" + "@thi.ng/text-canvas": "^1.1.3" }, "files": [ "*.js", diff --git a/packages/geom-accel/CHANGELOG.md b/packages/geom-accel/CHANGELOG.md index d07cbe5d01..94f6df5384 100644 --- a/packages/geom-accel/CHANGELOG.md +++ b/packages/geom-accel/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.1.59](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-accel@2.1.58...@thi.ng/geom-accel@2.1.59) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/geom-accel + + + + + ## [2.1.58](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-accel@2.1.57...@thi.ng/geom-accel@2.1.58) (2021-08-19) **Note:** Version bump only for package @thi.ng/geom-accel diff --git a/packages/geom-accel/package.json b/packages/geom-accel/package.json index 0b2fb3f204..381f563b70 100644 --- a/packages/geom-accel/package.json +++ b/packages/geom-accel/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-accel", - "version": "2.1.58", + "version": "2.1.59", "description": "n-D spatial indexing data structures with a shared ES6 Map/Set-like API", "module": "./index.js", "main": "./lib/index.js", @@ -43,12 +43,12 @@ "@thi.ng/arrays": "^1.0.2", "@thi.ng/checks": "^2.9.10", "@thi.ng/equiv": "^1.0.45", - "@thi.ng/geom-api": "^2.0.29", - "@thi.ng/geom-isec": "^1.0.3", + "@thi.ng/geom-api": "^2.0.30", + "@thi.ng/geom-isec": "^1.0.4", "@thi.ng/heaps": "^1.3.0", "@thi.ng/math": "^4.0.5", - "@thi.ng/transducers": "^7.9.0", - "@thi.ng/vectors": "^6.1.1" + "@thi.ng/transducers": "^7.9.1", + "@thi.ng/vectors": "^6.1.2" }, "files": [ "*.js", diff --git a/packages/geom-api/CHANGELOG.md b/packages/geom-api/CHANGELOG.md index 5a2bc50f11..f273f2a1fc 100644 --- a/packages/geom-api/CHANGELOG.md +++ b/packages/geom-api/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.0.30](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-api@2.0.29...@thi.ng/geom-api@2.0.30) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/geom-api + + + + + ## [2.0.29](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-api@2.0.28...@thi.ng/geom-api@2.0.29) (2021-08-19) **Note:** Version bump only for package @thi.ng/geom-api diff --git a/packages/geom-api/package.json b/packages/geom-api/package.json index cfd387814c..d45303c1ec 100644 --- a/packages/geom-api/package.json +++ b/packages/geom-api/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-api", - "version": "2.0.29", + "version": "2.0.30", "description": "Shared type & interface declarations for @thi.ng/geom packages", "module": "./index.js", "main": "./lib/index.js", @@ -39,7 +39,7 @@ }, "dependencies": { "@thi.ng/api": "^7.1.9", - "@thi.ng/vectors": "^6.1.1" + "@thi.ng/vectors": "^6.1.2" }, "files": [ "*.js", diff --git a/packages/geom-arc/CHANGELOG.md b/packages/geom-arc/CHANGELOG.md index 0a50ac0b33..8cf319a2d2 100644 --- a/packages/geom-arc/CHANGELOG.md +++ b/packages/geom-arc/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-arc@1.0.3...@thi.ng/geom-arc@1.0.4) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/geom-arc + + + + + ## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-arc@1.0.2...@thi.ng/geom-arc@1.0.3) (2021-08-19) **Note:** Version bump only for package @thi.ng/geom-arc diff --git a/packages/geom-arc/package.json b/packages/geom-arc/package.json index 88c6ce0016..7d71270654 100644 --- a/packages/geom-arc/package.json +++ b/packages/geom-arc/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-arc", - "version": "1.0.3", + "version": "1.0.4", "description": "2D circular / elliptic arc operations", "module": "./index.js", "main": "./lib/index.js", @@ -39,10 +39,10 @@ }, "dependencies": { "@thi.ng/checks": "^2.9.10", - "@thi.ng/geom-api": "^2.0.29", - "@thi.ng/geom-resample": "^1.0.3", + "@thi.ng/geom-api": "^2.0.30", + "@thi.ng/geom-resample": "^1.0.4", "@thi.ng/math": "^4.0.5", - "@thi.ng/vectors": "^6.1.1" + "@thi.ng/vectors": "^6.1.2" }, "files": [ "*.js", diff --git a/packages/geom-clip-line/CHANGELOG.md b/packages/geom-clip-line/CHANGELOG.md index 6d0691695b..0208c7037d 100644 --- a/packages/geom-clip-line/CHANGELOG.md +++ b/packages/geom-clip-line/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.2.44](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-clip-line@1.2.43...@thi.ng/geom-clip-line@1.2.44) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/geom-clip-line + + + + + ## [1.2.43](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-clip-line@1.2.42...@thi.ng/geom-clip-line@1.2.43) (2021-08-19) **Note:** Version bump only for package @thi.ng/geom-clip-line diff --git a/packages/geom-clip-line/package.json b/packages/geom-clip-line/package.json index e7b0a30394..9df8d0ced6 100644 --- a/packages/geom-clip-line/package.json +++ b/packages/geom-clip-line/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-clip-line", - "version": "1.2.43", + "version": "1.2.44", "description": "2D line clipping (Liang-Barsky)", "module": "./index.js", "main": "./lib/index.js", @@ -39,8 +39,8 @@ }, "dependencies": { "@thi.ng/api": "^7.1.9", - "@thi.ng/geom-isec": "^1.0.3", - "@thi.ng/vectors": "^6.1.1" + "@thi.ng/geom-isec": "^1.0.4", + "@thi.ng/vectors": "^6.1.2" }, "files": [ "*.js", diff --git a/packages/geom-clip-poly/CHANGELOG.md b/packages/geom-clip-poly/CHANGELOG.md index 05eed1b6ea..4560ab1c4c 100644 --- a/packages/geom-clip-poly/CHANGELOG.md +++ b/packages/geom-clip-poly/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.69](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-clip-poly@1.0.68...@thi.ng/geom-clip-poly@1.0.69) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/geom-clip-poly + + + + + ## [1.0.68](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-clip-poly@1.0.67...@thi.ng/geom-clip-poly@1.0.68) (2021-08-19) **Note:** Version bump only for package @thi.ng/geom-clip-poly diff --git a/packages/geom-clip-poly/package.json b/packages/geom-clip-poly/package.json index eb79675c82..480aa72bb2 100644 --- a/packages/geom-clip-poly/package.json +++ b/packages/geom-clip-poly/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-clip-poly", - "version": "1.0.68", + "version": "1.0.69", "description": "2D convex polygon clipping (Sutherland-Hodgeman)", "module": "./index.js", "main": "./lib/index.js", @@ -38,10 +38,10 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/geom-isec": "^1.0.3", - "@thi.ng/geom-poly-utils": "^1.0.3", + "@thi.ng/geom-isec": "^1.0.4", + "@thi.ng/geom-poly-utils": "^1.0.4", "@thi.ng/math": "^4.0.5", - "@thi.ng/vectors": "^6.1.1" + "@thi.ng/vectors": "^6.1.2" }, "files": [ "*.js", diff --git a/packages/geom-closest-point/CHANGELOG.md b/packages/geom-closest-point/CHANGELOG.md index c60f2aa1b3..79fd3e7a30 100644 --- a/packages/geom-closest-point/CHANGELOG.md +++ b/packages/geom-closest-point/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-closest-point@1.0.3...@thi.ng/geom-closest-point@1.0.4) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/geom-closest-point + + + + + ## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-closest-point@1.0.2...@thi.ng/geom-closest-point@1.0.3) (2021-08-19) **Note:** Version bump only for package @thi.ng/geom-closest-point diff --git a/packages/geom-closest-point/package.json b/packages/geom-closest-point/package.json index 3d887a6628..fde88bb823 100644 --- a/packages/geom-closest-point/package.json +++ b/packages/geom-closest-point/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-closest-point", - "version": "1.0.3", + "version": "1.0.4", "description": "2D / 3D closest point / proximity helpers", "module": "./index.js", "main": "./lib/index.js", @@ -40,7 +40,7 @@ "dependencies": { "@thi.ng/api": "^7.1.9", "@thi.ng/math": "^4.0.5", - "@thi.ng/vectors": "^6.1.1" + "@thi.ng/vectors": "^6.1.2" }, "files": [ "*.js", diff --git a/packages/geom-fuzz/CHANGELOG.md b/packages/geom-fuzz/CHANGELOG.md index b8ff99a120..544d62c309 100644 --- a/packages/geom-fuzz/CHANGELOG.md +++ b/packages/geom-fuzz/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-fuzz@1.0.5...@thi.ng/geom-fuzz@1.0.6) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/geom-fuzz + + + + + ## [1.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-fuzz@1.0.4...@thi.ng/geom-fuzz@1.0.5) (2021-08-19) **Note:** Version bump only for package @thi.ng/geom-fuzz diff --git a/packages/geom-fuzz/package.json b/packages/geom-fuzz/package.json index d343f60a46..bc15c109b6 100644 --- a/packages/geom-fuzz/package.json +++ b/packages/geom-fuzz/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-fuzz", - "version": "1.0.5", + "version": "1.0.6", "description": "Highly configurable, fuzzy line & polygon creation with presets and composable fill & stroke styles. Canvas & SVG support", "module": "./index.js", "main": "./lib/index.js", @@ -38,15 +38,15 @@ }, "dependencies": { "@thi.ng/api": "^7.1.9", - "@thi.ng/associative": "^5.2.13", - "@thi.ng/color": "^3.2.5", - "@thi.ng/geom": "^2.1.26", - "@thi.ng/geom-api": "^2.0.29", - "@thi.ng/geom-clip-line": "^1.2.43", - "@thi.ng/geom-resample": "^1.0.3", - "@thi.ng/grid-iterators": "^1.0.3", - "@thi.ng/transducers": "^7.9.0", - "@thi.ng/vectors": "^6.1.1" + "@thi.ng/associative": "^5.2.14", + "@thi.ng/color": "^3.2.6", + "@thi.ng/geom": "^2.1.27", + "@thi.ng/geom-api": "^2.0.30", + "@thi.ng/geom-clip-line": "^1.2.44", + "@thi.ng/geom-resample": "^1.0.4", + "@thi.ng/grid-iterators": "^1.0.4", + "@thi.ng/transducers": "^7.9.1", + "@thi.ng/vectors": "^6.1.2" }, "files": [ "*.js", diff --git a/packages/geom-hull/CHANGELOG.md b/packages/geom-hull/CHANGELOG.md index 5814a03093..928d2bd0ce 100644 --- a/packages/geom-hull/CHANGELOG.md +++ b/packages/geom-hull/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-hull@1.0.3...@thi.ng/geom-hull@1.0.4) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/geom-hull + + + + + ## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-hull@1.0.2...@thi.ng/geom-hull@1.0.3) (2021-08-19) **Note:** Version bump only for package @thi.ng/geom-hull diff --git a/packages/geom-hull/package.json b/packages/geom-hull/package.json index 4e9182d6d9..0e1aebec6e 100644 --- a/packages/geom-hull/package.json +++ b/packages/geom-hull/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-hull", - "version": "1.0.3", + "version": "1.0.4", "description": "Fast 2D convex hull (Graham Scan)", "module": "./index.js", "main": "./lib/index.js", @@ -39,7 +39,7 @@ }, "dependencies": { "@thi.ng/math": "^4.0.5", - "@thi.ng/vectors": "^6.1.1" + "@thi.ng/vectors": "^6.1.2" }, "files": [ "*.js", diff --git a/packages/geom-io-obj/CHANGELOG.md b/packages/geom-io-obj/CHANGELOG.md index 0ec521926b..957057632c 100644 --- a/packages/geom-io-obj/CHANGELOG.md +++ b/packages/geom-io-obj/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.59](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-io-obj@0.1.58...@thi.ng/geom-io-obj@0.1.59) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/geom-io-obj + + + + + ## [0.1.58](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-io-obj@0.1.57...@thi.ng/geom-io-obj@0.1.58) (2021-08-19) **Note:** Version bump only for package @thi.ng/geom-io-obj diff --git a/packages/geom-io-obj/package.json b/packages/geom-io-obj/package.json index 272f9477e7..ab4d048b53 100644 --- a/packages/geom-io-obj/package.json +++ b/packages/geom-io-obj/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-io-obj", - "version": "0.1.58", + "version": "0.1.59", "description": "Wavefront OBJ parser (& exporter soon)", "module": "./index.js", "main": "./lib/index.js", @@ -39,7 +39,7 @@ }, "dependencies": { "@thi.ng/api": "^7.1.9", - "@thi.ng/vectors": "^6.1.1" + "@thi.ng/vectors": "^6.1.2" }, "files": [ "*.js", diff --git a/packages/geom-isec/CHANGELOG.md b/packages/geom-isec/CHANGELOG.md index 1d55c8e9e7..9db87949f8 100644 --- a/packages/geom-isec/CHANGELOG.md +++ b/packages/geom-isec/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-isec@1.0.3...@thi.ng/geom-isec@1.0.4) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/geom-isec + + + + + ## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-isec@1.0.2...@thi.ng/geom-isec@1.0.3) (2021-08-19) **Note:** Version bump only for package @thi.ng/geom-isec diff --git a/packages/geom-isec/package.json b/packages/geom-isec/package.json index 18e4bc8b38..c9ba3b257b 100644 --- a/packages/geom-isec/package.json +++ b/packages/geom-isec/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-isec", - "version": "1.0.3", + "version": "1.0.4", "description": "2D/3D shape intersection checks", "module": "./index.js", "main": "./lib/index.js", @@ -39,10 +39,10 @@ }, "dependencies": { "@thi.ng/api": "^7.1.9", - "@thi.ng/geom-api": "^2.0.29", - "@thi.ng/geom-closest-point": "^1.0.3", + "@thi.ng/geom-api": "^2.0.30", + "@thi.ng/geom-closest-point": "^1.0.4", "@thi.ng/math": "^4.0.5", - "@thi.ng/vectors": "^6.1.1" + "@thi.ng/vectors": "^6.1.2" }, "files": [ "*.js", diff --git a/packages/geom-isoline/CHANGELOG.md b/packages/geom-isoline/CHANGELOG.md index 2d0a362dde..446b37c7d0 100644 --- a/packages/geom-isoline/CHANGELOG.md +++ b/packages/geom-isoline/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.1.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-isoline@1.1.2...@thi.ng/geom-isoline@1.1.3) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/geom-isoline + + + + + ## [1.1.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-isoline@1.1.1...@thi.ng/geom-isoline@1.1.2) (2021-08-19) **Note:** Version bump only for package @thi.ng/geom-isoline diff --git a/packages/geom-isoline/package.json b/packages/geom-isoline/package.json index 8a07c39350..4d990c68a3 100644 --- a/packages/geom-isoline/package.json +++ b/packages/geom-isoline/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-isoline", - "version": "1.1.2", + "version": "1.1.3", "description": "Fast 2D contour line extraction / generation", "module": "./index.js", "main": "./lib/index.js", @@ -39,8 +39,8 @@ }, "dependencies": { "@thi.ng/api": "^7.1.9", - "@thi.ng/transducers": "^7.9.0", - "@thi.ng/vectors": "^6.1.1" + "@thi.ng/transducers": "^7.9.1", + "@thi.ng/vectors": "^6.1.2" }, "files": [ "*.js", diff --git a/packages/geom-poly-utils/CHANGELOG.md b/packages/geom-poly-utils/CHANGELOG.md index c674e9f417..d6e98b0ad8 100644 --- a/packages/geom-poly-utils/CHANGELOG.md +++ b/packages/geom-poly-utils/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-poly-utils@1.0.3...@thi.ng/geom-poly-utils@1.0.4) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/geom-poly-utils + + + + + ## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-poly-utils@1.0.2...@thi.ng/geom-poly-utils@1.0.3) (2021-08-19) **Note:** Version bump only for package @thi.ng/geom-poly-utils diff --git a/packages/geom-poly-utils/package.json b/packages/geom-poly-utils/package.json index dab3b12e3b..c1d6a80526 100644 --- a/packages/geom-poly-utils/package.json +++ b/packages/geom-poly-utils/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-poly-utils", - "version": "1.0.3", + "version": "1.0.4", "description": "2D polygon/polyline analysis & processing utilities", "module": "./index.js", "main": "./lib/index.js", @@ -40,9 +40,9 @@ "dependencies": { "@thi.ng/api": "^7.1.9", "@thi.ng/errors": "^1.3.4", - "@thi.ng/geom-api": "^2.0.29", + "@thi.ng/geom-api": "^2.0.30", "@thi.ng/math": "^4.0.5", - "@thi.ng/vectors": "^6.1.1" + "@thi.ng/vectors": "^6.1.2" }, "files": [ "*.js", diff --git a/packages/geom-resample/CHANGELOG.md b/packages/geom-resample/CHANGELOG.md index eb88f58193..de9ae09f5b 100644 --- a/packages/geom-resample/CHANGELOG.md +++ b/packages/geom-resample/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-resample@1.0.3...@thi.ng/geom-resample@1.0.4) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/geom-resample + + + + + ## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-resample@1.0.2...@thi.ng/geom-resample@1.0.3) (2021-08-19) **Note:** Version bump only for package @thi.ng/geom-resample diff --git a/packages/geom-resample/package.json b/packages/geom-resample/package.json index 55758e92b3..4ad7bdd891 100644 --- a/packages/geom-resample/package.json +++ b/packages/geom-resample/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-resample", - "version": "1.0.3", + "version": "1.0.4", "description": "Customizable nD polyline interpolation, re-sampling, splitting & nearest point computation", "module": "./index.js", "main": "./lib/index.js", @@ -39,10 +39,10 @@ }, "dependencies": { "@thi.ng/checks": "^2.9.10", - "@thi.ng/geom-api": "^2.0.29", - "@thi.ng/geom-closest-point": "^1.0.3", + "@thi.ng/geom-api": "^2.0.30", + "@thi.ng/geom-closest-point": "^1.0.4", "@thi.ng/math": "^4.0.5", - "@thi.ng/vectors": "^6.1.1" + "@thi.ng/vectors": "^6.1.2" }, "files": [ "*.js", diff --git a/packages/geom-splines/CHANGELOG.md b/packages/geom-splines/CHANGELOG.md index f2204c84eb..cf8da11bd5 100644 --- a/packages/geom-splines/CHANGELOG.md +++ b/packages/geom-splines/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-splines@1.0.3...@thi.ng/geom-splines@1.0.4) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/geom-splines + + + + + ## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-splines@1.0.2...@thi.ng/geom-splines@1.0.3) (2021-08-19) **Note:** Version bump only for package @thi.ng/geom-splines diff --git a/packages/geom-splines/package.json b/packages/geom-splines/package.json index 3b2ba04ae7..07315b3c7f 100644 --- a/packages/geom-splines/package.json +++ b/packages/geom-splines/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-splines", - "version": "1.0.3", + "version": "1.0.4", "description": "nD cubic & quadratic curve analysis, conversion, interpolation, splitting", "module": "./index.js", "main": "./lib/index.js", @@ -40,11 +40,11 @@ "dependencies": { "@thi.ng/api": "^7.1.9", "@thi.ng/checks": "^2.9.10", - "@thi.ng/geom-api": "^2.0.29", - "@thi.ng/geom-arc": "^1.0.3", - "@thi.ng/geom-resample": "^1.0.3", + "@thi.ng/geom-api": "^2.0.30", + "@thi.ng/geom-arc": "^1.0.4", + "@thi.ng/geom-resample": "^1.0.4", "@thi.ng/math": "^4.0.5", - "@thi.ng/vectors": "^6.1.1" + "@thi.ng/vectors": "^6.1.2" }, "files": [ "*.js", diff --git a/packages/geom-subdiv-curve/CHANGELOG.md b/packages/geom-subdiv-curve/CHANGELOG.md index 6793637565..25368f2b9a 100644 --- a/packages/geom-subdiv-curve/CHANGELOG.md +++ b/packages/geom-subdiv-curve/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-subdiv-curve@1.0.3...@thi.ng/geom-subdiv-curve@1.0.4) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/geom-subdiv-curve + + + + + ## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-subdiv-curve@1.0.2...@thi.ng/geom-subdiv-curve@1.0.3) (2021-08-19) **Note:** Version bump only for package @thi.ng/geom-subdiv-curve diff --git a/packages/geom-subdiv-curve/package.json b/packages/geom-subdiv-curve/package.json index 089ff63379..afacc52129 100644 --- a/packages/geom-subdiv-curve/package.json +++ b/packages/geom-subdiv-curve/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-subdiv-curve", - "version": "1.0.3", + "version": "1.0.4", "description": "Freely customizable, iterative nD subdivision curves for open / closed geometries", "module": "./index.js", "main": "./lib/index.js", @@ -39,9 +39,9 @@ }, "dependencies": { "@thi.ng/api": "^7.1.9", - "@thi.ng/geom-api": "^2.0.29", - "@thi.ng/transducers": "^7.9.0", - "@thi.ng/vectors": "^6.1.1" + "@thi.ng/geom-api": "^2.0.30", + "@thi.ng/transducers": "^7.9.1", + "@thi.ng/vectors": "^6.1.2" }, "files": [ "*.js", diff --git a/packages/geom-tessellate/CHANGELOG.md b/packages/geom-tessellate/CHANGELOG.md index dbe55593bc..eab055623f 100644 --- a/packages/geom-tessellate/CHANGELOG.md +++ b/packages/geom-tessellate/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-tessellate@1.0.3...@thi.ng/geom-tessellate@1.0.4) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/geom-tessellate + + + + + ## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-tessellate@1.0.2...@thi.ng/geom-tessellate@1.0.3) (2021-08-19) **Note:** Version bump only for package @thi.ng/geom-tessellate diff --git a/packages/geom-tessellate/package.json b/packages/geom-tessellate/package.json index 547e50dab2..51db68a298 100644 --- a/packages/geom-tessellate/package.json +++ b/packages/geom-tessellate/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-tessellate", - "version": "1.0.3", + "version": "1.0.4", "description": "2D/3D convex polygon tessellators", "module": "./index.js", "main": "./lib/index.js", @@ -39,11 +39,11 @@ }, "dependencies": { "@thi.ng/checks": "^2.9.10", - "@thi.ng/geom-api": "^2.0.29", - "@thi.ng/geom-isec": "^1.0.3", - "@thi.ng/geom-poly-utils": "^1.0.3", - "@thi.ng/transducers": "^7.9.0", - "@thi.ng/vectors": "^6.1.1" + "@thi.ng/geom-api": "^2.0.30", + "@thi.ng/geom-isec": "^1.0.4", + "@thi.ng/geom-poly-utils": "^1.0.4", + "@thi.ng/transducers": "^7.9.1", + "@thi.ng/vectors": "^6.1.2" }, "files": [ "*.js", diff --git a/packages/geom-voronoi/CHANGELOG.md b/packages/geom-voronoi/CHANGELOG.md index 7c33ae1a34..d5d4c7e1ef 100644 --- a/packages/geom-voronoi/CHANGELOG.md +++ b/packages/geom-voronoi/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-voronoi@1.0.3...@thi.ng/geom-voronoi@1.0.4) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/geom-voronoi + + + + + ## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-voronoi@1.0.2...@thi.ng/geom-voronoi@1.0.3) (2021-08-19) **Note:** Version bump only for package @thi.ng/geom-voronoi diff --git a/packages/geom-voronoi/package.json b/packages/geom-voronoi/package.json index a64e0db3c5..475f0f2bf3 100644 --- a/packages/geom-voronoi/package.json +++ b/packages/geom-voronoi/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-voronoi", - "version": "1.0.3", + "version": "1.0.4", "description": "Fast, incremental 2D Delaunay & Voronoi mesh implementation", "module": "./index.js", "main": "./lib/index.js", @@ -40,13 +40,13 @@ "dependencies": { "@thi.ng/api": "^7.1.9", "@thi.ng/checks": "^2.9.10", - "@thi.ng/geom-clip-line": "^1.2.43", - "@thi.ng/geom-clip-poly": "^1.0.68", - "@thi.ng/geom-isec": "^1.0.3", - "@thi.ng/geom-poly-utils": "^1.0.3", + "@thi.ng/geom-clip-line": "^1.2.44", + "@thi.ng/geom-clip-poly": "^1.0.69", + "@thi.ng/geom-isec": "^1.0.4", + "@thi.ng/geom-poly-utils": "^1.0.4", "@thi.ng/math": "^4.0.5", "@thi.ng/quad-edge": "^1.0.1", - "@thi.ng/vectors": "^6.1.1" + "@thi.ng/vectors": "^6.1.2" }, "files": [ "*.js", diff --git a/packages/geom/CHANGELOG.md b/packages/geom/CHANGELOG.md index 71df2cbc04..6a9887bb3a 100644 --- a/packages/geom/CHANGELOG.md +++ b/packages/geom/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.1.27](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom@2.1.26...@thi.ng/geom@2.1.27) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/geom + + + + + ## [2.1.26](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom@2.1.25...@thi.ng/geom@2.1.26) (2021-08-19) **Note:** Version bump only for package @thi.ng/geom diff --git a/packages/geom/package.json b/packages/geom/package.json index 3bdd9475ce..2953624368 100644 --- a/packages/geom/package.json +++ b/packages/geom/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom", - "version": "2.1.26", + "version": "2.1.27", "description": "Functional, polymorphic API for 2D geometry types & SVG generation", "module": "./index.js", "main": "./lib/index.js", @@ -44,26 +44,26 @@ "@thi.ng/defmulti": "^1.3.16", "@thi.ng/equiv": "^1.0.45", "@thi.ng/errors": "^1.3.4", - "@thi.ng/geom-api": "^2.0.29", - "@thi.ng/geom-arc": "^1.0.3", - "@thi.ng/geom-clip-line": "^1.2.43", - "@thi.ng/geom-clip-poly": "^1.0.68", - "@thi.ng/geom-closest-point": "^1.0.3", - "@thi.ng/geom-hull": "^1.0.3", - "@thi.ng/geom-isec": "^1.0.3", - "@thi.ng/geom-poly-utils": "^1.0.3", - "@thi.ng/geom-resample": "^1.0.3", - "@thi.ng/geom-splines": "^1.0.3", - "@thi.ng/geom-subdiv-curve": "^1.0.3", - "@thi.ng/geom-tessellate": "^1.0.3", + "@thi.ng/geom-api": "^2.0.30", + "@thi.ng/geom-arc": "^1.0.4", + "@thi.ng/geom-clip-line": "^1.2.44", + "@thi.ng/geom-clip-poly": "^1.0.69", + "@thi.ng/geom-closest-point": "^1.0.4", + "@thi.ng/geom-hull": "^1.0.4", + "@thi.ng/geom-isec": "^1.0.4", + "@thi.ng/geom-poly-utils": "^1.0.4", + "@thi.ng/geom-resample": "^1.0.4", + "@thi.ng/geom-splines": "^1.0.4", + "@thi.ng/geom-subdiv-curve": "^1.0.4", + "@thi.ng/geom-tessellate": "^1.0.4", "@thi.ng/hiccup": "^3.6.21", - "@thi.ng/hiccup-svg": "^3.7.32", + "@thi.ng/hiccup-svg": "^3.7.33", "@thi.ng/math": "^4.0.5", - "@thi.ng/matrices": "^1.0.3", + "@thi.ng/matrices": "^1.0.4", "@thi.ng/random": "^2.4.7", "@thi.ng/strings": "^2.1.6", - "@thi.ng/transducers": "^7.9.0", - "@thi.ng/vectors": "^6.1.1" + "@thi.ng/transducers": "^7.9.1", + "@thi.ng/vectors": "^6.1.2" }, "files": [ "*.js", diff --git a/packages/gp/CHANGELOG.md b/packages/gp/CHANGELOG.md index 0a89fe8aa8..1f7b642074 100644 --- a/packages/gp/CHANGELOG.md +++ b/packages/gp/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.2.29](https://github.com/thi-ng/umbrella/compare/@thi.ng/gp@0.2.28...@thi.ng/gp@0.2.29) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/gp + + + + + ## [0.2.28](https://github.com/thi-ng/umbrella/compare/@thi.ng/gp@0.2.27...@thi.ng/gp@0.2.28) (2021-08-19) **Note:** Version bump only for package @thi.ng/gp diff --git a/packages/gp/package.json b/packages/gp/package.json index b7ab196d84..1815b2e746 100644 --- a/packages/gp/package.json +++ b/packages/gp/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/gp", - "version": "0.2.28", + "version": "0.2.29", "description": "Genetic programming helpers & strategies (tree based & multi-expression programming)", "module": "./index.js", "main": "./lib/index.js", @@ -41,7 +41,7 @@ "@thi.ng/api": "^7.1.9", "@thi.ng/math": "^4.0.5", "@thi.ng/random": "^2.4.7", - "@thi.ng/transducers": "^7.9.0", + "@thi.ng/transducers": "^7.9.1", "@thi.ng/zipper": "^1.0.2" }, "files": [ diff --git a/packages/grid-iterators/CHANGELOG.md b/packages/grid-iterators/CHANGELOG.md index c78f867a59..eacd06bc2d 100644 --- a/packages/grid-iterators/CHANGELOG.md +++ b/packages/grid-iterators/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/grid-iterators@1.0.3...@thi.ng/grid-iterators@1.0.4) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/grid-iterators + + + + + ## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/grid-iterators@1.0.2...@thi.ng/grid-iterators@1.0.3) (2021-08-19) **Note:** Version bump only for package @thi.ng/grid-iterators diff --git a/packages/grid-iterators/package.json b/packages/grid-iterators/package.json index e5b07ed90f..81bd784cba 100644 --- a/packages/grid-iterators/package.json +++ b/packages/grid-iterators/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/grid-iterators", - "version": "1.0.3", + "version": "1.0.4", "description": "2D grid iterators w/ multiple orderings", "module": "./index.js", "main": "./lib/index.js", @@ -43,7 +43,7 @@ "@thi.ng/binary": "^2.2.10", "@thi.ng/morton": "^2.0.46", "@thi.ng/random": "^2.4.7", - "@thi.ng/transducers": "^7.9.0" + "@thi.ng/transducers": "^7.9.1" }, "files": [ "*.js", diff --git a/packages/hdiff/CHANGELOG.md b/packages/hdiff/CHANGELOG.md index 4dad9eb790..1828e3a78a 100644 --- a/packages/hdiff/CHANGELOG.md +++ b/packages/hdiff/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.52](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdiff@0.1.51...@thi.ng/hdiff@0.1.52) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/hdiff + + + + + ## [0.1.51](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdiff@0.1.50...@thi.ng/hdiff@0.1.51) (2021-08-19) **Note:** Version bump only for package @thi.ng/hdiff diff --git a/packages/hdiff/package.json b/packages/hdiff/package.json index 986bd13ffd..862508dcf5 100644 --- a/packages/hdiff/package.json +++ b/packages/hdiff/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hdiff", - "version": "0.1.51", + "version": "0.1.52", "description": "String diffing w/ hiccup output for further processing, e.g. with @thi.ng/hdom, @thi.ng/hiccup. Includes CLI util to generate HTML, with theme support and code folding", "module": "./index.js", "main": "./lib/index.js", @@ -43,7 +43,7 @@ "@thi.ng/api": "^7.1.9", "@thi.ng/diff": "^4.0.12", "@thi.ng/hiccup": "^3.6.21", - "@thi.ng/hiccup-css": "^1.1.71", + "@thi.ng/hiccup-css": "^1.1.72", "@thi.ng/strings": "^2.1.6" }, "files": [ diff --git a/packages/hdom-canvas/CHANGELOG.md b/packages/hdom-canvas/CHANGELOG.md index 128fabd5e9..5680811692 100644 --- a/packages/hdom-canvas/CHANGELOG.md +++ b/packages/hdom-canvas/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.0.59](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-canvas@3.0.58...@thi.ng/hdom-canvas@3.0.59) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/hdom-canvas + + + + + ## [3.0.58](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-canvas@3.0.57...@thi.ng/hdom-canvas@3.0.58) (2021-08-19) **Note:** Version bump only for package @thi.ng/hdom-canvas diff --git a/packages/hdom-canvas/package.json b/packages/hdom-canvas/package.json index 49ed58fa90..3c1f328df2 100644 --- a/packages/hdom-canvas/package.json +++ b/packages/hdom-canvas/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hdom-canvas", - "version": "3.0.58", + "version": "3.0.59", "description": "@thi.ng/hdom component wrapper for declarative canvas scenegraphs", "module": "./index.js", "main": "./lib/index.js", @@ -42,7 +42,7 @@ "@thi.ng/checks": "^2.9.10", "@thi.ng/diff": "^4.0.12", "@thi.ng/hdom": "^8.2.31", - "@thi.ng/hiccup-canvas": "^1.2.13" + "@thi.ng/hiccup-canvas": "^1.2.14" }, "files": [ "*.js", diff --git a/packages/hdom-components/CHANGELOG.md b/packages/hdom-components/CHANGELOG.md index c827552b84..c93cf428c3 100644 --- a/packages/hdom-components/CHANGELOG.md +++ b/packages/hdom-components/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.47](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-components@4.0.46...@thi.ng/hdom-components@4.0.47) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/hdom-components + + + + + ## [4.0.46](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-components@4.0.45...@thi.ng/hdom-components@4.0.46) (2021-08-19) **Note:** Version bump only for package @thi.ng/hdom-components diff --git a/packages/hdom-components/package.json b/packages/hdom-components/package.json index 65dd9b68f4..ca675cc469 100644 --- a/packages/hdom-components/package.json +++ b/packages/hdom-components/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hdom-components", - "version": "4.0.46", + "version": "4.0.47", "description": "Raw, skinnable UI & SVG components for @thi.ng/hdom", "module": "./index.js", "main": "./lib/index.js", @@ -42,8 +42,8 @@ "@thi.ng/api": "^7.1.9", "@thi.ng/checks": "^2.9.10", "@thi.ng/math": "^4.0.5", - "@thi.ng/transducers": "^7.9.0", - "@thi.ng/transducers-stats": "^1.1.72" + "@thi.ng/transducers": "^7.9.1", + "@thi.ng/transducers-stats": "^1.1.73" }, "files": [ "*.js", diff --git a/packages/hiccup-canvas/CHANGELOG.md b/packages/hiccup-canvas/CHANGELOG.md index d57d24cec7..31da3e2210 100644 --- a/packages/hiccup-canvas/CHANGELOG.md +++ b/packages/hiccup-canvas/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.2.14](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-canvas@1.2.13...@thi.ng/hiccup-canvas@1.2.14) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/hiccup-canvas + + + + + ## [1.2.13](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-canvas@1.2.12...@thi.ng/hiccup-canvas@1.2.13) (2021-08-19) **Note:** Version bump only for package @thi.ng/hiccup-canvas diff --git a/packages/hiccup-canvas/package.json b/packages/hiccup-canvas/package.json index 023db22e18..97e61fb029 100644 --- a/packages/hiccup-canvas/package.json +++ b/packages/hiccup-canvas/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hiccup-canvas", - "version": "1.2.13", + "version": "1.2.14", "description": "Hiccup shape tree renderer for vanilla Canvas 2D contexts", "module": "./index.js", "main": "./lib/index.js", @@ -42,10 +42,10 @@ "dependencies": { "@thi.ng/api": "^7.1.9", "@thi.ng/checks": "^2.9.10", - "@thi.ng/color": "^3.2.5", + "@thi.ng/color": "^3.2.6", "@thi.ng/math": "^4.0.5", - "@thi.ng/pixel": "^1.0.3", - "@thi.ng/vectors": "^6.1.1" + "@thi.ng/pixel": "^1.0.4", + "@thi.ng/vectors": "^6.1.2" }, "files": [ "*.js", diff --git a/packages/hiccup-css/CHANGELOG.md b/packages/hiccup-css/CHANGELOG.md index 9ed59e44d8..7235833db7 100644 --- a/packages/hiccup-css/CHANGELOG.md +++ b/packages/hiccup-css/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.1.72](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-css@1.1.71...@thi.ng/hiccup-css@1.1.72) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/hiccup-css + + + + + ## [1.1.71](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-css@1.1.70...@thi.ng/hiccup-css@1.1.71) (2021-08-19) **Note:** Version bump only for package @thi.ng/hiccup-css diff --git a/packages/hiccup-css/package.json b/packages/hiccup-css/package.json index 583c43b80e..0ad176260f 100644 --- a/packages/hiccup-css/package.json +++ b/packages/hiccup-css/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hiccup-css", - "version": "1.1.71", + "version": "1.1.72", "description": "CSS from nested JS data structures", "module": "./index.js", "main": "./lib/index.js", @@ -41,7 +41,7 @@ "@thi.ng/api": "^7.1.9", "@thi.ng/checks": "^2.9.10", "@thi.ng/errors": "^1.3.4", - "@thi.ng/transducers": "^7.9.0" + "@thi.ng/transducers": "^7.9.1" }, "files": [ "*.js", diff --git a/packages/hiccup-markdown/CHANGELOG.md b/packages/hiccup-markdown/CHANGELOG.md index b9d673fff9..f7292131ac 100644 --- a/packages/hiccup-markdown/CHANGELOG.md +++ b/packages/hiccup-markdown/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.3.32](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-markdown@1.3.31...@thi.ng/hiccup-markdown@1.3.32) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/hiccup-markdown + + + + + ## [1.3.31](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-markdown@1.3.30...@thi.ng/hiccup-markdown@1.3.31) (2021-08-19) **Note:** Version bump only for package @thi.ng/hiccup-markdown diff --git a/packages/hiccup-markdown/package.json b/packages/hiccup-markdown/package.json index a3c7d9a3c7..83534d5f77 100644 --- a/packages/hiccup-markdown/package.json +++ b/packages/hiccup-markdown/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hiccup-markdown", - "version": "1.3.31", + "version": "1.3.32", "description": "Markdown parser & serializer from/to Hiccup format", "module": "./index.js", "main": "./lib/index.js", @@ -43,11 +43,11 @@ "@thi.ng/checks": "^2.9.10", "@thi.ng/defmulti": "^1.3.16", "@thi.ng/errors": "^1.3.4", - "@thi.ng/fsm": "^2.4.61", + "@thi.ng/fsm": "^2.4.62", "@thi.ng/hiccup": "^3.6.21", "@thi.ng/strings": "^2.1.6", - "@thi.ng/text-canvas": "^1.1.2", - "@thi.ng/transducers": "^7.9.0" + "@thi.ng/text-canvas": "^1.1.3", + "@thi.ng/transducers": "^7.9.1" }, "files": [ "*.js", diff --git a/packages/hiccup-svg/CHANGELOG.md b/packages/hiccup-svg/CHANGELOG.md index 5895ac919f..8d9dfda12c 100644 --- a/packages/hiccup-svg/CHANGELOG.md +++ b/packages/hiccup-svg/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.7.33](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-svg@3.7.32...@thi.ng/hiccup-svg@3.7.33) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/hiccup-svg + + + + + ## [3.7.32](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-svg@3.7.31...@thi.ng/hiccup-svg@3.7.32) (2021-08-19) **Note:** Version bump only for package @thi.ng/hiccup-svg diff --git a/packages/hiccup-svg/package.json b/packages/hiccup-svg/package.json index d62da72c9d..742adbd3a3 100644 --- a/packages/hiccup-svg/package.json +++ b/packages/hiccup-svg/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hiccup-svg", - "version": "3.7.32", + "version": "3.7.33", "description": "SVG element functions for @thi.ng/hiccup & @thi.ng/hdom", "module": "./index.js", "main": "./lib/index.js", @@ -39,7 +39,7 @@ }, "dependencies": { "@thi.ng/checks": "^2.9.10", - "@thi.ng/color": "^3.2.5", + "@thi.ng/color": "^3.2.6", "@thi.ng/prefixes": "^1.0.2" }, "files": [ diff --git a/packages/iges/CHANGELOG.md b/packages/iges/CHANGELOG.md index a0827f67e1..801aa21dc7 100644 --- a/packages/iges/CHANGELOG.md +++ b/packages/iges/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.1.86](https://github.com/thi-ng/umbrella/compare/@thi.ng/iges@1.1.85...@thi.ng/iges@1.1.86) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/iges + + + + + ## [1.1.85](https://github.com/thi-ng/umbrella/compare/@thi.ng/iges@1.1.84...@thi.ng/iges@1.1.85) (2021-08-19) **Note:** Version bump only for package @thi.ng/iges diff --git a/packages/iges/package.json b/packages/iges/package.json index e5172c7f35..6abcf3174b 100644 --- a/packages/iges/package.json +++ b/packages/iges/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/iges", - "version": "1.1.85", + "version": "1.1.86", "description": "IGES 5.3 serializer for (currently only) polygonal geometry, both open & closed", "module": "./index.js", "main": "./lib/index.js", @@ -42,8 +42,8 @@ "@thi.ng/checks": "^2.9.10", "@thi.ng/defmulti": "^1.3.16", "@thi.ng/strings": "^2.1.6", - "@thi.ng/transducers": "^7.9.0", - "@thi.ng/vectors": "^6.1.1" + "@thi.ng/transducers": "^7.9.1", + "@thi.ng/vectors": "^6.1.2" }, "files": [ "*.js", diff --git a/packages/imgui/CHANGELOG.md b/packages/imgui/CHANGELOG.md index 5dde8aa4d4..a767e7e0d4 100644 --- a/packages/imgui/CHANGELOG.md +++ b/packages/imgui/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/imgui@1.0.4...@thi.ng/imgui@1.0.5) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/imgui + + + + + ## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/imgui@1.0.3...@thi.ng/imgui@1.0.4) (2021-08-19) **Note:** Version bump only for package @thi.ng/imgui diff --git a/packages/imgui/package.json b/packages/imgui/package.json index 96a88a58a1..92181b79a9 100644 --- a/packages/imgui/package.json +++ b/packages/imgui/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/imgui", - "version": "1.0.4", + "version": "1.0.5", "description": "Immediate mode GUI with flexible state handling & data only shape output", "module": "./index.js", "main": "./lib/index.js", @@ -40,14 +40,14 @@ "dependencies": { "@thi.ng/api": "^7.1.9", "@thi.ng/checks": "^2.9.10", - "@thi.ng/geom": "^2.1.26", - "@thi.ng/geom-api": "^2.0.29", - "@thi.ng/geom-isec": "^1.0.3", - "@thi.ng/geom-tessellate": "^1.0.3", + "@thi.ng/geom": "^2.1.27", + "@thi.ng/geom-api": "^2.0.30", + "@thi.ng/geom-isec": "^1.0.4", + "@thi.ng/geom-tessellate": "^1.0.4", "@thi.ng/layout": "^1.0.1", "@thi.ng/math": "^4.0.5", - "@thi.ng/transducers": "^7.9.0", - "@thi.ng/vectors": "^6.1.1" + "@thi.ng/transducers": "^7.9.1", + "@thi.ng/vectors": "^6.1.2" }, "files": [ "*.js", diff --git a/packages/iterators/CHANGELOG.md b/packages/iterators/CHANGELOG.md index d80d502adb..66fee697bd 100644 --- a/packages/iterators/CHANGELOG.md +++ b/packages/iterators/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.1.73](https://github.com/thi-ng/umbrella/compare/@thi.ng/iterators@5.1.72...@thi.ng/iterators@5.1.73) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/iterators + + + + + ## [5.1.72](https://github.com/thi-ng/umbrella/compare/@thi.ng/iterators@5.1.71...@thi.ng/iterators@5.1.72) (2021-08-19) **Note:** Version bump only for package @thi.ng/iterators diff --git a/packages/iterators/package.json b/packages/iterators/package.json index 81b6b62693..99322c61e0 100644 --- a/packages/iterators/package.json +++ b/packages/iterators/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/iterators", - "version": "5.1.72", + "version": "5.1.73", "description": "Clojure inspired, composable ES6 iterators & generators", "module": "./index.js", "main": "./lib/index.js", @@ -39,7 +39,7 @@ }, "dependencies": { "@thi.ng/api": "^7.1.9", - "@thi.ng/dcons": "^2.3.32", + "@thi.ng/dcons": "^2.3.33", "@thi.ng/errors": "^1.3.4" }, "files": [ diff --git a/packages/k-means/CHANGELOG.md b/packages/k-means/CHANGELOG.md index a754b7a665..1247340558 100644 --- a/packages/k-means/CHANGELOG.md +++ b/packages/k-means/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.3.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/k-means@0.3.4...@thi.ng/k-means@0.3.5) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/k-means + + + + + ## [0.3.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/k-means@0.3.3...@thi.ng/k-means@0.3.4) (2021-08-19) **Note:** Version bump only for package @thi.ng/k-means diff --git a/packages/k-means/package.json b/packages/k-means/package.json index a2f0421d50..06c35fdfad 100644 --- a/packages/k-means/package.json +++ b/packages/k-means/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/k-means", - "version": "0.3.4", + "version": "0.3.5", "description": "Configurable k-means & k-medians (with k-means++ initialization) for n-D vectors", "module": "./index.js", "main": "./lib/index.js", @@ -39,9 +39,9 @@ }, "dependencies": { "@thi.ng/api": "^7.1.9", - "@thi.ng/distance": "^1.0.5", + "@thi.ng/distance": "^1.0.6", "@thi.ng/random": "^2.4.7", - "@thi.ng/vectors": "^6.1.1" + "@thi.ng/vectors": "^6.1.2" }, "files": [ "*.js", diff --git a/packages/leb128/CHANGELOG.md b/packages/leb128/CHANGELOG.md index 3227f11e12..8ad3b240ee 100644 --- a/packages/leb128/CHANGELOG.md +++ b/packages/leb128/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.67](https://github.com/thi-ng/umbrella/compare/@thi.ng/leb128@1.0.66...@thi.ng/leb128@1.0.67) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/leb128 + + + + + ## [1.0.66](https://github.com/thi-ng/umbrella/compare/@thi.ng/leb128@1.0.65...@thi.ng/leb128@1.0.66) (2021-08-19) **Note:** Version bump only for package @thi.ng/leb128 diff --git a/packages/leb128/package.json b/packages/leb128/package.json index d9de839d00..42da6658ef 100644 --- a/packages/leb128/package.json +++ b/packages/leb128/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/leb128", - "version": "1.0.66", + "version": "1.0.67", "description": "WASM based LEB128 encoder / decoder (signed & unsigned)", "module": "./index.js", "main": "./lib/index.js", @@ -41,7 +41,7 @@ "dependencies": { "@thi.ng/checks": "^2.9.10", "@thi.ng/errors": "^1.3.4", - "@thi.ng/transducers-binary": "^1.0.3" + "@thi.ng/transducers-binary": "^1.0.4" }, "files": [ "*.js", diff --git a/packages/lsys/CHANGELOG.md b/packages/lsys/CHANGELOG.md index ca4785443a..d399d16927 100644 --- a/packages/lsys/CHANGELOG.md +++ b/packages/lsys/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/lsys@1.0.3...@thi.ng/lsys@1.0.4) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/lsys + + + + + ## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/lsys@1.0.2...@thi.ng/lsys@1.0.3) (2021-08-19) **Note:** Version bump only for package @thi.ng/lsys diff --git a/packages/lsys/package.json b/packages/lsys/package.json index 27f940a8c4..9ae75f5d2c 100644 --- a/packages/lsys/package.json +++ b/packages/lsys/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/lsys", - "version": "1.0.3", + "version": "1.0.4", "description": "Functional, extensible L-System architecture w/ support for probabilistic rules", "module": "./index.js", "main": "./lib/index.js", @@ -43,8 +43,8 @@ "@thi.ng/errors": "^1.3.4", "@thi.ng/math": "^4.0.5", "@thi.ng/random": "^2.4.7", - "@thi.ng/transducers": "^7.9.0", - "@thi.ng/vectors": "^6.1.1" + "@thi.ng/transducers": "^7.9.1", + "@thi.ng/vectors": "^6.1.2" }, "files": [ "*.js", diff --git a/packages/matrices/CHANGELOG.md b/packages/matrices/CHANGELOG.md index a06694bd15..04c0eb0018 100644 --- a/packages/matrices/CHANGELOG.md +++ b/packages/matrices/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/matrices@1.0.3...@thi.ng/matrices@1.0.4) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/matrices + + + + + ## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/matrices@1.0.2...@thi.ng/matrices@1.0.3) (2021-08-19) **Note:** Version bump only for package @thi.ng/matrices diff --git a/packages/matrices/package.json b/packages/matrices/package.json index 8a50a97643..59916f02ee 100644 --- a/packages/matrices/package.json +++ b/packages/matrices/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/matrices", - "version": "1.0.3", + "version": "1.0.4", "description": "Matrix & quaternion operations for 2D/3D geometry processing", "module": "./index.js", "main": "./lib/index.js", @@ -41,7 +41,7 @@ "@thi.ng/api": "^7.1.9", "@thi.ng/checks": "^2.9.10", "@thi.ng/math": "^4.0.5", - "@thi.ng/vectors": "^6.1.1" + "@thi.ng/vectors": "^6.1.2" }, "files": [ "*.js", diff --git a/packages/pixel-io-netpbm/CHANGELOG.md b/packages/pixel-io-netpbm/CHANGELOG.md index c197a9b0b6..ebcd47abb2 100644 --- a/packages/pixel-io-netpbm/CHANGELOG.md +++ b/packages/pixel-io-netpbm/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/pixel-io-netpbm@1.0.5...@thi.ng/pixel-io-netpbm@1.0.6) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/pixel-io-netpbm + + + + + ## [1.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/pixel-io-netpbm@1.0.4...@thi.ng/pixel-io-netpbm@1.0.5) (2021-08-19) **Note:** Version bump only for package @thi.ng/pixel-io-netpbm diff --git a/packages/pixel-io-netpbm/package.json b/packages/pixel-io-netpbm/package.json index ed4816a661..6f37ec7338 100644 --- a/packages/pixel-io-netpbm/package.json +++ b/packages/pixel-io-netpbm/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/pixel-io-netpbm", - "version": "1.0.5", + "version": "1.0.6", "description": "Multi-format NetPBM reader & writer support for @thi.ng/pixel", "module": "./index.js", "main": "./lib/index.js", @@ -40,7 +40,7 @@ "dependencies": { "@thi.ng/api": "^7.1.9", "@thi.ng/errors": "^1.3.4", - "@thi.ng/pixel": "^1.0.3" + "@thi.ng/pixel": "^1.0.4" }, "files": [ "*.js", diff --git a/packages/pixel/CHANGELOG.md b/packages/pixel/CHANGELOG.md index 18c9565275..ef065b756f 100644 --- a/packages/pixel/CHANGELOG.md +++ b/packages/pixel/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/pixel@1.0.3...@thi.ng/pixel@1.0.4) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/pixel + + + + + ## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/pixel@1.0.2...@thi.ng/pixel@1.0.3) (2021-08-19) **Note:** Version bump only for package @thi.ng/pixel diff --git a/packages/pixel/package.json b/packages/pixel/package.json index e54be7d881..8492603281 100644 --- a/packages/pixel/package.json +++ b/packages/pixel/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/pixel", - "version": "1.0.3", + "version": "1.0.4", "description": "Typedarray integer & float pixel buffers w/ customizable formats, blitting, dithering, convolution", "module": "./index.js", "main": "./lib/index.js", @@ -41,7 +41,7 @@ "@thi.ng/api": "^7.1.9", "@thi.ng/binary": "^2.2.10", "@thi.ng/checks": "^2.9.10", - "@thi.ng/k-means": "^0.3.4", + "@thi.ng/k-means": "^0.3.5", "@thi.ng/math": "^4.0.5", "@thi.ng/porter-duff": "^1.0.1" }, diff --git a/packages/poisson/CHANGELOG.md b/packages/poisson/CHANGELOG.md index 64105ce0d4..9429651a0e 100644 --- a/packages/poisson/CHANGELOG.md +++ b/packages/poisson/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.1.52](https://github.com/thi-ng/umbrella/compare/@thi.ng/poisson@1.1.51...@thi.ng/poisson@1.1.52) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/poisson + + + + + ## [1.1.51](https://github.com/thi-ng/umbrella/compare/@thi.ng/poisson@1.1.50...@thi.ng/poisson@1.1.51) (2021-08-19) **Note:** Version bump only for package @thi.ng/poisson diff --git a/packages/poisson/package.json b/packages/poisson/package.json index 5896a8ef37..2072a742da 100644 --- a/packages/poisson/package.json +++ b/packages/poisson/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/poisson", - "version": "1.1.51", + "version": "1.1.52", "description": "nD Stratified grid and Poisson-disc sampling w/ support for spatial density functions and custom PRNGs", "module": "./index.js", "main": "./lib/index.js", @@ -40,10 +40,10 @@ "dependencies": { "@thi.ng/api": "^7.1.9", "@thi.ng/checks": "^2.9.10", - "@thi.ng/geom-api": "^2.0.29", + "@thi.ng/geom-api": "^2.0.30", "@thi.ng/random": "^2.4.7", - "@thi.ng/transducers": "^7.9.0", - "@thi.ng/vectors": "^6.1.1" + "@thi.ng/transducers": "^7.9.1", + "@thi.ng/vectors": "^6.1.2" }, "files": [ "*.js", diff --git a/packages/ramp/CHANGELOG.md b/packages/ramp/CHANGELOG.md index ac322a0c24..e02682fb77 100644 --- a/packages/ramp/CHANGELOG.md +++ b/packages/ramp/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/ramp@1.0.5...@thi.ng/ramp@1.0.6) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/ramp + + + + + ## [1.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/ramp@1.0.4...@thi.ng/ramp@1.0.5) (2021-08-19) **Note:** Version bump only for package @thi.ng/ramp diff --git a/packages/ramp/package.json b/packages/ramp/package.json index cf4ca5bb36..fd19a6595f 100644 --- a/packages/ramp/package.json +++ b/packages/ramp/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/ramp", - "version": "1.0.5", + "version": "1.0.6", "description": "Parametric interpolated 1D lookup tables for remapping values", "module": "./index.js", "main": "./lib/index.js", @@ -41,8 +41,8 @@ "@thi.ng/arrays": "^1.0.2", "@thi.ng/compare": "^1.3.33", "@thi.ng/math": "^4.0.5", - "@thi.ng/transducers": "^7.9.0", - "@thi.ng/vectors": "^6.1.1" + "@thi.ng/transducers": "^7.9.1", + "@thi.ng/vectors": "^6.1.2" }, "files": [ "*.js", diff --git a/packages/range-coder/CHANGELOG.md b/packages/range-coder/CHANGELOG.md index 95753a2804..4de5e28fea 100644 --- a/packages/range-coder/CHANGELOG.md +++ b/packages/range-coder/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.92](https://github.com/thi-ng/umbrella/compare/@thi.ng/range-coder@1.0.91...@thi.ng/range-coder@1.0.92) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/range-coder + + + + + ## [1.0.91](https://github.com/thi-ng/umbrella/compare/@thi.ng/range-coder@1.0.90...@thi.ng/range-coder@1.0.91) (2021-08-19) **Note:** Version bump only for package @thi.ng/range-coder diff --git a/packages/range-coder/package.json b/packages/range-coder/package.json index 9fb8171ac3..2f1c06ff2b 100644 --- a/packages/range-coder/package.json +++ b/packages/range-coder/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/range-coder", - "version": "1.0.91", + "version": "1.0.92", "description": "Binary data range encoder / decoder", "module": "./index.js", "main": "./lib/index.js", @@ -38,7 +38,7 @@ "pub": "yarn build:release && yarn publish --access public" }, "devDependencies": { - "@thi.ng/transducers": "^7.9.0" + "@thi.ng/transducers": "^7.9.1" }, "dependencies": { "@thi.ng/bitstream": "^1.1.43" diff --git a/packages/rdom-canvas/CHANGELOG.md b/packages/rdom-canvas/CHANGELOG.md index cb6424736c..02cd3eec4c 100644 --- a/packages/rdom-canvas/CHANGELOG.md +++ b/packages/rdom-canvas/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.58](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom-canvas@0.1.57...@thi.ng/rdom-canvas@0.1.58) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/rdom-canvas + + + + + ## [0.1.57](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom-canvas@0.1.56...@thi.ng/rdom-canvas@0.1.57) (2021-08-19) **Note:** Version bump only for package @thi.ng/rdom-canvas diff --git a/packages/rdom-canvas/package.json b/packages/rdom-canvas/package.json index fbf3e79572..98c462a8c3 100644 --- a/packages/rdom-canvas/package.json +++ b/packages/rdom-canvas/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rdom-canvas", - "version": "0.1.57", + "version": "0.1.58", "description": "@thi.ng/rdom component wrapper for @thi.ng/hiccup-canvas and declarative canvas drawing", "module": "./index.js", "main": "./lib/index.js", @@ -40,10 +40,10 @@ "@thi.ng/adapt-dpi": "^1.0.23", "@thi.ng/api": "^7.1.9", "@thi.ng/checks": "^2.9.10", - "@thi.ng/hiccup-canvas": "^1.2.13", - "@thi.ng/rdom": "^0.6.6", - "@thi.ng/rstream": "^6.0.18", - "@thi.ng/transducers": "^7.9.0" + "@thi.ng/hiccup-canvas": "^1.2.14", + "@thi.ng/rdom": "^0.6.7", + "@thi.ng/rstream": "^6.0.19", + "@thi.ng/transducers": "^7.9.1" }, "files": [ "*.js", diff --git a/packages/rdom-components/CHANGELOG.md b/packages/rdom-components/CHANGELOG.md index ba70aa3ad1..c113149b26 100644 --- a/packages/rdom-components/CHANGELOG.md +++ b/packages/rdom-components/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.2.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom-components@0.2.6...@thi.ng/rdom-components@0.2.7) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/rdom-components + + + + + ## [0.2.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom-components@0.2.5...@thi.ng/rdom-components@0.2.6) (2021-08-19) **Note:** Version bump only for package @thi.ng/rdom-components diff --git a/packages/rdom-components/package.json b/packages/rdom-components/package.json index 5fb945fba6..c5270b308a 100644 --- a/packages/rdom-components/package.json +++ b/packages/rdom-components/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rdom-components", - "version": "0.2.6", + "version": "0.2.7", "description": "Collection of unstyled, customizable components for @thi.ng/rdom", "module": "./index.js", "main": "./lib/index.js", @@ -38,12 +38,12 @@ }, "dependencies": { "@thi.ng/api": "^7.1.9", - "@thi.ng/associative": "^5.2.13", + "@thi.ng/associative": "^5.2.14", "@thi.ng/hiccup-html": "^1.1.0", - "@thi.ng/rdom": "^0.6.6", - "@thi.ng/rstream": "^6.0.18", + "@thi.ng/rdom": "^0.6.7", + "@thi.ng/rstream": "^6.0.19", "@thi.ng/strings": "^2.1.6", - "@thi.ng/transducers": "^7.9.0" + "@thi.ng/transducers": "^7.9.1" }, "files": [ "*.js", diff --git a/packages/rdom/CHANGELOG.md b/packages/rdom/CHANGELOG.md index 425c86965c..cd4f553f41 100644 --- a/packages/rdom/CHANGELOG.md +++ b/packages/rdom/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.6.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom@0.6.6...@thi.ng/rdom@0.6.7) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/rdom + + + + + ## [0.6.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom@0.6.5...@thi.ng/rdom@0.6.6) (2021-08-19) **Note:** Version bump only for package @thi.ng/rdom diff --git a/packages/rdom/package.json b/packages/rdom/package.json index c1053689c8..e799eaa54a 100644 --- a/packages/rdom/package.json +++ b/packages/rdom/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rdom", - "version": "0.6.6", + "version": "0.6.7", "description": "Lightweight, reactive, VDOM-less UI/DOM components with async lifecycle and @thi.ng/hiccup compatible", "module": "./index.js", "main": "./lib/index.js", @@ -44,7 +44,7 @@ "@thi.ng/hiccup": "^3.6.21", "@thi.ng/paths": "^4.2.13", "@thi.ng/prefixes": "^1.0.2", - "@thi.ng/rstream": "^6.0.18", + "@thi.ng/rstream": "^6.0.19", "@thi.ng/strings": "^2.1.6" }, "files": [ diff --git a/packages/rstream-csp/CHANGELOG.md b/packages/rstream-csp/CHANGELOG.md index f0302c38b8..1e0ce90aab 100644 --- a/packages/rstream-csp/CHANGELOG.md +++ b/packages/rstream-csp/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.0.78](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-csp@2.0.77...@thi.ng/rstream-csp@2.0.78) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/rstream-csp + + + + + ## [2.0.77](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-csp@2.0.76...@thi.ng/rstream-csp@2.0.77) (2021-08-19) **Note:** Version bump only for package @thi.ng/rstream-csp diff --git a/packages/rstream-csp/package.json b/packages/rstream-csp/package.json index cd7456a4f3..8165c0a5d6 100644 --- a/packages/rstream-csp/package.json +++ b/packages/rstream-csp/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-csp", - "version": "2.0.77", + "version": "2.0.78", "description": "@thi.ng/csp bridge module for @thi.ng/rstream", "module": "./index.js", "main": "./lib/index.js", @@ -38,8 +38,8 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/csp": "^1.1.72", - "@thi.ng/rstream": "^6.0.18" + "@thi.ng/csp": "^1.1.73", + "@thi.ng/rstream": "^6.0.19" }, "files": [ "*.js", diff --git a/packages/rstream-dot/CHANGELOG.md b/packages/rstream-dot/CHANGELOG.md index 0e0b74beaa..7d73bb8dbb 100644 --- a/packages/rstream-dot/CHANGELOG.md +++ b/packages/rstream-dot/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.2.27](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-dot@1.2.26...@thi.ng/rstream-dot@1.2.27) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/rstream-dot + + + + + ## [1.2.26](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-dot@1.2.25...@thi.ng/rstream-dot@1.2.26) (2021-08-19) **Note:** Version bump only for package @thi.ng/rstream-dot diff --git a/packages/rstream-dot/package.json b/packages/rstream-dot/package.json index 8a5bde0d05..458ba70f44 100644 --- a/packages/rstream-dot/package.json +++ b/packages/rstream-dot/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-dot", - "version": "1.2.26", + "version": "1.2.27", "description": "Graphviz DOT conversion of @thi.ng/rstream dataflow graph topologies", "module": "./index.js", "main": "./lib/index.js", @@ -38,9 +38,9 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/rstream": "^6.0.18", + "@thi.ng/rstream": "^6.0.19", "@thi.ng/strings": "^2.1.6", - "@thi.ng/transducers": "^7.9.0" + "@thi.ng/transducers": "^7.9.1" }, "files": [ "*.js", diff --git a/packages/rstream-gestures/CHANGELOG.md b/packages/rstream-gestures/CHANGELOG.md index 9284fe4592..a71574931a 100644 --- a/packages/rstream-gestures/CHANGELOG.md +++ b/packages/rstream-gestures/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.0.32](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-gestures@3.0.31...@thi.ng/rstream-gestures@3.0.32) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/rstream-gestures + + + + + ## [3.0.31](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-gestures@3.0.30...@thi.ng/rstream-gestures@3.0.31) (2021-08-19) **Note:** Version bump only for package @thi.ng/rstream-gestures diff --git a/packages/rstream-gestures/package.json b/packages/rstream-gestures/package.json index e04ed52b9c..a6f6054892 100644 --- a/packages/rstream-gestures/package.json +++ b/packages/rstream-gestures/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-gestures", - "version": "3.0.31", + "version": "3.0.32", "description": "Unified mouse, mouse wheel & multi-touch event stream abstraction", "module": "./index.js", "main": "./lib/index.js", @@ -41,8 +41,8 @@ "@thi.ng/api": "^7.1.9", "@thi.ng/checks": "^2.9.10", "@thi.ng/math": "^4.0.5", - "@thi.ng/rstream": "^6.0.18", - "@thi.ng/transducers": "^7.9.0" + "@thi.ng/rstream": "^6.0.19", + "@thi.ng/transducers": "^7.9.1" }, "files": [ "*.js", diff --git a/packages/rstream-graph/CHANGELOG.md b/packages/rstream-graph/CHANGELOG.md index 7500233dfa..fb93da00df 100644 --- a/packages/rstream-graph/CHANGELOG.md +++ b/packages/rstream-graph/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.2.79](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-graph@3.2.78...@thi.ng/rstream-graph@3.2.79) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/rstream-graph + + + + + ## [3.2.78](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-graph@3.2.77...@thi.ng/rstream-graph@3.2.78) (2021-08-19) **Note:** Version bump only for package @thi.ng/rstream-graph diff --git a/packages/rstream-graph/package.json b/packages/rstream-graph/package.json index 799ea4f481..81e7a9fcf0 100644 --- a/packages/rstream-graph/package.json +++ b/packages/rstream-graph/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-graph", - "version": "3.2.78", + "version": "3.2.79", "description": "Declarative dataflow graph construction for @thi.ng/rstream", "module": "./index.js", "main": "./lib/index.js", @@ -44,8 +44,8 @@ "@thi.ng/errors": "^1.3.4", "@thi.ng/paths": "^4.2.13", "@thi.ng/resolve-map": "^4.2.26", - "@thi.ng/rstream": "^6.0.18", - "@thi.ng/transducers": "^7.9.0" + "@thi.ng/rstream": "^6.0.19", + "@thi.ng/transducers": "^7.9.1" }, "files": [ "*.js", diff --git a/packages/rstream-log-file/CHANGELOG.md b/packages/rstream-log-file/CHANGELOG.md index 01ccce2b6e..41c0db52cb 100644 --- a/packages/rstream-log-file/CHANGELOG.md +++ b/packages/rstream-log-file/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log-file@1.0.3...@thi.ng/rstream-log-file@1.0.4) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/rstream-log-file + + + + + ## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log-file@1.0.2...@thi.ng/rstream-log-file@1.0.3) (2021-08-19) **Note:** Version bump only for package @thi.ng/rstream-log-file diff --git a/packages/rstream-log-file/package.json b/packages/rstream-log-file/package.json index 4d2c2d6e28..88ddb19736 100644 --- a/packages/rstream-log-file/package.json +++ b/packages/rstream-log-file/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-log-file", - "version": "1.0.3", + "version": "1.0.4", "description": "File output handler for structured, multilevel & hierarchical loggers based on @thi.ng/rstream", "module": "./index.js", "main": "./lib/index.js", @@ -38,7 +38,7 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/rstream": "^6.0.18" + "@thi.ng/rstream": "^6.0.19" }, "files": [ "*.js", diff --git a/packages/rstream-log/CHANGELOG.md b/packages/rstream-log/CHANGELOG.md index 5bb5b42204..b49ce461b1 100644 --- a/packages/rstream-log/CHANGELOG.md +++ b/packages/rstream-log/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.2.31](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log@3.2.30...@thi.ng/rstream-log@3.2.31) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/rstream-log + + + + + ## [3.2.30](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log@3.2.29...@thi.ng/rstream-log@3.2.30) (2021-08-19) **Note:** Version bump only for package @thi.ng/rstream-log diff --git a/packages/rstream-log/package.json b/packages/rstream-log/package.json index a1e50b6890..c249bf8879 100644 --- a/packages/rstream-log/package.json +++ b/packages/rstream-log/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-log", - "version": "3.2.30", + "version": "3.2.31", "description": "Structured, multilevel & hierarchical loggers based on @thi.ng/rstream", "module": "./index.js", "main": "./lib/index.js", @@ -41,9 +41,9 @@ "@thi.ng/api": "^7.1.9", "@thi.ng/checks": "^2.9.10", "@thi.ng/errors": "^1.3.4", - "@thi.ng/rstream": "^6.0.18", + "@thi.ng/rstream": "^6.0.19", "@thi.ng/strings": "^2.1.6", - "@thi.ng/transducers": "^7.9.0" + "@thi.ng/transducers": "^7.9.1" }, "files": [ "*.js", diff --git a/packages/rstream-query/CHANGELOG.md b/packages/rstream-query/CHANGELOG.md index 2a2b12b3d5..dff277f233 100644 --- a/packages/rstream-query/CHANGELOG.md +++ b/packages/rstream-query/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.1.87](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-query@1.1.86...@thi.ng/rstream-query@1.1.87) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/rstream-query + + + + + ## [1.1.86](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-query@1.1.85...@thi.ng/rstream-query@1.1.86) (2021-08-19) **Note:** Version bump only for package @thi.ng/rstream-query diff --git a/packages/rstream-query/package.json b/packages/rstream-query/package.json index bb4ddea0f7..7ef67970c8 100644 --- a/packages/rstream-query/package.json +++ b/packages/rstream-query/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-query", - "version": "1.1.86", + "version": "1.1.87", "description": "@thi.ng/rstream based triple store & reactive query engine", "module": "./index.js", "main": "./lib/index.js", @@ -39,14 +39,14 @@ }, "dependencies": { "@thi.ng/api": "^7.1.9", - "@thi.ng/associative": "^5.2.13", + "@thi.ng/associative": "^5.2.14", "@thi.ng/checks": "^2.9.10", "@thi.ng/equiv": "^1.0.45", "@thi.ng/errors": "^1.3.4", "@thi.ng/math": "^4.0.5", - "@thi.ng/rstream": "^6.0.18", - "@thi.ng/rstream-dot": "^1.2.26", - "@thi.ng/transducers": "^7.9.0" + "@thi.ng/rstream": "^6.0.19", + "@thi.ng/rstream-dot": "^1.2.27", + "@thi.ng/transducers": "^7.9.1" }, "files": [ "*.js", diff --git a/packages/rstream/CHANGELOG.md b/packages/rstream/CHANGELOG.md index 985c4e4a53..0db6265694 100644 --- a/packages/rstream/CHANGELOG.md +++ b/packages/rstream/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [6.0.19](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream@6.0.18...@thi.ng/rstream@6.0.19) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/rstream + + + + + ## [6.0.18](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream@6.0.17...@thi.ng/rstream@6.0.18) (2021-08-19) **Note:** Version bump only for package @thi.ng/rstream diff --git a/packages/rstream/package.json b/packages/rstream/package.json index c689fcdbca..3d01710288 100644 --- a/packages/rstream/package.json +++ b/packages/rstream/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream", - "version": "6.0.18", + "version": "6.0.19", "description": "Reactive streams & subscription primitives for constructing dataflow graphs / pipelines", "module": "./index.js", "main": "./lib/index.js", @@ -40,11 +40,11 @@ "dependencies": { "@thi.ng/api": "^7.1.9", "@thi.ng/arrays": "^1.0.2", - "@thi.ng/associative": "^5.2.13", + "@thi.ng/associative": "^5.2.14", "@thi.ng/atom": "^4.1.41", "@thi.ng/checks": "^2.9.10", "@thi.ng/errors": "^1.3.4", - "@thi.ng/transducers": "^7.9.0" + "@thi.ng/transducers": "^7.9.1" }, "files": [ "*.js", diff --git a/packages/sax/CHANGELOG.md b/packages/sax/CHANGELOG.md index a5d442e5e1..b4a6a83474 100644 --- a/packages/sax/CHANGELOG.md +++ b/packages/sax/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.1.72](https://github.com/thi-ng/umbrella/compare/@thi.ng/sax@1.1.71...@thi.ng/sax@1.1.72) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/sax + + + + + ## [1.1.71](https://github.com/thi-ng/umbrella/compare/@thi.ng/sax@1.1.70...@thi.ng/sax@1.1.71) (2021-08-19) **Note:** Version bump only for package @thi.ng/sax diff --git a/packages/sax/package.json b/packages/sax/package.json index 6b6edb4e02..1a228f54ab 100644 --- a/packages/sax/package.json +++ b/packages/sax/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/sax", - "version": "1.1.71", + "version": "1.1.72", "description": "Transducer-based, SAX-like, non-validating, speedy & tiny XML parser", "module": "./index.js", "main": "./lib/index.js", @@ -39,8 +39,8 @@ }, "dependencies": { "@thi.ng/api": "^7.1.9", - "@thi.ng/transducers": "^7.9.0", - "@thi.ng/transducers-fsm": "^1.1.71" + "@thi.ng/transducers": "^7.9.1", + "@thi.ng/transducers-fsm": "^1.1.72" }, "files": [ "*.js", diff --git a/packages/scenegraph/CHANGELOG.md b/packages/scenegraph/CHANGELOG.md index 947eea0128..94313ecdf7 100644 --- a/packages/scenegraph/CHANGELOG.md +++ b/packages/scenegraph/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.3.42](https://github.com/thi-ng/umbrella/compare/@thi.ng/scenegraph@0.3.41...@thi.ng/scenegraph@0.3.42) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/scenegraph + + + + + ## [0.3.41](https://github.com/thi-ng/umbrella/compare/@thi.ng/scenegraph@0.3.40...@thi.ng/scenegraph@0.3.41) (2021-08-19) **Note:** Version bump only for package @thi.ng/scenegraph diff --git a/packages/scenegraph/package.json b/packages/scenegraph/package.json index a16759db4e..b23365c56a 100644 --- a/packages/scenegraph/package.json +++ b/packages/scenegraph/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/scenegraph", - "version": "0.3.41", + "version": "0.3.42", "description": "Extensible 2D/3D scene graph with @thi.ng/hiccup-canvas support", "module": "./index.js", "main": "./lib/index.js", @@ -40,8 +40,8 @@ "dependencies": { "@thi.ng/api": "^7.1.9", "@thi.ng/checks": "^2.9.10", - "@thi.ng/matrices": "^1.0.3", - "@thi.ng/vectors": "^6.1.1" + "@thi.ng/matrices": "^1.0.4", + "@thi.ng/vectors": "^6.1.2" }, "files": [ "*.js", diff --git a/packages/shader-ast-glsl/CHANGELOG.md b/packages/shader-ast-glsl/CHANGELOG.md index ed5013cbec..5800dfe5c1 100644 --- a/packages/shader-ast-glsl/CHANGELOG.md +++ b/packages/shader-ast-glsl/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.2.46](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-glsl@0.2.45...@thi.ng/shader-ast-glsl@0.2.46) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/shader-ast-glsl + + + + + ## [0.2.45](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-glsl@0.2.44...@thi.ng/shader-ast-glsl@0.2.45) (2021-08-19) **Note:** Version bump only for package @thi.ng/shader-ast-glsl diff --git a/packages/shader-ast-glsl/package.json b/packages/shader-ast-glsl/package.json index 760e392dcf..0a4319cd91 100644 --- a/packages/shader-ast-glsl/package.json +++ b/packages/shader-ast-glsl/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/shader-ast-glsl", - "version": "0.2.45", + "version": "0.2.46", "description": "Customizable GLSL codegen for @thi.ng/shader-ast", "module": "./index.js", "main": "./lib/index.js", @@ -41,7 +41,7 @@ "@thi.ng/api": "^7.1.9", "@thi.ng/checks": "^2.9.10", "@thi.ng/errors": "^1.3.4", - "@thi.ng/shader-ast": "^0.10.1" + "@thi.ng/shader-ast": "^0.10.2" }, "files": [ "*.js", diff --git a/packages/shader-ast-js/CHANGELOG.md b/packages/shader-ast-js/CHANGELOG.md index 1282a1bb03..5fbd1f9897 100644 --- a/packages/shader-ast-js/CHANGELOG.md +++ b/packages/shader-ast-js/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.5.47](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-js@0.5.46...@thi.ng/shader-ast-js@0.5.47) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/shader-ast-js + + + + + ## [0.5.46](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-js@0.5.45...@thi.ng/shader-ast-js@0.5.46) (2021-08-19) **Note:** Version bump only for package @thi.ng/shader-ast-js diff --git a/packages/shader-ast-js/package.json b/packages/shader-ast-js/package.json index 3258f5a5e0..be40f2af9f 100644 --- a/packages/shader-ast-js/package.json +++ b/packages/shader-ast-js/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/shader-ast-js", - "version": "0.5.46", + "version": "0.5.47", "description": "Customizable JS codegen, compiler & runtime for @thi.ng/shader-ast", "module": "./index.js", "main": "./lib/index.js", @@ -42,10 +42,10 @@ "@thi.ng/checks": "^2.9.10", "@thi.ng/errors": "^1.3.4", "@thi.ng/math": "^4.0.5", - "@thi.ng/matrices": "^1.0.3", - "@thi.ng/pixel": "^1.0.3", - "@thi.ng/shader-ast": "^0.10.1", - "@thi.ng/vectors": "^6.1.1" + "@thi.ng/matrices": "^1.0.4", + "@thi.ng/pixel": "^1.0.4", + "@thi.ng/shader-ast": "^0.10.2", + "@thi.ng/vectors": "^6.1.2" }, "files": [ "*.js", diff --git a/packages/shader-ast-stdlib/CHANGELOG.md b/packages/shader-ast-stdlib/CHANGELOG.md index 8a4dfc98ce..5e0e404ad6 100644 --- a/packages/shader-ast-stdlib/CHANGELOG.md +++ b/packages/shader-ast-stdlib/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-stdlib@0.9.1...@thi.ng/shader-ast-stdlib@0.9.2) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/shader-ast-stdlib + + + + + ## [0.9.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-stdlib@0.9.0...@thi.ng/shader-ast-stdlib@0.9.1) (2021-08-19) **Note:** Version bump only for package @thi.ng/shader-ast-stdlib diff --git a/packages/shader-ast-stdlib/package.json b/packages/shader-ast-stdlib/package.json index 035015a16c..7539935373 100644 --- a/packages/shader-ast-stdlib/package.json +++ b/packages/shader-ast-stdlib/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/shader-ast-stdlib", - "version": "0.9.1", + "version": "0.9.2", "description": "Function collection for modular GPGPU / shader programming with @thi.ng/shader-ast", "module": "./index.js", "main": "./lib/index.js", @@ -39,7 +39,7 @@ }, "dependencies": { "@thi.ng/api": "^7.1.9", - "@thi.ng/shader-ast": "^0.10.1" + "@thi.ng/shader-ast": "^0.10.2" }, "files": [ "*.js", diff --git a/packages/shader-ast/CHANGELOG.md b/packages/shader-ast/CHANGELOG.md index 36b421a462..d5b0f3c241 100644 --- a/packages/shader-ast/CHANGELOG.md +++ b/packages/shader-ast/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.10.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast@0.10.1...@thi.ng/shader-ast@0.10.2) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/shader-ast + + + + + ## [0.10.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast@0.10.0...@thi.ng/shader-ast@0.10.1) (2021-08-19) **Note:** Version bump only for package @thi.ng/shader-ast diff --git a/packages/shader-ast/package.json b/packages/shader-ast/package.json index 8d177ff868..f7a7e35190 100644 --- a/packages/shader-ast/package.json +++ b/packages/shader-ast/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/shader-ast", - "version": "0.10.1", + "version": "0.10.2", "description": "DSL to define shader code in TypeScript and cross-compile to GLSL, JS and other targets", "module": "./index.js", "main": "./lib/index.js", @@ -41,7 +41,7 @@ "@thi.ng/api": "^7.1.9", "@thi.ng/checks": "^2.9.10", "@thi.ng/defmulti": "^1.3.16", - "@thi.ng/dgraph": "^1.3.32", + "@thi.ng/dgraph": "^1.3.33", "@thi.ng/errors": "^1.3.4", "@thi.ng/math": "^4.0.5" }, diff --git a/packages/simd/CHANGELOG.md b/packages/simd/CHANGELOG.md index 34c4cb2741..215858c843 100644 --- a/packages/simd/CHANGELOG.md +++ b/packages/simd/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.4.40](https://github.com/thi-ng/umbrella/compare/@thi.ng/simd@0.4.39...@thi.ng/simd@0.4.40) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/simd + + + + + ## [0.4.39](https://github.com/thi-ng/umbrella/compare/@thi.ng/simd@0.4.38...@thi.ng/simd@0.4.39) (2021-08-19) **Note:** Version bump only for package @thi.ng/simd diff --git a/packages/simd/package.json b/packages/simd/package.json index 273a78b133..becc352598 100644 --- a/packages/simd/package.json +++ b/packages/simd/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/simd", - "version": "0.4.39", + "version": "0.4.40", "description": "WASM based SIMD vector operations for batch processing", "module": "./index.js", "main": "./lib/index.js", @@ -43,7 +43,7 @@ "assemblyscript": "0.19.8" }, "dependencies": { - "@thi.ng/transducers-binary": "^1.0.3" + "@thi.ng/transducers-binary": "^1.0.4" }, "files": [ "*.js", diff --git a/packages/soa/CHANGELOG.md b/packages/soa/CHANGELOG.md index dd05d9accb..8cbcdea361 100644 --- a/packages/soa/CHANGELOG.md +++ b/packages/soa/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.2.24](https://github.com/thi-ng/umbrella/compare/@thi.ng/soa@0.2.23...@thi.ng/soa@0.2.24) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/soa + + + + + ## [0.2.23](https://github.com/thi-ng/umbrella/compare/@thi.ng/soa@0.2.22...@thi.ng/soa@0.2.23) (2021-08-19) **Note:** Version bump only for package @thi.ng/soa diff --git a/packages/soa/package.json b/packages/soa/package.json index 406e444a05..5330fbbf71 100644 --- a/packages/soa/package.json +++ b/packages/soa/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/soa", - "version": "0.2.23", + "version": "0.2.24", "description": "SOA & AOS memory mapped structured views with optional & extensible serialization", "module": "./index.js", "main": "./lib/index.js", @@ -44,8 +44,8 @@ "@thi.ng/api": "^7.1.9", "@thi.ng/binary": "^2.2.10", "@thi.ng/errors": "^1.3.4", - "@thi.ng/transducers-binary": "^1.0.3", - "@thi.ng/vectors": "^6.1.1" + "@thi.ng/transducers-binary": "^1.0.4", + "@thi.ng/vectors": "^6.1.2" }, "files": [ "*.js", diff --git a/packages/sparse/CHANGELOG.md b/packages/sparse/CHANGELOG.md index cd677909cd..daaa374d1d 100644 --- a/packages/sparse/CHANGELOG.md +++ b/packages/sparse/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.88](https://github.com/thi-ng/umbrella/compare/@thi.ng/sparse@0.1.87...@thi.ng/sparse@0.1.88) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/sparse + + + + + ## [0.1.87](https://github.com/thi-ng/umbrella/compare/@thi.ng/sparse@0.1.86...@thi.ng/sparse@0.1.87) (2021-08-19) **Note:** Version bump only for package @thi.ng/sparse diff --git a/packages/sparse/package.json b/packages/sparse/package.json index dcee22b5fe..6505cbf43e 100644 --- a/packages/sparse/package.json +++ b/packages/sparse/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/sparse", - "version": "0.1.87", + "version": "0.1.88", "description": "Sparse vector & matrix implementations", "module": "./index.js", "main": "./lib/index.js", @@ -40,7 +40,7 @@ "dependencies": { "@thi.ng/api": "^7.1.9", "@thi.ng/errors": "^1.3.4", - "@thi.ng/transducers": "^7.9.0" + "@thi.ng/transducers": "^7.9.1" }, "files": [ "*.js", diff --git a/packages/system/CHANGELOG.md b/packages/system/CHANGELOG.md index 69b35dd4b3..cf0c7be9e5 100644 --- a/packages/system/CHANGELOG.md +++ b/packages/system/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/system@1.0.5...@thi.ng/system@1.0.6) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/system + + + + + ## [1.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/system@1.0.4...@thi.ng/system@1.0.5) (2021-08-19) **Note:** Version bump only for package @thi.ng/system diff --git a/packages/system/package.json b/packages/system/package.json index cf47cdceff..4525e7f2f4 100644 --- a/packages/system/package.json +++ b/packages/system/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/system", - "version": "1.0.5", + "version": "1.0.6", "description": "Minimal and explicit dependency-injection & lifecycle container for stateful app components", "module": "./index.js", "main": "./lib/index.js", @@ -39,7 +39,7 @@ }, "dependencies": { "@thi.ng/api": "^7.1.9", - "@thi.ng/dgraph": "^1.3.32" + "@thi.ng/dgraph": "^1.3.33" }, "files": [ "*.js", diff --git a/packages/text-canvas/CHANGELOG.md b/packages/text-canvas/CHANGELOG.md index a7362d89cb..a9104254c2 100644 --- a/packages/text-canvas/CHANGELOG.md +++ b/packages/text-canvas/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.1.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/text-canvas@1.1.2...@thi.ng/text-canvas@1.1.3) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/text-canvas + + + + + ## [1.1.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/text-canvas@1.1.1...@thi.ng/text-canvas@1.1.2) (2021-08-19) **Note:** Version bump only for package @thi.ng/text-canvas diff --git a/packages/text-canvas/package.json b/packages/text-canvas/package.json index 27adee6015..750950ccac 100644 --- a/packages/text-canvas/package.json +++ b/packages/text-canvas/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/text-canvas", - "version": "1.1.2", + "version": "1.1.3", "description": "Text based canvas, drawing, tables with arbitrary formatting (incl. ANSI/HTML)", "module": "./index.js", "main": "./lib/index.js", @@ -41,11 +41,11 @@ "@thi.ng/api": "^7.1.9", "@thi.ng/arrays": "^1.0.2", "@thi.ng/checks": "^2.9.10", - "@thi.ng/geom-clip-line": "^1.2.43", + "@thi.ng/geom-clip-line": "^1.2.44", "@thi.ng/math": "^4.0.5", "@thi.ng/memoize": "^2.1.20", "@thi.ng/strings": "^2.1.6", - "@thi.ng/transducers": "^7.9.0" + "@thi.ng/transducers": "^7.9.1" }, "files": [ "*.js", diff --git a/packages/transducers-binary/CHANGELOG.md b/packages/transducers-binary/CHANGELOG.md index 7de040b91c..88b306009c 100644 --- a/packages/transducers-binary/CHANGELOG.md +++ b/packages/transducers-binary/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-binary@1.0.3...@thi.ng/transducers-binary@1.0.4) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/transducers-binary + + + + + ## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-binary@1.0.2...@thi.ng/transducers-binary@1.0.3) (2021-08-19) **Note:** Version bump only for package @thi.ng/transducers-binary diff --git a/packages/transducers-binary/package.json b/packages/transducers-binary/package.json index e50ad3294f..7c8c3376d1 100644 --- a/packages/transducers-binary/package.json +++ b/packages/transducers-binary/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/transducers-binary", - "version": "1.0.3", + "version": "1.0.4", "description": "Binary data related transducers & reducers", "module": "./index.js", "main": "./lib/index.js", @@ -43,7 +43,7 @@ "@thi.ng/errors": "^1.3.4", "@thi.ng/hex": "^1.0.4", "@thi.ng/random": "^2.4.7", - "@thi.ng/transducers": "^7.9.0" + "@thi.ng/transducers": "^7.9.1" }, "files": [ "*.js", diff --git a/packages/transducers-fsm/CHANGELOG.md b/packages/transducers-fsm/CHANGELOG.md index 4f9ab231db..76c90eb023 100644 --- a/packages/transducers-fsm/CHANGELOG.md +++ b/packages/transducers-fsm/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.1.72](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-fsm@1.1.71...@thi.ng/transducers-fsm@1.1.72) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/transducers-fsm + + + + + ## [1.1.71](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-fsm@1.1.70...@thi.ng/transducers-fsm@1.1.71) (2021-08-19) **Note:** Version bump only for package @thi.ng/transducers-fsm diff --git a/packages/transducers-fsm/package.json b/packages/transducers-fsm/package.json index 931205a0da..ea0addc0b7 100644 --- a/packages/transducers-fsm/package.json +++ b/packages/transducers-fsm/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/transducers-fsm", - "version": "1.1.71", + "version": "1.1.72", "description": "Transducer-based Finite State Machine transformer", "module": "./index.js", "main": "./lib/index.js", @@ -39,7 +39,7 @@ }, "dependencies": { "@thi.ng/api": "^7.1.9", - "@thi.ng/transducers": "^7.9.0" + "@thi.ng/transducers": "^7.9.1" }, "files": [ "*.js", diff --git a/packages/transducers-hdom/CHANGELOG.md b/packages/transducers-hdom/CHANGELOG.md index 98179d9546..370bac08a7 100644 --- a/packages/transducers-hdom/CHANGELOG.md +++ b/packages/transducers-hdom/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.0.104](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-hdom@2.0.103...@thi.ng/transducers-hdom@2.0.104) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/transducers-hdom + + + + + ## [2.0.103](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-hdom@2.0.102...@thi.ng/transducers-hdom@2.0.103) (2021-08-19) **Note:** Version bump only for package @thi.ng/transducers-hdom diff --git a/packages/transducers-hdom/package.json b/packages/transducers-hdom/package.json index 9ef1835c2a..8ae33ba1df 100644 --- a/packages/transducers-hdom/package.json +++ b/packages/transducers-hdom/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/transducers-hdom", - "version": "2.0.103", + "version": "2.0.104", "description": "Transducer based UI updater for @thi.ng/hdom", "module": "./index.js", "main": "./lib/index.js", @@ -40,7 +40,7 @@ "dependencies": { "@thi.ng/hdom": "^8.2.31", "@thi.ng/hiccup": "^3.6.21", - "@thi.ng/transducers": "^7.9.0" + "@thi.ng/transducers": "^7.9.1" }, "files": [ "*.js", diff --git a/packages/transducers-patch/CHANGELOG.md b/packages/transducers-patch/CHANGELOG.md index 2e0990ee17..0b1fdf2f14 100644 --- a/packages/transducers-patch/CHANGELOG.md +++ b/packages/transducers-patch/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.2.29](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-patch@0.2.28...@thi.ng/transducers-patch@0.2.29) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/transducers-patch + + + + + ## [0.2.28](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-patch@0.2.27...@thi.ng/transducers-patch@0.2.28) (2021-08-19) **Note:** Version bump only for package @thi.ng/transducers-patch diff --git a/packages/transducers-patch/package.json b/packages/transducers-patch/package.json index f3ac64a43c..7b3978b9c4 100644 --- a/packages/transducers-patch/package.json +++ b/packages/transducers-patch/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/transducers-patch", - "version": "0.2.28", + "version": "0.2.29", "description": "Reducers for patch-based, immutable-by-default array & object editing", "module": "./index.js", "main": "./lib/index.js", @@ -42,7 +42,7 @@ "@thi.ng/checks": "^2.9.10", "@thi.ng/errors": "^1.3.4", "@thi.ng/paths": "^4.2.13", - "@thi.ng/transducers": "^7.9.0" + "@thi.ng/transducers": "^7.9.1" }, "files": [ "*.js", diff --git a/packages/transducers-stats/CHANGELOG.md b/packages/transducers-stats/CHANGELOG.md index 4f8de5f196..a82eceba7f 100644 --- a/packages/transducers-stats/CHANGELOG.md +++ b/packages/transducers-stats/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.1.73](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-stats@1.1.72...@thi.ng/transducers-stats@1.1.73) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/transducers-stats + + + + + ## [1.1.72](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-stats@1.1.71...@thi.ng/transducers-stats@1.1.72) (2021-08-19) **Note:** Version bump only for package @thi.ng/transducers-stats diff --git a/packages/transducers-stats/package.json b/packages/transducers-stats/package.json index 8e344918a5..4156a40ea8 100644 --- a/packages/transducers-stats/package.json +++ b/packages/transducers-stats/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/transducers-stats", - "version": "1.1.72", + "version": "1.1.73", "description": "Transducers for statistical / technical analysis", "module": "./index.js", "main": "./lib/index.js", @@ -39,9 +39,9 @@ }, "dependencies": { "@thi.ng/checks": "^2.9.10", - "@thi.ng/dcons": "^2.3.32", + "@thi.ng/dcons": "^2.3.33", "@thi.ng/errors": "^1.3.4", - "@thi.ng/transducers": "^7.9.0" + "@thi.ng/transducers": "^7.9.1" }, "files": [ "*.js", diff --git a/packages/transducers/CHANGELOG.md b/packages/transducers/CHANGELOG.md index cfcddbd37b..eadd2402b6 100644 --- a/packages/transducers/CHANGELOG.md +++ b/packages/transducers/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [7.9.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers@7.9.0...@thi.ng/transducers@7.9.1) (2021-08-19) + + +### Bug Fixes + +* **transducers:** update normFrequenciesAuto() ([5b5200b](https://github.com/thi-ng/umbrella/commit/5b5200b6d4e61df6c2e6458b99b8b10ea9f3bb65)) + + + + + # [7.9.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers@7.8.4...@thi.ng/transducers@7.9.0) (2021-08-19) diff --git a/packages/transducers/package.json b/packages/transducers/package.json index 266957ba38..2c90bb133f 100644 --- a/packages/transducers/package.json +++ b/packages/transducers/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/transducers", - "version": "7.9.0", + "version": "7.9.1", "description": "Lightweight transducer implementations for ES6 / TypeScript", "module": "./index.js", "main": "./lib/index.js", diff --git a/packages/vector-pools/CHANGELOG.md b/packages/vector-pools/CHANGELOG.md index 01ea6ca1a8..14dbbb311a 100644 --- a/packages/vector-pools/CHANGELOG.md +++ b/packages/vector-pools/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.0.24](https://github.com/thi-ng/umbrella/compare/@thi.ng/vector-pools@2.0.23...@thi.ng/vector-pools@2.0.24) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/vector-pools + + + + + ## [2.0.23](https://github.com/thi-ng/umbrella/compare/@thi.ng/vector-pools@2.0.22...@thi.ng/vector-pools@2.0.23) (2021-08-19) **Note:** Version bump only for package @thi.ng/vector-pools diff --git a/packages/vector-pools/package.json b/packages/vector-pools/package.json index f10995a2a5..df2fe19886 100644 --- a/packages/vector-pools/package.json +++ b/packages/vector-pools/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/vector-pools", - "version": "2.0.23", + "version": "2.0.24", "description": "Data structures for managing & working with strided, memory mapped vectors", "module": "./index.js", "main": "./lib/index.js", @@ -42,8 +42,8 @@ "@thi.ng/binary": "^2.2.10", "@thi.ng/checks": "^2.9.10", "@thi.ng/malloc": "^5.0.13", - "@thi.ng/transducers": "^7.9.0", - "@thi.ng/vectors": "^6.1.1" + "@thi.ng/transducers": "^7.9.1", + "@thi.ng/vectors": "^6.1.2" }, "files": [ "*.js", diff --git a/packages/vectors/CHANGELOG.md b/packages/vectors/CHANGELOG.md index a6dcfc3bba..27fe84892d 100644 --- a/packages/vectors/CHANGELOG.md +++ b/packages/vectors/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [6.1.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/vectors@6.1.1...@thi.ng/vectors@6.1.2) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/vectors + + + + + ## [6.1.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/vectors@6.1.0...@thi.ng/vectors@6.1.1) (2021-08-19) **Note:** Version bump only for package @thi.ng/vectors diff --git a/packages/vectors/package.json b/packages/vectors/package.json index 534203c527..f20bf73141 100644 --- a/packages/vectors/package.json +++ b/packages/vectors/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/vectors", - "version": "6.1.1", + "version": "6.1.2", "description": "Optimized 2d/3d/4d and arbitrary length vector operations", "module": "./index.js", "main": "./lib/index.js", @@ -46,7 +46,7 @@ "@thi.ng/math": "^4.0.5", "@thi.ng/memoize": "^2.1.20", "@thi.ng/random": "^2.4.7", - "@thi.ng/transducers": "^7.9.0" + "@thi.ng/transducers": "^7.9.1" }, "files": [ "*.js", diff --git a/packages/viz/CHANGELOG.md b/packages/viz/CHANGELOG.md index 554e0c0090..19181a2eb8 100644 --- a/packages/viz/CHANGELOG.md +++ b/packages/viz/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.2.40](https://github.com/thi-ng/umbrella/compare/@thi.ng/viz@0.2.39...@thi.ng/viz@0.2.40) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/viz + + + + + ## [0.2.39](https://github.com/thi-ng/umbrella/compare/@thi.ng/viz@0.2.38...@thi.ng/viz@0.2.39) (2021-08-19) **Note:** Version bump only for package @thi.ng/viz diff --git a/packages/viz/package.json b/packages/viz/package.json index d05eb43dbc..464df157cc 100644 --- a/packages/viz/package.json +++ b/packages/viz/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/viz", - "version": "0.2.39", + "version": "0.2.40", "description": "Declarative, functional & multi-format data visualization toolkit based around @thi.ng/hiccup", "module": "./index.js", "main": "./lib/index.js", @@ -49,11 +49,11 @@ "dependencies": { "@thi.ng/api": "^7.1.9", "@thi.ng/arrays": "^1.0.2", - "@thi.ng/associative": "^5.2.13", + "@thi.ng/associative": "^5.2.14", "@thi.ng/checks": "^2.9.10", "@thi.ng/math": "^4.0.5", "@thi.ng/strings": "^2.1.6", - "@thi.ng/transducers": "^7.9.0" + "@thi.ng/transducers": "^7.9.1" }, "files": [ "*.js", diff --git a/packages/webgl-msdf/CHANGELOG.md b/packages/webgl-msdf/CHANGELOG.md index 9a815ed0f2..a42cfb9cf0 100644 --- a/packages/webgl-msdf/CHANGELOG.md +++ b/packages/webgl-msdf/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl-msdf@1.0.5...@thi.ng/webgl-msdf@1.0.6) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/webgl-msdf + + + + + ## [1.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl-msdf@1.0.4...@thi.ng/webgl-msdf@1.0.5) (2021-08-19) **Note:** Version bump only for package @thi.ng/webgl-msdf diff --git a/packages/webgl-msdf/package.json b/packages/webgl-msdf/package.json index 92172fd0e5..9335f1463e 100644 --- a/packages/webgl-msdf/package.json +++ b/packages/webgl-msdf/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/webgl-msdf", - "version": "1.0.5", + "version": "1.0.6", "description": "Multi-channel SDF font rendering & basic text layout for WebGL", "module": "./index.js", "main": "./lib/index.js", @@ -39,11 +39,11 @@ }, "dependencies": { "@thi.ng/api": "^7.1.9", - "@thi.ng/shader-ast": "^0.10.1", - "@thi.ng/transducers": "^7.9.0", - "@thi.ng/vector-pools": "^2.0.23", - "@thi.ng/vectors": "^6.1.1", - "@thi.ng/webgl": "^5.0.11" + "@thi.ng/shader-ast": "^0.10.2", + "@thi.ng/transducers": "^7.9.1", + "@thi.ng/vector-pools": "^2.0.24", + "@thi.ng/vectors": "^6.1.2", + "@thi.ng/webgl": "^5.0.12" }, "files": [ "*.js", diff --git a/packages/webgl-shadertoy/CHANGELOG.md b/packages/webgl-shadertoy/CHANGELOG.md index 7bee235c37..0070048f9b 100644 --- a/packages/webgl-shadertoy/CHANGELOG.md +++ b/packages/webgl-shadertoy/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.2.89](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl-shadertoy@0.2.88...@thi.ng/webgl-shadertoy@0.2.89) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/webgl-shadertoy + + + + + ## [0.2.88](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl-shadertoy@0.2.87...@thi.ng/webgl-shadertoy@0.2.88) (2021-08-19) **Note:** Version bump only for package @thi.ng/webgl-shadertoy diff --git a/packages/webgl-shadertoy/package.json b/packages/webgl-shadertoy/package.json index c495f55022..58a5aa69d4 100644 --- a/packages/webgl-shadertoy/package.json +++ b/packages/webgl-shadertoy/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/webgl-shadertoy", - "version": "0.2.88", + "version": "0.2.89", "description": "Basic WebGL scaffolding for running interactive fragment shaders via @thi.ng/shader-ast", "module": "./index.js", "main": "./lib/index.js", @@ -39,9 +39,9 @@ }, "dependencies": { "@thi.ng/api": "^7.1.9", - "@thi.ng/shader-ast": "^0.10.1", - "@thi.ng/shader-ast-glsl": "^0.2.45", - "@thi.ng/webgl": "^5.0.11" + "@thi.ng/shader-ast": "^0.10.2", + "@thi.ng/shader-ast-glsl": "^0.2.46", + "@thi.ng/webgl": "^5.0.12" }, "files": [ "*.js", diff --git a/packages/webgl/CHANGELOG.md b/packages/webgl/CHANGELOG.md index acafeb70a4..d87eb4577c 100644 --- a/packages/webgl/CHANGELOG.md +++ b/packages/webgl/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.12](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl@5.0.11...@thi.ng/webgl@5.0.12) (2021-08-19) + +**Note:** Version bump only for package @thi.ng/webgl + + + + + ## [5.0.11](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl@5.0.10...@thi.ng/webgl@5.0.11) (2021-08-19) **Note:** Version bump only for package @thi.ng/webgl diff --git a/packages/webgl/package.json b/packages/webgl/package.json index ff015ef362..5f54edb345 100644 --- a/packages/webgl/package.json +++ b/packages/webgl/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/webgl", - "version": "5.0.11", + "version": "5.0.12", "description": "WebGL & GLSL abstraction layer", "module": "./index.js", "main": "./lib/index.js", @@ -40,19 +40,19 @@ "dependencies": { "@thi.ng/adapt-dpi": "^1.0.23", "@thi.ng/api": "^7.1.9", - "@thi.ng/associative": "^5.2.13", + "@thi.ng/associative": "^5.2.14", "@thi.ng/checks": "^2.9.10", "@thi.ng/equiv": "^1.0.45", "@thi.ng/errors": "^1.3.4", - "@thi.ng/matrices": "^1.0.3", + "@thi.ng/matrices": "^1.0.4", "@thi.ng/memoize": "^2.1.20", - "@thi.ng/pixel": "^1.0.3", - "@thi.ng/shader-ast": "^0.10.1", - "@thi.ng/shader-ast-glsl": "^0.2.45", - "@thi.ng/shader-ast-stdlib": "^0.9.1", - "@thi.ng/transducers": "^7.9.0", - "@thi.ng/vector-pools": "^2.0.23", - "@thi.ng/vectors": "^6.1.1" + "@thi.ng/pixel": "^1.0.4", + "@thi.ng/shader-ast": "^0.10.2", + "@thi.ng/shader-ast-glsl": "^0.2.46", + "@thi.ng/shader-ast-stdlib": "^0.9.2", + "@thi.ng/transducers": "^7.9.1", + "@thi.ng/vector-pools": "^2.0.24", + "@thi.ng/vectors": "^6.1.2" }, "files": [ "*.js", From 635d01154a5492fa51d9eeb7e4ddf9119ba7d583 Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Thu, 19 Aug 2021 17:16:31 +0200 Subject: [PATCH 11/76] chore: prune changelogs --- packages/adapt-dpi/CHANGELOG.md | 32 ------- packages/adjacency/CHANGELOG.md | 80 ----------------- packages/api/CHANGELOG.md | 40 --------- packages/args/CHANGELOG.md | 40 --------- packages/arrays/CHANGELOG.md | 56 ------------ packages/associative/CHANGELOG.md | 80 ----------------- packages/atom/CHANGELOG.md | 48 ---------- packages/base-n/CHANGELOG.md | 48 ---------- packages/bench/CHANGELOG.md | 40 --------- packages/bencode/CHANGELOG.md | 80 ----------------- packages/binary/CHANGELOG.md | 48 ---------- packages/bitfield/CHANGELOG.md | 48 ---------- packages/bitstream/CHANGELOG.md | 40 --------- packages/cache/CHANGELOG.md | 80 ----------------- packages/checks/CHANGELOG.md | 32 ------- packages/color/CHANGELOG.md | 72 --------------- packages/colored-noise/CHANGELOG.md | 104 ---------------------- packages/compare/CHANGELOG.md | 40 --------- packages/compose/CHANGELOG.md | 40 --------- packages/csp/CHANGELOG.md | 80 ----------------- packages/csv/CHANGELOG.md | 88 ------------------ packages/date/CHANGELOG.md | 32 ------- packages/dcons/CHANGELOG.md | 80 ----------------- packages/defmulti/CHANGELOG.md | 40 --------- packages/dgraph-dot/CHANGELOG.md | 88 ------------------ packages/dgraph/CHANGELOG.md | 80 ----------------- packages/diff/CHANGELOG.md | 40 --------- packages/distance/CHANGELOG.md | 88 ------------------ packages/dl-asset/CHANGELOG.md | 56 ------------ packages/dlogic/CHANGELOG.md | 40 --------- packages/dot/CHANGELOG.md | 48 ---------- packages/dsp-io-wav/CHANGELOG.md | 88 ------------------ packages/dsp/CHANGELOG.md | 88 ------------------ packages/dual-algebra/CHANGELOG.md | 48 ---------- packages/dynvar/CHANGELOG.md | 40 --------- packages/ecs/CHANGELOG.md | 80 ----------------- packages/egf/CHANGELOG.md | 80 ----------------- packages/equiv/CHANGELOG.md | 32 ------- packages/errors/CHANGELOG.md | 32 ------- packages/fsm/CHANGELOG.md | 80 ----------------- packages/fuzzy-viz/CHANGELOG.md | 104 ---------------------- packages/fuzzy/CHANGELOG.md | 48 ---------- packages/geom-accel/CHANGELOG.md | 80 ----------------- packages/geom-api/CHANGELOG.md | 80 ----------------- packages/geom-arc/CHANGELOG.md | 80 ----------------- packages/geom-clip-line/CHANGELOG.md | 72 --------------- packages/geom-clip-poly/CHANGELOG.md | 80 ----------------- packages/geom-closest-point/CHANGELOG.md | 80 ----------------- packages/geom-fuzz/CHANGELOG.md | 88 ------------------ packages/geom-hull/CHANGELOG.md | 80 ----------------- packages/geom-io-obj/CHANGELOG.md | 80 ----------------- packages/geom-isec/CHANGELOG.md | 80 ----------------- packages/geom-isoline/CHANGELOG.md | 80 ----------------- packages/geom-poly-utils/CHANGELOG.md | 80 ----------------- packages/geom-resample/CHANGELOG.md | 80 ----------------- packages/geom-splines/CHANGELOG.md | 80 ----------------- packages/geom-subdiv-curve/CHANGELOG.md | 80 ----------------- packages/geom-tessellate/CHANGELOG.md | 80 ----------------- packages/geom-voronoi/CHANGELOG.md | 80 ----------------- packages/geom/CHANGELOG.md | 80 ----------------- packages/gp/CHANGELOG.md | 80 ----------------- packages/grid-iterators/CHANGELOG.md | 80 ----------------- packages/hdiff/CHANGELOG.md | 80 ----------------- packages/hdom-canvas/CHANGELOG.md | 80 ----------------- packages/hdom-components/CHANGELOG.md | 80 ----------------- packages/hdom-mock/CHANGELOG.md | 48 ---------- packages/hdom/CHANGELOG.md | 48 ---------- packages/heaps/CHANGELOG.md | 40 --------- packages/hex/CHANGELOG.md | 48 ---------- packages/hiccup-canvas/CHANGELOG.md | 80 ----------------- packages/hiccup-carbon-icons/CHANGELOG.md | 48 ---------- packages/hiccup-css/CHANGELOG.md | 80 ----------------- packages/hiccup-html/CHANGELOG.md | 48 ---------- packages/hiccup-markdown/CHANGELOG.md | 96 -------------------- packages/hiccup-svg/CHANGELOG.md | 80 ----------------- packages/hiccup/CHANGELOG.md | 48 ---------- packages/idgen/CHANGELOG.md | 56 ------------ packages/iges/CHANGELOG.md | 80 ----------------- packages/imgui/CHANGELOG.md | 80 ----------------- packages/interceptors/CHANGELOG.md | 48 ---------- packages/intervals/CHANGELOG.md | 40 --------- packages/iterators/CHANGELOG.md | 80 ----------------- packages/k-means/CHANGELOG.md | 64 ------------- packages/ksuid/CHANGELOG.md | 64 ------------- packages/layout/CHANGELOG.md | 32 ------- packages/leb128/CHANGELOG.md | 80 ----------------- packages/lowdisc/CHANGELOG.md | 40 --------- packages/lsys/CHANGELOG.md | 80 ----------------- packages/malloc/CHANGELOG.md | 48 ---------- packages/math/CHANGELOG.md | 40 --------- packages/matrices/CHANGELOG.md | 80 ----------------- packages/memoize/CHANGELOG.md | 48 ---------- packages/mime/CHANGELOG.md | 56 ------------ packages/morton/CHANGELOG.md | 48 ---------- packages/oquery/CHANGELOG.md | 56 ------------ packages/parse/CHANGELOG.md | 56 ------------ packages/paths/CHANGELOG.md | 48 ---------- packages/pixel-io-netpbm/CHANGELOG.md | 88 ------------------ packages/pixel/CHANGELOG.md | 72 --------------- packages/pointfree-lang/CHANGELOG.md | 72 --------------- packages/pointfree/CHANGELOG.md | 48 ---------- packages/poisson/CHANGELOG.md | 80 ----------------- packages/porter-duff/CHANGELOG.md | 40 --------- packages/prefixes/CHANGELOG.md | 40 --------- packages/quad-edge/CHANGELOG.md | 32 ------- packages/ramp/CHANGELOG.md | 88 ------------------ packages/random/CHANGELOG.md | 48 ---------- packages/range-coder/CHANGELOG.md | 80 ----------------- packages/rdom-canvas/CHANGELOG.md | 88 ------------------ packages/rdom-components/CHANGELOG.md | 80 ----------------- packages/rdom/CHANGELOG.md | 72 --------------- packages/resolve-map/CHANGELOG.md | 48 ---------- packages/rle-pack/CHANGELOG.md | 40 --------- packages/router/CHANGELOG.md | 48 ---------- packages/rstream-csp/CHANGELOG.md | 88 ------------------ packages/rstream-dot/CHANGELOG.md | 88 ------------------ packages/rstream-gestures/CHANGELOG.md | 88 ------------------ packages/rstream-graph/CHANGELOG.md | 88 ------------------ packages/rstream-log-file/CHANGELOG.md | 88 ------------------ packages/rstream-log/CHANGELOG.md | 88 ------------------ packages/rstream-query/CHANGELOG.md | 88 ------------------ packages/rstream/CHANGELOG.md | 80 ----------------- packages/sax/CHANGELOG.md | 80 ----------------- packages/scenegraph/CHANGELOG.md | 80 ----------------- packages/seq/CHANGELOG.md | 40 --------- packages/sexpr/CHANGELOG.md | 48 ---------- packages/shader-ast-glsl/CHANGELOG.md | 88 ------------------ packages/shader-ast-js/CHANGELOG.md | 80 ----------------- packages/shader-ast-stdlib/CHANGELOG.md | 72 --------------- packages/shader-ast/CHANGELOG.md | 64 ------------- packages/simd/CHANGELOG.md | 80 ----------------- packages/soa/CHANGELOG.md | 80 ----------------- packages/sparse/CHANGELOG.md | 80 ----------------- packages/strings/CHANGELOG.md | 48 ---------- packages/system/CHANGELOG.md | 88 ------------------ packages/text-canvas/CHANGELOG.md | 88 ------------------ packages/transducers-binary/CHANGELOG.md | 80 ----------------- packages/transducers-fsm/CHANGELOG.md | 80 ----------------- packages/transducers-hdom/CHANGELOG.md | 80 ----------------- packages/transducers-patch/CHANGELOG.md | 80 ----------------- packages/transducers-stats/CHANGELOG.md | 80 ----------------- packages/transducers/CHANGELOG.md | 56 ------------ packages/unionstruct/CHANGELOG.md | 40 --------- packages/vclock/CHANGELOG.md | 48 ---------- packages/vector-pools/CHANGELOG.md | 80 ----------------- packages/vectors/CHANGELOG.md | 64 ------------- packages/viz/CHANGELOG.md | 88 ------------------ packages/webgl-msdf/CHANGELOG.md | 104 ---------------------- packages/webgl-shadertoy/CHANGELOG.md | 104 ---------------------- packages/webgl/CHANGELOG.md | 96 -------------------- packages/zipper/CHANGELOG.md | 56 ------------ 151 files changed, 10168 deletions(-) diff --git a/packages/adapt-dpi/CHANGELOG.md b/packages/adapt-dpi/CHANGELOG.md index 4984783025..dba9fe0852 100644 --- a/packages/adapt-dpi/CHANGELOG.md +++ b/packages/adapt-dpi/CHANGELOG.md @@ -3,38 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.0.23](https://github.com/thi-ng/umbrella/compare/@thi.ng/adapt-dpi@1.0.22...@thi.ng/adapt-dpi@1.0.23) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/adapt-dpi - - - - - -## [1.0.22](https://github.com/thi-ng/umbrella/compare/@thi.ng/adapt-dpi@1.0.21...@thi.ng/adapt-dpi@1.0.22) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/adapt-dpi - - - - - -## [1.0.21](https://github.com/thi-ng/umbrella/compare/@thi.ng/adapt-dpi@1.0.20...@thi.ng/adapt-dpi@1.0.21) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/adapt-dpi - - - - - -## [1.0.20](https://github.com/thi-ng/umbrella/compare/@thi.ng/adapt-dpi@1.0.19...@thi.ng/adapt-dpi@1.0.20) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/adapt-dpi - - - - - # 1.0.0 (2020-06-07) diff --git a/packages/adjacency/CHANGELOG.md b/packages/adjacency/CHANGELOG.md index b7a0c53b8d..ede714e3de 100644 --- a/packages/adjacency/CHANGELOG.md +++ b/packages/adjacency/CHANGELOG.md @@ -3,86 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/adjacency@1.0.3...@thi.ng/adjacency@1.0.4) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/adjacency - - - - - -## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/adjacency@1.0.2...@thi.ng/adjacency@1.0.3) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/adjacency - - - - - -## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/adjacency@1.0.1...@thi.ng/adjacency@1.0.2) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/adjacency - - - - - -## [1.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/adjacency@0.3.22...@thi.ng/adjacency@1.0.1) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/adjacency - - - - - -## [0.3.22](https://github.com/thi-ng/umbrella/compare/@thi.ng/adjacency@0.3.21...@thi.ng/adjacency@0.3.22) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/adjacency - - - - - -## [0.3.21](https://github.com/thi-ng/umbrella/compare/@thi.ng/adjacency@0.3.20...@thi.ng/adjacency@0.3.21) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/adjacency - - - - - -## [0.3.20](https://github.com/thi-ng/umbrella/compare/@thi.ng/adjacency@0.3.19...@thi.ng/adjacency@0.3.20) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/adjacency - - - - - -## [0.3.19](https://github.com/thi-ng/umbrella/compare/@thi.ng/adjacency@0.3.18...@thi.ng/adjacency@0.3.19) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/adjacency - - - - - -## [0.3.18](https://github.com/thi-ng/umbrella/compare/@thi.ng/adjacency@0.3.17...@thi.ng/adjacency@0.3.18) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/adjacency - - - - - -## [0.3.17](https://github.com/thi-ng/umbrella/compare/@thi.ng/adjacency@0.3.16...@thi.ng/adjacency@0.3.17) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/adjacency - - - - - # [0.3.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/adjacency@0.2.6...@thi.ng/adjacency@0.3.0) (2021-02-20) diff --git a/packages/api/CHANGELOG.md b/packages/api/CHANGELOG.md index b0a701439e..4e1aba0149 100644 --- a/packages/api/CHANGELOG.md +++ b/packages/api/CHANGELOG.md @@ -3,46 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [7.1.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/api@7.1.8...@thi.ng/api@7.1.9) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/api - - - - - -## [7.1.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/api@7.1.7...@thi.ng/api@7.1.8) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/api - - - - - -## [7.1.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/api@7.1.6...@thi.ng/api@7.1.7) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/api - - - - - -## [7.1.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/api@7.1.5...@thi.ng/api@7.1.6) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/api - - - - - -## [7.1.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/api@7.1.4...@thi.ng/api@7.1.5) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/api - - - - - # [7.1.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/api@7.0.0...@thi.ng/api@7.1.0) (2021-03-03) diff --git a/packages/args/CHANGELOG.md b/packages/args/CHANGELOG.md index 6fa46b92ac..8dd78e4486 100644 --- a/packages/args/CHANGELOG.md +++ b/packages/args/CHANGELOG.md @@ -14,46 +14,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline -## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/args@1.0.3...@thi.ng/args@1.0.4) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/args - - - - - -## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/args@1.0.2...@thi.ng/args@1.0.3) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/args - - - - - -## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/args@1.0.1...@thi.ng/args@1.0.2) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/args - - - - - -## [1.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/args@0.7.2...@thi.ng/args@1.0.1) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/args - - - - - -## [0.7.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/args@0.7.1...@thi.ng/args@0.7.2) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/args - - - - - ## [0.7.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/args@0.7.0...@thi.ng/args@0.7.1) (2021-07-29) diff --git a/packages/arrays/CHANGELOG.md b/packages/arrays/CHANGELOG.md index aec741c404..7c61a8dacd 100644 --- a/packages/arrays/CHANGELOG.md +++ b/packages/arrays/CHANGELOG.md @@ -3,62 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/arrays@1.0.1...@thi.ng/arrays@1.0.2) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/arrays - - - - - -## [1.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/arrays@0.10.16...@thi.ng/arrays@1.0.1) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/arrays - - - - - -## [0.10.16](https://github.com/thi-ng/umbrella/compare/@thi.ng/arrays@0.10.15...@thi.ng/arrays@0.10.16) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/arrays - - - - - -## [0.10.15](https://github.com/thi-ng/umbrella/compare/@thi.ng/arrays@0.10.14...@thi.ng/arrays@0.10.15) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/arrays - - - - - -## [0.10.14](https://github.com/thi-ng/umbrella/compare/@thi.ng/arrays@0.10.13...@thi.ng/arrays@0.10.14) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/arrays - - - - - -## [0.10.13](https://github.com/thi-ng/umbrella/compare/@thi.ng/arrays@0.10.12...@thi.ng/arrays@0.10.13) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/arrays - - - - - -## [0.10.12](https://github.com/thi-ng/umbrella/compare/@thi.ng/arrays@0.10.11...@thi.ng/arrays@0.10.12) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/arrays - - - - - # [0.10.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/arrays@0.9.2...@thi.ng/arrays@0.10.0) (2021-01-21) diff --git a/packages/associative/CHANGELOG.md b/packages/associative/CHANGELOG.md index 2cb610eb35..387e10d64e 100644 --- a/packages/associative/CHANGELOG.md +++ b/packages/associative/CHANGELOG.md @@ -3,86 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [5.2.14](https://github.com/thi-ng/umbrella/compare/@thi.ng/associative@5.2.13...@thi.ng/associative@5.2.14) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/associative - - - - - -## [5.2.13](https://github.com/thi-ng/umbrella/compare/@thi.ng/associative@5.2.12...@thi.ng/associative@5.2.13) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/associative - - - - - -## [5.2.12](https://github.com/thi-ng/umbrella/compare/@thi.ng/associative@5.2.11...@thi.ng/associative@5.2.12) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/associative - - - - - -## [5.2.11](https://github.com/thi-ng/umbrella/compare/@thi.ng/associative@5.2.10...@thi.ng/associative@5.2.11) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/associative - - - - - -## [5.2.10](https://github.com/thi-ng/umbrella/compare/@thi.ng/associative@5.2.9...@thi.ng/associative@5.2.10) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/associative - - - - - -## [5.2.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/associative@5.2.8...@thi.ng/associative@5.2.9) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/associative - - - - - -## [5.2.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/associative@5.2.7...@thi.ng/associative@5.2.8) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/associative - - - - - -## [5.2.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/associative@5.2.6...@thi.ng/associative@5.2.7) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/associative - - - - - -## [5.2.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/associative@5.2.5...@thi.ng/associative@5.2.6) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/associative - - - - - -## [5.2.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/associative@5.2.4...@thi.ng/associative@5.2.5) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/associative - - - - - # [5.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/associative@5.1.9...@thi.ng/associative@5.2.0) (2021-03-30) diff --git a/packages/atom/CHANGELOG.md b/packages/atom/CHANGELOG.md index 21c4fd4734..2b2598f6e3 100644 --- a/packages/atom/CHANGELOG.md +++ b/packages/atom/CHANGELOG.md @@ -3,54 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [4.1.41](https://github.com/thi-ng/umbrella/compare/@thi.ng/atom@4.1.40...@thi.ng/atom@4.1.41) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/atom - - - - - -## [4.1.40](https://github.com/thi-ng/umbrella/compare/@thi.ng/atom@4.1.39...@thi.ng/atom@4.1.40) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/atom - - - - - -## [4.1.39](https://github.com/thi-ng/umbrella/compare/@thi.ng/atom@4.1.38...@thi.ng/atom@4.1.39) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/atom - - - - - -## [4.1.38](https://github.com/thi-ng/umbrella/compare/@thi.ng/atom@4.1.37...@thi.ng/atom@4.1.38) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/atom - - - - - -## [4.1.37](https://github.com/thi-ng/umbrella/compare/@thi.ng/atom@4.1.36...@thi.ng/atom@4.1.37) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/atom - - - - - -## [4.1.36](https://github.com/thi-ng/umbrella/compare/@thi.ng/atom@4.1.35...@thi.ng/atom@4.1.36) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/atom - - - - - # [4.1.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/atom@4.0.0...@thi.ng/atom@4.1.0) (2020-04-01) diff --git a/packages/base-n/CHANGELOG.md b/packages/base-n/CHANGELOG.md index f5439581aa..106493e618 100644 --- a/packages/base-n/CHANGELOG.md +++ b/packages/base-n/CHANGELOG.md @@ -3,38 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/base-n@1.0.3...@thi.ng/base-n@1.0.4) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/base-n - - - - - -## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/base-n@1.0.2...@thi.ng/base-n@1.0.3) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/base-n - - - - - -## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/base-n@1.0.1...@thi.ng/base-n@1.0.2) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/base-n - - - - - -## [1.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/base-n@0.2.0...@thi.ng/base-n@1.0.1) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/base-n - - - - - # [0.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/base-n@0.1.8...@thi.ng/base-n@0.2.0) (2021-08-07) @@ -46,22 +14,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline -## [0.1.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/base-n@0.1.7...@thi.ng/base-n@0.1.8) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/base-n - - - - - -## [0.1.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/base-n@0.1.6...@thi.ng/base-n@0.1.7) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/base-n - - - - - # 0.1.0 (2021-01-13) diff --git a/packages/bench/CHANGELOG.md b/packages/bench/CHANGELOG.md index a6b08d159e..fefce06164 100644 --- a/packages/bench/CHANGELOG.md +++ b/packages/bench/CHANGELOG.md @@ -3,46 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [2.1.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/bench@2.1.4...@thi.ng/bench@2.1.5) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/bench - - - - - -## [2.1.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/bench@2.1.3...@thi.ng/bench@2.1.4) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/bench - - - - - -## [2.1.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/bench@2.1.2...@thi.ng/bench@2.1.3) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/bench - - - - - -## [2.1.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/bench@2.1.1...@thi.ng/bench@2.1.2) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/bench - - - - - -## [2.1.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/bench@2.1.0...@thi.ng/bench@2.1.1) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/bench - - - - - # [2.1.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/bench@2.0.31...@thi.ng/bench@2.1.0) (2021-03-12) diff --git a/packages/bencode/CHANGELOG.md b/packages/bencode/CHANGELOG.md index 696de27364..1c52f9f733 100644 --- a/packages/bencode/CHANGELOG.md +++ b/packages/bencode/CHANGELOG.md @@ -3,86 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/bencode@1.0.3...@thi.ng/bencode@1.0.4) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/bencode - - - - - -## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/bencode@1.0.2...@thi.ng/bencode@1.0.3) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/bencode - - - - - -## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/bencode@1.0.1...@thi.ng/bencode@1.0.2) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/bencode - - - - - -## [1.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/bencode@0.3.69...@thi.ng/bencode@1.0.1) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/bencode - - - - - -## [0.3.69](https://github.com/thi-ng/umbrella/compare/@thi.ng/bencode@0.3.68...@thi.ng/bencode@0.3.69) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/bencode - - - - - -## [0.3.68](https://github.com/thi-ng/umbrella/compare/@thi.ng/bencode@0.3.67...@thi.ng/bencode@0.3.68) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/bencode - - - - - -## [0.3.67](https://github.com/thi-ng/umbrella/compare/@thi.ng/bencode@0.3.66...@thi.ng/bencode@0.3.67) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/bencode - - - - - -## [0.3.66](https://github.com/thi-ng/umbrella/compare/@thi.ng/bencode@0.3.65...@thi.ng/bencode@0.3.66) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/bencode - - - - - -## [0.3.65](https://github.com/thi-ng/umbrella/compare/@thi.ng/bencode@0.3.64...@thi.ng/bencode@0.3.65) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/bencode - - - - - -## [0.3.64](https://github.com/thi-ng/umbrella/compare/@thi.ng/bencode@0.3.63...@thi.ng/bencode@0.3.64) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/bencode - - - - - # [0.3.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/bencode@0.2.17...@thi.ng/bencode@0.3.0) (2019-07-07) ### Features diff --git a/packages/binary/CHANGELOG.md b/packages/binary/CHANGELOG.md index bb78be1d0a..f5d7ea05ae 100644 --- a/packages/binary/CHANGELOG.md +++ b/packages/binary/CHANGELOG.md @@ -3,54 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [2.2.10](https://github.com/thi-ng/umbrella/compare/@thi.ng/binary@2.2.9...@thi.ng/binary@2.2.10) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/binary - - - - - -## [2.2.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/binary@2.2.8...@thi.ng/binary@2.2.9) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/binary - - - - - -## [2.2.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/binary@2.2.7...@thi.ng/binary@2.2.8) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/binary - - - - - -## [2.2.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/binary@2.2.6...@thi.ng/binary@2.2.7) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/binary - - - - - -## [2.2.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/binary@2.2.5...@thi.ng/binary@2.2.6) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/binary - - - - - -## [2.2.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/binary@2.2.4...@thi.ng/binary@2.2.5) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/binary - - - - - # [2.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/binary@2.1.0...@thi.ng/binary@2.2.0) (2021-03-03) diff --git a/packages/bitfield/CHANGELOG.md b/packages/bitfield/CHANGELOG.md index 055632c4f7..fdbb2aed7f 100644 --- a/packages/bitfield/CHANGELOG.md +++ b/packages/bitfield/CHANGELOG.md @@ -3,54 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/bitfield@1.0.1...@thi.ng/bitfield@1.0.2) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/bitfield - - - - - -## [1.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/bitfield@0.4.12...@thi.ng/bitfield@1.0.1) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/bitfield - - - - - -## [0.4.12](https://github.com/thi-ng/umbrella/compare/@thi.ng/bitfield@0.4.11...@thi.ng/bitfield@0.4.12) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/bitfield - - - - - -## [0.4.11](https://github.com/thi-ng/umbrella/compare/@thi.ng/bitfield@0.4.10...@thi.ng/bitfield@0.4.11) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/bitfield - - - - - -## [0.4.10](https://github.com/thi-ng/umbrella/compare/@thi.ng/bitfield@0.4.9...@thi.ng/bitfield@0.4.10) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/bitfield - - - - - -## [0.4.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/bitfield@0.4.8...@thi.ng/bitfield@0.4.9) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/bitfield - - - - - # [0.4.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/bitfield@0.3.30...@thi.ng/bitfield@0.4.0) (2021-02-20) diff --git a/packages/bitstream/CHANGELOG.md b/packages/bitstream/CHANGELOG.md index 5fe28c59dd..6e2fb1f545 100644 --- a/packages/bitstream/CHANGELOG.md +++ b/packages/bitstream/CHANGELOG.md @@ -3,46 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.1.43](https://github.com/thi-ng/umbrella/compare/@thi.ng/bitstream@1.1.42...@thi.ng/bitstream@1.1.43) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/bitstream - - - - - -## [1.1.42](https://github.com/thi-ng/umbrella/compare/@thi.ng/bitstream@1.1.41...@thi.ng/bitstream@1.1.42) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/bitstream - - - - - -## [1.1.41](https://github.com/thi-ng/umbrella/compare/@thi.ng/bitstream@1.1.40...@thi.ng/bitstream@1.1.41) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/bitstream - - - - - -## [1.1.40](https://github.com/thi-ng/umbrella/compare/@thi.ng/bitstream@1.1.39...@thi.ng/bitstream@1.1.40) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/bitstream - - - - - -## [1.1.39](https://github.com/thi-ng/umbrella/compare/@thi.ng/bitstream@1.1.38...@thi.ng/bitstream@1.1.39) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/bitstream - - - - - # [1.1.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/bitstream@1.0.6...@thi.ng/bitstream@1.1.0) (2019-07-07) ### Features diff --git a/packages/cache/CHANGELOG.md b/packages/cache/CHANGELOG.md index a5d796a70a..2ae3e93427 100644 --- a/packages/cache/CHANGELOG.md +++ b/packages/cache/CHANGELOG.md @@ -3,86 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.0.93](https://github.com/thi-ng/umbrella/compare/@thi.ng/cache@1.0.92...@thi.ng/cache@1.0.93) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/cache - - - - - -## [1.0.92](https://github.com/thi-ng/umbrella/compare/@thi.ng/cache@1.0.91...@thi.ng/cache@1.0.92) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/cache - - - - - -## [1.0.91](https://github.com/thi-ng/umbrella/compare/@thi.ng/cache@1.0.90...@thi.ng/cache@1.0.91) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/cache - - - - - -## [1.0.90](https://github.com/thi-ng/umbrella/compare/@thi.ng/cache@1.0.89...@thi.ng/cache@1.0.90) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/cache - - - - - -## [1.0.89](https://github.com/thi-ng/umbrella/compare/@thi.ng/cache@1.0.88...@thi.ng/cache@1.0.89) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/cache - - - - - -## [1.0.88](https://github.com/thi-ng/umbrella/compare/@thi.ng/cache@1.0.87...@thi.ng/cache@1.0.88) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/cache - - - - - -## [1.0.87](https://github.com/thi-ng/umbrella/compare/@thi.ng/cache@1.0.86...@thi.ng/cache@1.0.87) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/cache - - - - - -## [1.0.86](https://github.com/thi-ng/umbrella/compare/@thi.ng/cache@1.0.85...@thi.ng/cache@1.0.86) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/cache - - - - - -## [1.0.85](https://github.com/thi-ng/umbrella/compare/@thi.ng/cache@1.0.84...@thi.ng/cache@1.0.85) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/cache - - - - - -## [1.0.84](https://github.com/thi-ng/umbrella/compare/@thi.ng/cache@1.0.83...@thi.ng/cache@1.0.84) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/cache - - - - - # [1.0.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/cache@0.2.40...@thi.ng/cache@1.0.0) (2019-01-21) ### Bug Fixes diff --git a/packages/checks/CHANGELOG.md b/packages/checks/CHANGELOG.md index 16ca0dc175..137b7a7945 100644 --- a/packages/checks/CHANGELOG.md +++ b/packages/checks/CHANGELOG.md @@ -3,38 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [2.9.10](https://github.com/thi-ng/umbrella/compare/@thi.ng/checks@2.9.9...@thi.ng/checks@2.9.10) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/checks - - - - - -## [2.9.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/checks@2.9.8...@thi.ng/checks@2.9.9) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/checks - - - - - -## [2.9.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/checks@2.9.7...@thi.ng/checks@2.9.8) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/checks - - - - - -## [2.9.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/checks@2.9.6...@thi.ng/checks@2.9.7) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/checks - - - - - # [2.9.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/checks@2.8.0...@thi.ng/checks@2.9.0) (2021-02-20) diff --git a/packages/color/CHANGELOG.md b/packages/color/CHANGELOG.md index 0d1fe11462..1ad7712d1c 100644 --- a/packages/color/CHANGELOG.md +++ b/packages/color/CHANGELOG.md @@ -3,54 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [3.2.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/color@3.2.5...@thi.ng/color@3.2.6) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/color - - - - - -## [3.2.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/color@3.2.4...@thi.ng/color@3.2.5) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/color - - - - - -## [3.2.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/color@3.2.3...@thi.ng/color@3.2.4) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/color - - - - - -## [3.2.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/color@3.2.2...@thi.ng/color@3.2.3) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/color - - - - - -## [3.2.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/color@3.2.1...@thi.ng/color@3.2.2) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/color - - - - - -## [3.2.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/color@3.2.0...@thi.ng/color@3.2.1) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/color - - - - - # [3.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/color@3.1.18...@thi.ng/color@3.2.0) (2021-08-04) @@ -62,30 +14,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline -## [3.1.18](https://github.com/thi-ng/umbrella/compare/@thi.ng/color@3.1.17...@thi.ng/color@3.1.18) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/color - - - - - -## [3.1.17](https://github.com/thi-ng/umbrella/compare/@thi.ng/color@3.1.16...@thi.ng/color@3.1.17) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/color - - - - - -## [3.1.16](https://github.com/thi-ng/umbrella/compare/@thi.ng/color@3.1.15...@thi.ng/color@3.1.16) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/color - - - - - # [3.1.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/color@3.0.1...@thi.ng/color@3.1.0) (2021-02-24) diff --git a/packages/colored-noise/CHANGELOG.md b/packages/colored-noise/CHANGELOG.md index 634a30faf4..5059becf13 100644 --- a/packages/colored-noise/CHANGELOG.md +++ b/packages/colored-noise/CHANGELOG.md @@ -3,110 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [0.1.46](https://github.com/thi-ng/umbrella/compare/@thi.ng/colored-noise@0.1.45...@thi.ng/colored-noise@0.1.46) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/colored-noise - - - - - -## [0.1.45](https://github.com/thi-ng/umbrella/compare/@thi.ng/colored-noise@0.1.44...@thi.ng/colored-noise@0.1.45) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/colored-noise - - - - - -## [0.1.44](https://github.com/thi-ng/umbrella/compare/@thi.ng/colored-noise@0.1.43...@thi.ng/colored-noise@0.1.44) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/colored-noise - - - - - -## [0.1.43](https://github.com/thi-ng/umbrella/compare/@thi.ng/colored-noise@0.1.42...@thi.ng/colored-noise@0.1.43) (2021-08-13) - -**Note:** Version bump only for package @thi.ng/colored-noise - - - - - -## [0.1.42](https://github.com/thi-ng/umbrella/compare/@thi.ng/colored-noise@0.1.41...@thi.ng/colored-noise@0.1.42) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/colored-noise - - - - - -## [0.1.41](https://github.com/thi-ng/umbrella/compare/@thi.ng/colored-noise@0.1.40...@thi.ng/colored-noise@0.1.41) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/colored-noise - - - - - -## [0.1.40](https://github.com/thi-ng/umbrella/compare/@thi.ng/colored-noise@0.1.39...@thi.ng/colored-noise@0.1.40) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/colored-noise - - - - - -## [0.1.39](https://github.com/thi-ng/umbrella/compare/@thi.ng/colored-noise@0.1.38...@thi.ng/colored-noise@0.1.39) (2021-08-07) - -**Note:** Version bump only for package @thi.ng/colored-noise - - - - - -## [0.1.38](https://github.com/thi-ng/umbrella/compare/@thi.ng/colored-noise@0.1.37...@thi.ng/colored-noise@0.1.38) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/colored-noise - - - - - -## [0.1.37](https://github.com/thi-ng/umbrella/compare/@thi.ng/colored-noise@0.1.36...@thi.ng/colored-noise@0.1.37) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/colored-noise - - - - - -## [0.1.36](https://github.com/thi-ng/umbrella/compare/@thi.ng/colored-noise@0.1.35...@thi.ng/colored-noise@0.1.36) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/colored-noise - - - - - -## [0.1.35](https://github.com/thi-ng/umbrella/compare/@thi.ng/colored-noise@0.1.34...@thi.ng/colored-noise@0.1.35) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/colored-noise - - - - - -## [0.1.34](https://github.com/thi-ng/umbrella/compare/@thi.ng/colored-noise@0.1.33...@thi.ng/colored-noise@0.1.34) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/colored-noise - - - - - # 0.1.0 (2020-08-28) diff --git a/packages/compare/CHANGELOG.md b/packages/compare/CHANGELOG.md index df98767f4c..8f224b9802 100644 --- a/packages/compare/CHANGELOG.md +++ b/packages/compare/CHANGELOG.md @@ -3,46 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.3.33](https://github.com/thi-ng/umbrella/compare/@thi.ng/compare@1.3.32...@thi.ng/compare@1.3.33) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/compare - - - - - -## [1.3.32](https://github.com/thi-ng/umbrella/compare/@thi.ng/compare@1.3.31...@thi.ng/compare@1.3.32) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/compare - - - - - -## [1.3.31](https://github.com/thi-ng/umbrella/compare/@thi.ng/compare@1.3.30...@thi.ng/compare@1.3.31) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/compare - - - - - -## [1.3.30](https://github.com/thi-ng/umbrella/compare/@thi.ng/compare@1.3.29...@thi.ng/compare@1.3.30) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/compare - - - - - -## [1.3.29](https://github.com/thi-ng/umbrella/compare/@thi.ng/compare@1.3.28...@thi.ng/compare@1.3.29) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/compare - - - - - # [1.3.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/compare@1.2.2...@thi.ng/compare@1.3.0) (2020-04-05) diff --git a/packages/compose/CHANGELOG.md b/packages/compose/CHANGELOG.md index 58996e8ff6..9d7e5cac39 100644 --- a/packages/compose/CHANGELOG.md +++ b/packages/compose/CHANGELOG.md @@ -3,46 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.4.35](https://github.com/thi-ng/umbrella/compare/@thi.ng/compose@1.4.34...@thi.ng/compose@1.4.35) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/compose - - - - - -## [1.4.34](https://github.com/thi-ng/umbrella/compare/@thi.ng/compose@1.4.33...@thi.ng/compose@1.4.34) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/compose - - - - - -## [1.4.33](https://github.com/thi-ng/umbrella/compare/@thi.ng/compose@1.4.32...@thi.ng/compose@1.4.33) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/compose - - - - - -## [1.4.32](https://github.com/thi-ng/umbrella/compare/@thi.ng/compose@1.4.31...@thi.ng/compose@1.4.32) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/compose - - - - - -## [1.4.31](https://github.com/thi-ng/umbrella/compare/@thi.ng/compose@1.4.30...@thi.ng/compose@1.4.31) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/compose - - - - - # [1.4.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/compose@1.3.12...@thi.ng/compose@1.4.0) (2020-03-28) diff --git a/packages/csp/CHANGELOG.md b/packages/csp/CHANGELOG.md index 157cd95ae3..eaeaac92e9 100644 --- a/packages/csp/CHANGELOG.md +++ b/packages/csp/CHANGELOG.md @@ -3,86 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.1.73](https://github.com/thi-ng/umbrella/compare/@thi.ng/csp@1.1.72...@thi.ng/csp@1.1.73) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/csp - - - - - -## [1.1.72](https://github.com/thi-ng/umbrella/compare/@thi.ng/csp@1.1.71...@thi.ng/csp@1.1.72) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/csp - - - - - -## [1.1.71](https://github.com/thi-ng/umbrella/compare/@thi.ng/csp@1.1.70...@thi.ng/csp@1.1.71) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/csp - - - - - -## [1.1.70](https://github.com/thi-ng/umbrella/compare/@thi.ng/csp@1.1.69...@thi.ng/csp@1.1.70) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/csp - - - - - -## [1.1.69](https://github.com/thi-ng/umbrella/compare/@thi.ng/csp@1.1.68...@thi.ng/csp@1.1.69) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/csp - - - - - -## [1.1.68](https://github.com/thi-ng/umbrella/compare/@thi.ng/csp@1.1.67...@thi.ng/csp@1.1.68) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/csp - - - - - -## [1.1.67](https://github.com/thi-ng/umbrella/compare/@thi.ng/csp@1.1.66...@thi.ng/csp@1.1.67) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/csp - - - - - -## [1.1.66](https://github.com/thi-ng/umbrella/compare/@thi.ng/csp@1.1.65...@thi.ng/csp@1.1.66) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/csp - - - - - -## [1.1.65](https://github.com/thi-ng/umbrella/compare/@thi.ng/csp@1.1.64...@thi.ng/csp@1.1.65) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/csp - - - - - -## [1.1.64](https://github.com/thi-ng/umbrella/compare/@thi.ng/csp@1.1.63...@thi.ng/csp@1.1.64) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/csp - - - - - # [1.1.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/csp@1.0.19...@thi.ng/csp@1.1.0) (2019-07-07) ### Bug Fixes diff --git a/packages/csv/CHANGELOG.md b/packages/csv/CHANGELOG.md index 323071ab05..98fca9bbd0 100644 --- a/packages/csv/CHANGELOG.md +++ b/packages/csv/CHANGELOG.md @@ -3,94 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.0.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/csv@1.0.5...@thi.ng/csv@1.0.6) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/csv - - - - - -## [1.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/csv@1.0.4...@thi.ng/csv@1.0.5) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/csv - - - - - -## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/csv@1.0.3...@thi.ng/csv@1.0.4) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/csv - - - - - -## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/csv@1.0.2...@thi.ng/csv@1.0.3) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/csv - - - - - -## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/csv@1.0.1...@thi.ng/csv@1.0.2) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/csv - - - - - -## [1.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/csv@0.1.30...@thi.ng/csv@1.0.1) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/csv - - - - - -## [0.1.30](https://github.com/thi-ng/umbrella/compare/@thi.ng/csv@0.1.29...@thi.ng/csv@0.1.30) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/csv - - - - - -## [0.1.29](https://github.com/thi-ng/umbrella/compare/@thi.ng/csv@0.1.28...@thi.ng/csv@0.1.29) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/csv - - - - - -## [0.1.28](https://github.com/thi-ng/umbrella/compare/@thi.ng/csv@0.1.27...@thi.ng/csv@0.1.28) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/csv - - - - - -## [0.1.27](https://github.com/thi-ng/umbrella/compare/@thi.ng/csv@0.1.26...@thi.ng/csv@0.1.27) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/csv - - - - - -## [0.1.26](https://github.com/thi-ng/umbrella/compare/@thi.ng/csv@0.1.25...@thi.ng/csv@0.1.26) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/csv - - - - - # 0.1.0 (2020-11-24) diff --git a/packages/date/CHANGELOG.md b/packages/date/CHANGELOG.md index cd1c48e146..c0f3af2a4b 100644 --- a/packages/date/CHANGELOG.md +++ b/packages/date/CHANGELOG.md @@ -3,14 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/date@1.0.4...@thi.ng/date@1.0.5) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/date - - - - - ## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/date@1.0.3...@thi.ng/date@1.0.4) (2021-08-09) @@ -22,30 +14,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline -## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/date@1.0.2...@thi.ng/date@1.0.3) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/date - - - - - -## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/date@1.0.1...@thi.ng/date@1.0.2) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/date - - - - - -## [1.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/date@0.9.0...@thi.ng/date@1.0.1) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/date - - - - - # [0.9.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/date@0.8.0...@thi.ng/date@0.9.0) (2021-08-04) diff --git a/packages/dcons/CHANGELOG.md b/packages/dcons/CHANGELOG.md index 1c129562e5..26e90ab743 100644 --- a/packages/dcons/CHANGELOG.md +++ b/packages/dcons/CHANGELOG.md @@ -3,86 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [2.3.33](https://github.com/thi-ng/umbrella/compare/@thi.ng/dcons@2.3.32...@thi.ng/dcons@2.3.33) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/dcons - - - - - -## [2.3.32](https://github.com/thi-ng/umbrella/compare/@thi.ng/dcons@2.3.31...@thi.ng/dcons@2.3.32) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/dcons - - - - - -## [2.3.31](https://github.com/thi-ng/umbrella/compare/@thi.ng/dcons@2.3.30...@thi.ng/dcons@2.3.31) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/dcons - - - - - -## [2.3.30](https://github.com/thi-ng/umbrella/compare/@thi.ng/dcons@2.3.29...@thi.ng/dcons@2.3.30) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/dcons - - - - - -## [2.3.29](https://github.com/thi-ng/umbrella/compare/@thi.ng/dcons@2.3.28...@thi.ng/dcons@2.3.29) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/dcons - - - - - -## [2.3.28](https://github.com/thi-ng/umbrella/compare/@thi.ng/dcons@2.3.27...@thi.ng/dcons@2.3.28) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/dcons - - - - - -## [2.3.27](https://github.com/thi-ng/umbrella/compare/@thi.ng/dcons@2.3.26...@thi.ng/dcons@2.3.27) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/dcons - - - - - -## [2.3.26](https://github.com/thi-ng/umbrella/compare/@thi.ng/dcons@2.3.25...@thi.ng/dcons@2.3.26) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/dcons - - - - - -## [2.3.25](https://github.com/thi-ng/umbrella/compare/@thi.ng/dcons@2.3.24...@thi.ng/dcons@2.3.25) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/dcons - - - - - -## [2.3.24](https://github.com/thi-ng/umbrella/compare/@thi.ng/dcons@2.3.23...@thi.ng/dcons@2.3.24) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/dcons - - - - - # [2.3.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/dcons@2.2.32...@thi.ng/dcons@2.3.0) (2020-10-19) diff --git a/packages/defmulti/CHANGELOG.md b/packages/defmulti/CHANGELOG.md index 58a729de25..98f47a0359 100644 --- a/packages/defmulti/CHANGELOG.md +++ b/packages/defmulti/CHANGELOG.md @@ -3,46 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.3.16](https://github.com/thi-ng/umbrella/compare/@thi.ng/defmulti@1.3.15...@thi.ng/defmulti@1.3.16) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/defmulti - - - - - -## [1.3.15](https://github.com/thi-ng/umbrella/compare/@thi.ng/defmulti@1.3.14...@thi.ng/defmulti@1.3.15) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/defmulti - - - - - -## [1.3.14](https://github.com/thi-ng/umbrella/compare/@thi.ng/defmulti@1.3.13...@thi.ng/defmulti@1.3.14) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/defmulti - - - - - -## [1.3.13](https://github.com/thi-ng/umbrella/compare/@thi.ng/defmulti@1.3.12...@thi.ng/defmulti@1.3.13) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/defmulti - - - - - -## [1.3.12](https://github.com/thi-ng/umbrella/compare/@thi.ng/defmulti@1.3.11...@thi.ng/defmulti@1.3.12) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/defmulti - - - - - ## [1.3.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/defmulti@1.3.5...@thi.ng/defmulti@1.3.6) (2021-03-03) diff --git a/packages/dgraph-dot/CHANGELOG.md b/packages/dgraph-dot/CHANGELOG.md index cff2ef7bf9..9021667565 100644 --- a/packages/dgraph-dot/CHANGELOG.md +++ b/packages/dgraph-dot/CHANGELOG.md @@ -3,94 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.0.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/dgraph-dot@1.0.5...@thi.ng/dgraph-dot@1.0.6) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/dgraph-dot - - - - - -## [1.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/dgraph-dot@1.0.4...@thi.ng/dgraph-dot@1.0.5) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/dgraph-dot - - - - - -## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/dgraph-dot@1.0.3...@thi.ng/dgraph-dot@1.0.4) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/dgraph-dot - - - - - -## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/dgraph-dot@1.0.2...@thi.ng/dgraph-dot@1.0.3) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/dgraph-dot - - - - - -## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/dgraph-dot@1.0.1...@thi.ng/dgraph-dot@1.0.2) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/dgraph-dot - - - - - -## [1.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/dgraph-dot@0.1.57...@thi.ng/dgraph-dot@1.0.1) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/dgraph-dot - - - - - -## [0.1.57](https://github.com/thi-ng/umbrella/compare/@thi.ng/dgraph-dot@0.1.56...@thi.ng/dgraph-dot@0.1.57) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/dgraph-dot - - - - - -## [0.1.56](https://github.com/thi-ng/umbrella/compare/@thi.ng/dgraph-dot@0.1.55...@thi.ng/dgraph-dot@0.1.56) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/dgraph-dot - - - - - -## [0.1.55](https://github.com/thi-ng/umbrella/compare/@thi.ng/dgraph-dot@0.1.54...@thi.ng/dgraph-dot@0.1.55) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/dgraph-dot - - - - - -## [0.1.54](https://github.com/thi-ng/umbrella/compare/@thi.ng/dgraph-dot@0.1.53...@thi.ng/dgraph-dot@0.1.54) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/dgraph-dot - - - - - -## [0.1.53](https://github.com/thi-ng/umbrella/compare/@thi.ng/dgraph-dot@0.1.52...@thi.ng/dgraph-dot@0.1.53) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/dgraph-dot - - - - - # 0.1.0 (2020-04-03) diff --git a/packages/dgraph/CHANGELOG.md b/packages/dgraph/CHANGELOG.md index 935f9cd654..4b5ab15f6b 100644 --- a/packages/dgraph/CHANGELOG.md +++ b/packages/dgraph/CHANGELOG.md @@ -3,86 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.3.33](https://github.com/thi-ng/umbrella/compare/@thi.ng/dgraph@1.3.32...@thi.ng/dgraph@1.3.33) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/dgraph - - - - - -## [1.3.32](https://github.com/thi-ng/umbrella/compare/@thi.ng/dgraph@1.3.31...@thi.ng/dgraph@1.3.32) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/dgraph - - - - - -## [1.3.31](https://github.com/thi-ng/umbrella/compare/@thi.ng/dgraph@1.3.30...@thi.ng/dgraph@1.3.31) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/dgraph - - - - - -## [1.3.30](https://github.com/thi-ng/umbrella/compare/@thi.ng/dgraph@1.3.29...@thi.ng/dgraph@1.3.30) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/dgraph - - - - - -## [1.3.29](https://github.com/thi-ng/umbrella/compare/@thi.ng/dgraph@1.3.28...@thi.ng/dgraph@1.3.29) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/dgraph - - - - - -## [1.3.28](https://github.com/thi-ng/umbrella/compare/@thi.ng/dgraph@1.3.27...@thi.ng/dgraph@1.3.28) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/dgraph - - - - - -## [1.3.27](https://github.com/thi-ng/umbrella/compare/@thi.ng/dgraph@1.3.26...@thi.ng/dgraph@1.3.27) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/dgraph - - - - - -## [1.3.26](https://github.com/thi-ng/umbrella/compare/@thi.ng/dgraph@1.3.25...@thi.ng/dgraph@1.3.26) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/dgraph - - - - - -## [1.3.25](https://github.com/thi-ng/umbrella/compare/@thi.ng/dgraph@1.3.24...@thi.ng/dgraph@1.3.25) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/dgraph - - - - - -## [1.3.24](https://github.com/thi-ng/umbrella/compare/@thi.ng/dgraph@1.3.23...@thi.ng/dgraph@1.3.24) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/dgraph - - - - - # [1.3.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/dgraph@1.2.28...@thi.ng/dgraph@1.3.0) (2020-11-24) diff --git a/packages/diff/CHANGELOG.md b/packages/diff/CHANGELOG.md index 6ad389e3b7..b7dd793435 100644 --- a/packages/diff/CHANGELOG.md +++ b/packages/diff/CHANGELOG.md @@ -3,46 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [4.0.12](https://github.com/thi-ng/umbrella/compare/@thi.ng/diff@4.0.11...@thi.ng/diff@4.0.12) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/diff - - - - - -## [4.0.11](https://github.com/thi-ng/umbrella/compare/@thi.ng/diff@4.0.10...@thi.ng/diff@4.0.11) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/diff - - - - - -## [4.0.10](https://github.com/thi-ng/umbrella/compare/@thi.ng/diff@4.0.9...@thi.ng/diff@4.0.10) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/diff - - - - - -## [4.0.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/diff@4.0.8...@thi.ng/diff@4.0.9) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/diff - - - - - -## [4.0.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/diff@4.0.7...@thi.ng/diff@4.0.8) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/diff - - - - - # [4.0.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/diff@3.2.35...@thi.ng/diff@4.0.0) (2020-12-22) diff --git a/packages/distance/CHANGELOG.md b/packages/distance/CHANGELOG.md index 49ff47de28..485b4aad40 100644 --- a/packages/distance/CHANGELOG.md +++ b/packages/distance/CHANGELOG.md @@ -3,94 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.0.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/distance@1.0.5...@thi.ng/distance@1.0.6) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/distance - - - - - -## [1.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/distance@1.0.4...@thi.ng/distance@1.0.5) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/distance - - - - - -## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/distance@1.0.3...@thi.ng/distance@1.0.4) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/distance - - - - - -## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/distance@1.0.2...@thi.ng/distance@1.0.3) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/distance - - - - - -## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/distance@1.0.1...@thi.ng/distance@1.0.2) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/distance - - - - - -## [1.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/distance@0.3.6...@thi.ng/distance@1.0.1) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/distance - - - - - -## [0.3.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/distance@0.3.5...@thi.ng/distance@0.3.6) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/distance - - - - - -## [0.3.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/distance@0.3.4...@thi.ng/distance@0.3.5) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/distance - - - - - -## [0.3.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/distance@0.3.3...@thi.ng/distance@0.3.4) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/distance - - - - - -## [0.3.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/distance@0.3.2...@thi.ng/distance@0.3.3) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/distance - - - - - -## [0.3.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/distance@0.3.1...@thi.ng/distance@0.3.2) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/distance - - - - - # [0.3.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/distance@0.2.2...@thi.ng/distance@0.3.0) (2021-04-19) diff --git a/packages/dl-asset/CHANGELOG.md b/packages/dl-asset/CHANGELOG.md index 9bc73be451..f0f90205f6 100644 --- a/packages/dl-asset/CHANGELOG.md +++ b/packages/dl-asset/CHANGELOG.md @@ -3,62 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/dl-asset@1.0.3...@thi.ng/dl-asset@1.0.4) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/dl-asset - - - - - -## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/dl-asset@1.0.2...@thi.ng/dl-asset@1.0.3) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/dl-asset - - - - - -## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/dl-asset@1.0.1...@thi.ng/dl-asset@1.0.2) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/dl-asset - - - - - -## [1.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/dl-asset@0.4.27...@thi.ng/dl-asset@1.0.1) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/dl-asset - - - - - -## [0.4.27](https://github.com/thi-ng/umbrella/compare/@thi.ng/dl-asset@0.4.26...@thi.ng/dl-asset@0.4.27) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/dl-asset - - - - - -## [0.4.26](https://github.com/thi-ng/umbrella/compare/@thi.ng/dl-asset@0.4.25...@thi.ng/dl-asset@0.4.26) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/dl-asset - - - - - -## [0.4.25](https://github.com/thi-ng/umbrella/compare/@thi.ng/dl-asset@0.4.24...@thi.ng/dl-asset@0.4.25) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/dl-asset - - - - - # [0.4.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/dl-asset@0.3.14...@thi.ng/dl-asset@0.4.0) (2020-07-08) diff --git a/packages/dlogic/CHANGELOG.md b/packages/dlogic/CHANGELOG.md index c8ddc7056c..aab39f5142 100644 --- a/packages/dlogic/CHANGELOG.md +++ b/packages/dlogic/CHANGELOG.md @@ -3,46 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.0.48](https://github.com/thi-ng/umbrella/compare/@thi.ng/dlogic@1.0.47...@thi.ng/dlogic@1.0.48) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/dlogic - - - - - -## [1.0.47](https://github.com/thi-ng/umbrella/compare/@thi.ng/dlogic@1.0.46...@thi.ng/dlogic@1.0.47) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/dlogic - - - - - -## [1.0.46](https://github.com/thi-ng/umbrella/compare/@thi.ng/dlogic@1.0.45...@thi.ng/dlogic@1.0.46) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/dlogic - - - - - -## [1.0.45](https://github.com/thi-ng/umbrella/compare/@thi.ng/dlogic@1.0.44...@thi.ng/dlogic@1.0.45) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/dlogic - - - - - -## [1.0.44](https://github.com/thi-ng/umbrella/compare/@thi.ng/dlogic@1.0.43...@thi.ng/dlogic@1.0.44) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/dlogic - - - - - # [1.0.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/dlogic@0.1.2...@thi.ng/dlogic@1.0.0) (2019-01-21) ### Build System diff --git a/packages/dot/CHANGELOG.md b/packages/dot/CHANGELOG.md index d786da65fc..d1337f491f 100644 --- a/packages/dot/CHANGELOG.md +++ b/packages/dot/CHANGELOG.md @@ -3,54 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.2.37](https://github.com/thi-ng/umbrella/compare/@thi.ng/dot@1.2.36...@thi.ng/dot@1.2.37) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/dot - - - - - -## [1.2.36](https://github.com/thi-ng/umbrella/compare/@thi.ng/dot@1.2.35...@thi.ng/dot@1.2.36) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/dot - - - - - -## [1.2.35](https://github.com/thi-ng/umbrella/compare/@thi.ng/dot@1.2.34...@thi.ng/dot@1.2.35) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/dot - - - - - -## [1.2.34](https://github.com/thi-ng/umbrella/compare/@thi.ng/dot@1.2.33...@thi.ng/dot@1.2.34) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/dot - - - - - -## [1.2.33](https://github.com/thi-ng/umbrella/compare/@thi.ng/dot@1.2.32...@thi.ng/dot@1.2.33) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/dot - - - - - -## [1.2.32](https://github.com/thi-ng/umbrella/compare/@thi.ng/dot@1.2.31...@thi.ng/dot@1.2.32) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/dot - - - - - # [1.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/dot@1.1.14...@thi.ng/dot@1.2.0) (2020-04-03) diff --git a/packages/dsp-io-wav/CHANGELOG.md b/packages/dsp-io-wav/CHANGELOG.md index bd08df7ab4..1158321d1a 100644 --- a/packages/dsp-io-wav/CHANGELOG.md +++ b/packages/dsp-io-wav/CHANGELOG.md @@ -3,94 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.0.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/dsp-io-wav@1.0.5...@thi.ng/dsp-io-wav@1.0.6) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/dsp-io-wav - - - - - -## [1.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/dsp-io-wav@1.0.4...@thi.ng/dsp-io-wav@1.0.5) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/dsp-io-wav - - - - - -## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/dsp-io-wav@1.0.3...@thi.ng/dsp-io-wav@1.0.4) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/dsp-io-wav - - - - - -## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/dsp-io-wav@1.0.2...@thi.ng/dsp-io-wav@1.0.3) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/dsp-io-wav - - - - - -## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/dsp-io-wav@1.0.1...@thi.ng/dsp-io-wav@1.0.2) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/dsp-io-wav - - - - - -## [1.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/dsp-io-wav@0.1.58...@thi.ng/dsp-io-wav@1.0.1) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/dsp-io-wav - - - - - -## [0.1.58](https://github.com/thi-ng/umbrella/compare/@thi.ng/dsp-io-wav@0.1.57...@thi.ng/dsp-io-wav@0.1.58) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/dsp-io-wav - - - - - -## [0.1.57](https://github.com/thi-ng/umbrella/compare/@thi.ng/dsp-io-wav@0.1.56...@thi.ng/dsp-io-wav@0.1.57) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/dsp-io-wav - - - - - -## [0.1.56](https://github.com/thi-ng/umbrella/compare/@thi.ng/dsp-io-wav@0.1.55...@thi.ng/dsp-io-wav@0.1.56) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/dsp-io-wav - - - - - -## [0.1.55](https://github.com/thi-ng/umbrella/compare/@thi.ng/dsp-io-wav@0.1.54...@thi.ng/dsp-io-wav@0.1.55) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/dsp-io-wav - - - - - -## [0.1.54](https://github.com/thi-ng/umbrella/compare/@thi.ng/dsp-io-wav@0.1.53...@thi.ng/dsp-io-wav@0.1.54) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/dsp-io-wav - - - - - # 0.1.0 (2020-02-25) diff --git a/packages/dsp/CHANGELOG.md b/packages/dsp/CHANGELOG.md index 7475793128..712a236256 100644 --- a/packages/dsp/CHANGELOG.md +++ b/packages/dsp/CHANGELOG.md @@ -3,94 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [3.0.30](https://github.com/thi-ng/umbrella/compare/@thi.ng/dsp@3.0.29...@thi.ng/dsp@3.0.30) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/dsp - - - - - -## [3.0.29](https://github.com/thi-ng/umbrella/compare/@thi.ng/dsp@3.0.28...@thi.ng/dsp@3.0.29) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/dsp - - - - - -## [3.0.28](https://github.com/thi-ng/umbrella/compare/@thi.ng/dsp@3.0.27...@thi.ng/dsp@3.0.28) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/dsp - - - - - -## [3.0.27](https://github.com/thi-ng/umbrella/compare/@thi.ng/dsp@3.0.26...@thi.ng/dsp@3.0.27) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/dsp - - - - - -## [3.0.26](https://github.com/thi-ng/umbrella/compare/@thi.ng/dsp@3.0.25...@thi.ng/dsp@3.0.26) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/dsp - - - - - -## [3.0.25](https://github.com/thi-ng/umbrella/compare/@thi.ng/dsp@3.0.24...@thi.ng/dsp@3.0.25) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/dsp - - - - - -## [3.0.24](https://github.com/thi-ng/umbrella/compare/@thi.ng/dsp@3.0.23...@thi.ng/dsp@3.0.24) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/dsp - - - - - -## [3.0.23](https://github.com/thi-ng/umbrella/compare/@thi.ng/dsp@3.0.22...@thi.ng/dsp@3.0.23) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/dsp - - - - - -## [3.0.22](https://github.com/thi-ng/umbrella/compare/@thi.ng/dsp@3.0.21...@thi.ng/dsp@3.0.22) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/dsp - - - - - -## [3.0.21](https://github.com/thi-ng/umbrella/compare/@thi.ng/dsp@3.0.20...@thi.ng/dsp@3.0.21) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/dsp - - - - - -## [3.0.20](https://github.com/thi-ng/umbrella/compare/@thi.ng/dsp@3.0.19...@thi.ng/dsp@3.0.20) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/dsp - - - - - # [3.0.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/dsp@2.1.5...@thi.ng/dsp@3.0.0) (2020-12-22) diff --git a/packages/dual-algebra/CHANGELOG.md b/packages/dual-algebra/CHANGELOG.md index f5475b5199..35cf287415 100644 --- a/packages/dual-algebra/CHANGELOG.md +++ b/packages/dual-algebra/CHANGELOG.md @@ -3,54 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [0.1.18](https://github.com/thi-ng/umbrella/compare/@thi.ng/dual-algebra@0.1.17...@thi.ng/dual-algebra@0.1.18) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/dual-algebra - - - - - -## [0.1.17](https://github.com/thi-ng/umbrella/compare/@thi.ng/dual-algebra@0.1.16...@thi.ng/dual-algebra@0.1.17) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/dual-algebra - - - - - -## [0.1.16](https://github.com/thi-ng/umbrella/compare/@thi.ng/dual-algebra@0.1.15...@thi.ng/dual-algebra@0.1.16) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/dual-algebra - - - - - -## [0.1.15](https://github.com/thi-ng/umbrella/compare/@thi.ng/dual-algebra@0.1.14...@thi.ng/dual-algebra@0.1.15) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/dual-algebra - - - - - -## [0.1.14](https://github.com/thi-ng/umbrella/compare/@thi.ng/dual-algebra@0.1.13...@thi.ng/dual-algebra@0.1.14) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/dual-algebra - - - - - -## [0.1.13](https://github.com/thi-ng/umbrella/compare/@thi.ng/dual-algebra@0.1.12...@thi.ng/dual-algebra@0.1.13) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/dual-algebra - - - - - # 0.1.0 (2020-09-13) diff --git a/packages/dynvar/CHANGELOG.md b/packages/dynvar/CHANGELOG.md index 0a55f8a5c2..0849bdf272 100644 --- a/packages/dynvar/CHANGELOG.md +++ b/packages/dynvar/CHANGELOG.md @@ -3,46 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [0.1.40](https://github.com/thi-ng/umbrella/compare/@thi.ng/dynvar@0.1.39...@thi.ng/dynvar@0.1.40) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/dynvar - - - - - -## [0.1.39](https://github.com/thi-ng/umbrella/compare/@thi.ng/dynvar@0.1.38...@thi.ng/dynvar@0.1.39) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/dynvar - - - - - -## [0.1.38](https://github.com/thi-ng/umbrella/compare/@thi.ng/dynvar@0.1.37...@thi.ng/dynvar@0.1.38) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/dynvar - - - - - -## [0.1.37](https://github.com/thi-ng/umbrella/compare/@thi.ng/dynvar@0.1.36...@thi.ng/dynvar@0.1.37) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/dynvar - - - - - -## [0.1.36](https://github.com/thi-ng/umbrella/compare/@thi.ng/dynvar@0.1.35...@thi.ng/dynvar@0.1.36) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/dynvar - - - - - # 0.1.0 (2020-01-24) ### Features diff --git a/packages/ecs/CHANGELOG.md b/packages/ecs/CHANGELOG.md index 023aeed9c4..94bdb07669 100644 --- a/packages/ecs/CHANGELOG.md +++ b/packages/ecs/CHANGELOG.md @@ -3,86 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [0.5.24](https://github.com/thi-ng/umbrella/compare/@thi.ng/ecs@0.5.23...@thi.ng/ecs@0.5.24) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/ecs - - - - - -## [0.5.23](https://github.com/thi-ng/umbrella/compare/@thi.ng/ecs@0.5.22...@thi.ng/ecs@0.5.23) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/ecs - - - - - -## [0.5.22](https://github.com/thi-ng/umbrella/compare/@thi.ng/ecs@0.5.21...@thi.ng/ecs@0.5.22) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/ecs - - - - - -## [0.5.21](https://github.com/thi-ng/umbrella/compare/@thi.ng/ecs@0.5.20...@thi.ng/ecs@0.5.21) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/ecs - - - - - -## [0.5.20](https://github.com/thi-ng/umbrella/compare/@thi.ng/ecs@0.5.19...@thi.ng/ecs@0.5.20) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/ecs - - - - - -## [0.5.19](https://github.com/thi-ng/umbrella/compare/@thi.ng/ecs@0.5.18...@thi.ng/ecs@0.5.19) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/ecs - - - - - -## [0.5.18](https://github.com/thi-ng/umbrella/compare/@thi.ng/ecs@0.5.17...@thi.ng/ecs@0.5.18) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/ecs - - - - - -## [0.5.17](https://github.com/thi-ng/umbrella/compare/@thi.ng/ecs@0.5.16...@thi.ng/ecs@0.5.17) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/ecs - - - - - -## [0.5.16](https://github.com/thi-ng/umbrella/compare/@thi.ng/ecs@0.5.15...@thi.ng/ecs@0.5.16) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/ecs - - - - - -## [0.5.15](https://github.com/thi-ng/umbrella/compare/@thi.ng/ecs@0.5.14...@thi.ng/ecs@0.5.15) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/ecs - - - - - # [0.5.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/ecs@0.4.9...@thi.ng/ecs@0.5.0) (2021-02-20) diff --git a/packages/egf/CHANGELOG.md b/packages/egf/CHANGELOG.md index 9e02144123..6ec42db3ed 100644 --- a/packages/egf/CHANGELOG.md +++ b/packages/egf/CHANGELOG.md @@ -3,86 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [0.4.16](https://github.com/thi-ng/umbrella/compare/@thi.ng/egf@0.4.15...@thi.ng/egf@0.4.16) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/egf - - - - - -## [0.4.15](https://github.com/thi-ng/umbrella/compare/@thi.ng/egf@0.4.14...@thi.ng/egf@0.4.15) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/egf - - - - - -## [0.4.14](https://github.com/thi-ng/umbrella/compare/@thi.ng/egf@0.4.13...@thi.ng/egf@0.4.14) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/egf - - - - - -## [0.4.13](https://github.com/thi-ng/umbrella/compare/@thi.ng/egf@0.4.12...@thi.ng/egf@0.4.13) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/egf - - - - - -## [0.4.12](https://github.com/thi-ng/umbrella/compare/@thi.ng/egf@0.4.11...@thi.ng/egf@0.4.12) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/egf - - - - - -## [0.4.11](https://github.com/thi-ng/umbrella/compare/@thi.ng/egf@0.4.10...@thi.ng/egf@0.4.11) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/egf - - - - - -## [0.4.10](https://github.com/thi-ng/umbrella/compare/@thi.ng/egf@0.4.9...@thi.ng/egf@0.4.10) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/egf - - - - - -## [0.4.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/egf@0.4.8...@thi.ng/egf@0.4.9) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/egf - - - - - -## [0.4.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/egf@0.4.7...@thi.ng/egf@0.4.8) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/egf - - - - - -## [0.4.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/egf@0.4.6...@thi.ng/egf@0.4.7) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/egf - - - - - # [0.4.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/egf@0.3.21...@thi.ng/egf@0.4.0) (2021-03-27) diff --git a/packages/equiv/CHANGELOG.md b/packages/equiv/CHANGELOG.md index 1f1ce9b914..210a2bb6e4 100644 --- a/packages/equiv/CHANGELOG.md +++ b/packages/equiv/CHANGELOG.md @@ -3,38 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.0.45](https://github.com/thi-ng/umbrella/compare/@thi.ng/equiv@1.0.44...@thi.ng/equiv@1.0.45) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/equiv - - - - - -## [1.0.44](https://github.com/thi-ng/umbrella/compare/@thi.ng/equiv@1.0.43...@thi.ng/equiv@1.0.44) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/equiv - - - - - -## [1.0.43](https://github.com/thi-ng/umbrella/compare/@thi.ng/equiv@1.0.42...@thi.ng/equiv@1.0.43) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/equiv - - - - - -## [1.0.42](https://github.com/thi-ng/umbrella/compare/@thi.ng/equiv@1.0.41...@thi.ng/equiv@1.0.42) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/equiv - - - - - # [1.0.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/equiv@0.1.15...@thi.ng/equiv@1.0.0) (2019-01-21) ### Build System diff --git a/packages/errors/CHANGELOG.md b/packages/errors/CHANGELOG.md index 8362f6439d..3bc1732c0d 100644 --- a/packages/errors/CHANGELOG.md +++ b/packages/errors/CHANGELOG.md @@ -3,38 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.3.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/errors@1.3.3...@thi.ng/errors@1.3.4) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/errors - - - - - -## [1.3.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/errors@1.3.2...@thi.ng/errors@1.3.3) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/errors - - - - - -## [1.3.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/errors@1.3.1...@thi.ng/errors@1.3.2) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/errors - - - - - -## [1.3.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/errors@1.3.0...@thi.ng/errors@1.3.1) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/errors - - - - - # [1.3.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/errors@1.2.32...@thi.ng/errors@1.3.0) (2021-03-17) diff --git a/packages/fsm/CHANGELOG.md b/packages/fsm/CHANGELOG.md index cae8bd4deb..785ca9176a 100644 --- a/packages/fsm/CHANGELOG.md +++ b/packages/fsm/CHANGELOG.md @@ -3,86 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [2.4.62](https://github.com/thi-ng/umbrella/compare/@thi.ng/fsm@2.4.61...@thi.ng/fsm@2.4.62) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/fsm - - - - - -## [2.4.61](https://github.com/thi-ng/umbrella/compare/@thi.ng/fsm@2.4.60...@thi.ng/fsm@2.4.61) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/fsm - - - - - -## [2.4.60](https://github.com/thi-ng/umbrella/compare/@thi.ng/fsm@2.4.59...@thi.ng/fsm@2.4.60) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/fsm - - - - - -## [2.4.59](https://github.com/thi-ng/umbrella/compare/@thi.ng/fsm@2.4.58...@thi.ng/fsm@2.4.59) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/fsm - - - - - -## [2.4.58](https://github.com/thi-ng/umbrella/compare/@thi.ng/fsm@2.4.57...@thi.ng/fsm@2.4.58) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/fsm - - - - - -## [2.4.57](https://github.com/thi-ng/umbrella/compare/@thi.ng/fsm@2.4.56...@thi.ng/fsm@2.4.57) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/fsm - - - - - -## [2.4.56](https://github.com/thi-ng/umbrella/compare/@thi.ng/fsm@2.4.55...@thi.ng/fsm@2.4.56) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/fsm - - - - - -## [2.4.55](https://github.com/thi-ng/umbrella/compare/@thi.ng/fsm@2.4.54...@thi.ng/fsm@2.4.55) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/fsm - - - - - -## [2.4.54](https://github.com/thi-ng/umbrella/compare/@thi.ng/fsm@2.4.53...@thi.ng/fsm@2.4.54) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/fsm - - - - - -## [2.4.53](https://github.com/thi-ng/umbrella/compare/@thi.ng/fsm@2.4.52...@thi.ng/fsm@2.4.53) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/fsm - - - - - # [2.4.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/fsm@2.3.7...@thi.ng/fsm@2.4.0) (2020-03-06) diff --git a/packages/fuzzy-viz/CHANGELOG.md b/packages/fuzzy-viz/CHANGELOG.md index d916206629..2cc76ec7b6 100644 --- a/packages/fuzzy-viz/CHANGELOG.md +++ b/packages/fuzzy-viz/CHANGELOG.md @@ -3,110 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.0.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/fuzzy-viz@1.0.6...@thi.ng/fuzzy-viz@1.0.7) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/fuzzy-viz - - - - - -## [1.0.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/fuzzy-viz@1.0.5...@thi.ng/fuzzy-viz@1.0.6) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/fuzzy-viz - - - - - -## [1.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/fuzzy-viz@1.0.4...@thi.ng/fuzzy-viz@1.0.5) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/fuzzy-viz - - - - - -## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/fuzzy-viz@1.0.3...@thi.ng/fuzzy-viz@1.0.4) (2021-08-13) - -**Note:** Version bump only for package @thi.ng/fuzzy-viz - - - - - -## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/fuzzy-viz@1.0.2...@thi.ng/fuzzy-viz@1.0.3) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/fuzzy-viz - - - - - -## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/fuzzy-viz@1.0.1...@thi.ng/fuzzy-viz@1.0.2) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/fuzzy-viz - - - - - -## [1.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/fuzzy-viz@0.1.33...@thi.ng/fuzzy-viz@1.0.1) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/fuzzy-viz - - - - - -## [0.1.33](https://github.com/thi-ng/umbrella/compare/@thi.ng/fuzzy-viz@0.1.32...@thi.ng/fuzzy-viz@0.1.33) (2021-08-07) - -**Note:** Version bump only for package @thi.ng/fuzzy-viz - - - - - -## [0.1.32](https://github.com/thi-ng/umbrella/compare/@thi.ng/fuzzy-viz@0.1.31...@thi.ng/fuzzy-viz@0.1.32) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/fuzzy-viz - - - - - -## [0.1.31](https://github.com/thi-ng/umbrella/compare/@thi.ng/fuzzy-viz@0.1.30...@thi.ng/fuzzy-viz@0.1.31) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/fuzzy-viz - - - - - -## [0.1.30](https://github.com/thi-ng/umbrella/compare/@thi.ng/fuzzy-viz@0.1.29...@thi.ng/fuzzy-viz@0.1.30) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/fuzzy-viz - - - - - -## [0.1.29](https://github.com/thi-ng/umbrella/compare/@thi.ng/fuzzy-viz@0.1.28...@thi.ng/fuzzy-viz@0.1.29) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/fuzzy-viz - - - - - -## [0.1.28](https://github.com/thi-ng/umbrella/compare/@thi.ng/fuzzy-viz@0.1.27...@thi.ng/fuzzy-viz@0.1.28) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/fuzzy-viz - - - - - ## [0.1.17](https://github.com/thi-ng/umbrella/compare/@thi.ng/fuzzy-viz@0.1.16...@thi.ng/fuzzy-viz@0.1.17) (2021-03-24) diff --git a/packages/fuzzy/CHANGELOG.md b/packages/fuzzy/CHANGELOG.md index 760e04c47b..c303ad75b5 100644 --- a/packages/fuzzy/CHANGELOG.md +++ b/packages/fuzzy/CHANGELOG.md @@ -3,54 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/fuzzy@1.0.2...@thi.ng/fuzzy@1.0.3) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/fuzzy - - - - - -## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/fuzzy@1.0.1...@thi.ng/fuzzy@1.0.2) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/fuzzy - - - - - -## [1.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/fuzzy@0.1.14...@thi.ng/fuzzy@1.0.1) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/fuzzy - - - - - -## [0.1.14](https://github.com/thi-ng/umbrella/compare/@thi.ng/fuzzy@0.1.13...@thi.ng/fuzzy@0.1.14) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/fuzzy - - - - - -## [0.1.13](https://github.com/thi-ng/umbrella/compare/@thi.ng/fuzzy@0.1.12...@thi.ng/fuzzy@0.1.13) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/fuzzy - - - - - -## [0.1.12](https://github.com/thi-ng/umbrella/compare/@thi.ng/fuzzy@0.1.11...@thi.ng/fuzzy@0.1.12) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/fuzzy - - - - - # 0.1.0 (2020-12-22) diff --git a/packages/geom-accel/CHANGELOG.md b/packages/geom-accel/CHANGELOG.md index 94f6df5384..6065cba0ab 100644 --- a/packages/geom-accel/CHANGELOG.md +++ b/packages/geom-accel/CHANGELOG.md @@ -3,86 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [2.1.59](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-accel@2.1.58...@thi.ng/geom-accel@2.1.59) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/geom-accel - - - - - -## [2.1.58](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-accel@2.1.57...@thi.ng/geom-accel@2.1.58) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/geom-accel - - - - - -## [2.1.57](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-accel@2.1.56...@thi.ng/geom-accel@2.1.57) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/geom-accel - - - - - -## [2.1.56](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-accel@2.1.55...@thi.ng/geom-accel@2.1.56) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/geom-accel - - - - - -## [2.1.55](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-accel@2.1.54...@thi.ng/geom-accel@2.1.55) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/geom-accel - - - - - -## [2.1.54](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-accel@2.1.53...@thi.ng/geom-accel@2.1.54) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/geom-accel - - - - - -## [2.1.53](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-accel@2.1.52...@thi.ng/geom-accel@2.1.53) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/geom-accel - - - - - -## [2.1.52](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-accel@2.1.51...@thi.ng/geom-accel@2.1.52) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/geom-accel - - - - - -## [2.1.51](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-accel@2.1.50...@thi.ng/geom-accel@2.1.51) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/geom-accel - - - - - -## [2.1.50](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-accel@2.1.49...@thi.ng/geom-accel@2.1.50) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/geom-accel - - - - - ## [2.1.33](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-accel@2.1.32...@thi.ng/geom-accel@2.1.33) (2021-01-21) diff --git a/packages/geom-api/CHANGELOG.md b/packages/geom-api/CHANGELOG.md index f273f2a1fc..a2f7c579c6 100644 --- a/packages/geom-api/CHANGELOG.md +++ b/packages/geom-api/CHANGELOG.md @@ -3,86 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [2.0.30](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-api@2.0.29...@thi.ng/geom-api@2.0.30) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/geom-api - - - - - -## [2.0.29](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-api@2.0.28...@thi.ng/geom-api@2.0.29) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/geom-api - - - - - -## [2.0.28](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-api@2.0.27...@thi.ng/geom-api@2.0.28) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/geom-api - - - - - -## [2.0.27](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-api@2.0.26...@thi.ng/geom-api@2.0.27) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/geom-api - - - - - -## [2.0.26](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-api@2.0.25...@thi.ng/geom-api@2.0.26) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/geom-api - - - - - -## [2.0.25](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-api@2.0.24...@thi.ng/geom-api@2.0.25) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/geom-api - - - - - -## [2.0.24](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-api@2.0.23...@thi.ng/geom-api@2.0.24) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/geom-api - - - - - -## [2.0.23](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-api@2.0.22...@thi.ng/geom-api@2.0.23) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/geom-api - - - - - -## [2.0.22](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-api@2.0.21...@thi.ng/geom-api@2.0.22) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/geom-api - - - - - -## [2.0.21](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-api@2.0.20...@thi.ng/geom-api@2.0.21) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/geom-api - - - - - # [2.0.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-api@1.1.4...@thi.ng/geom-api@2.0.0) (2020-12-22) diff --git a/packages/geom-arc/CHANGELOG.md b/packages/geom-arc/CHANGELOG.md index 8cf319a2d2..39b31f8994 100644 --- a/packages/geom-arc/CHANGELOG.md +++ b/packages/geom-arc/CHANGELOG.md @@ -3,86 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-arc@1.0.3...@thi.ng/geom-arc@1.0.4) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/geom-arc - - - - - -## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-arc@1.0.2...@thi.ng/geom-arc@1.0.3) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/geom-arc - - - - - -## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-arc@1.0.1...@thi.ng/geom-arc@1.0.2) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/geom-arc - - - - - -## [1.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-arc@0.3.44...@thi.ng/geom-arc@1.0.1) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/geom-arc - - - - - -## [0.3.44](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-arc@0.3.43...@thi.ng/geom-arc@0.3.44) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/geom-arc - - - - - -## [0.3.43](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-arc@0.3.42...@thi.ng/geom-arc@0.3.43) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/geom-arc - - - - - -## [0.3.42](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-arc@0.3.41...@thi.ng/geom-arc@0.3.42) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/geom-arc - - - - - -## [0.3.41](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-arc@0.3.40...@thi.ng/geom-arc@0.3.41) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/geom-arc - - - - - -## [0.3.40](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-arc@0.3.39...@thi.ng/geom-arc@0.3.40) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/geom-arc - - - - - -## [0.3.39](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-arc@0.3.38...@thi.ng/geom-arc@0.3.39) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/geom-arc - - - - - # [0.3.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-arc@0.2.32...@thi.ng/geom-arc@0.3.0) (2020-06-20) diff --git a/packages/geom-clip-line/CHANGELOG.md b/packages/geom-clip-line/CHANGELOG.md index 0208c7037d..737326e153 100644 --- a/packages/geom-clip-line/CHANGELOG.md +++ b/packages/geom-clip-line/CHANGELOG.md @@ -3,22 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.2.44](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-clip-line@1.2.43...@thi.ng/geom-clip-line@1.2.44) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/geom-clip-line - - - - - -## [1.2.43](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-clip-line@1.2.42...@thi.ng/geom-clip-line@1.2.43) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/geom-clip-line - - - - - ## [1.2.42](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-clip-line@1.2.41...@thi.ng/geom-clip-line@1.2.42) (2021-08-17) @@ -30,62 +14,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline -## [1.2.41](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-clip-line@1.2.40...@thi.ng/geom-clip-line@1.2.41) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/geom-clip-line - - - - - -## [1.2.40](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-clip-line@1.2.39...@thi.ng/geom-clip-line@1.2.40) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/geom-clip-line - - - - - -## [1.2.39](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-clip-line@1.2.38...@thi.ng/geom-clip-line@1.2.39) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/geom-clip-line - - - - - -## [1.2.38](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-clip-line@1.2.37...@thi.ng/geom-clip-line@1.2.38) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/geom-clip-line - - - - - -## [1.2.37](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-clip-line@1.2.36...@thi.ng/geom-clip-line@1.2.37) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/geom-clip-line - - - - - -## [1.2.36](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-clip-line@1.2.35...@thi.ng/geom-clip-line@1.2.36) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/geom-clip-line - - - - - -## [1.2.35](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-clip-line@1.2.34...@thi.ng/geom-clip-line@1.2.35) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/geom-clip-line - - - - - # [1.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-clip-line@1.1.4...@thi.ng/geom-clip-line@1.2.0) (2020-07-17) diff --git a/packages/geom-clip-poly/CHANGELOG.md b/packages/geom-clip-poly/CHANGELOG.md index 4560ab1c4c..7776b2fd56 100644 --- a/packages/geom-clip-poly/CHANGELOG.md +++ b/packages/geom-clip-poly/CHANGELOG.md @@ -3,86 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.0.69](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-clip-poly@1.0.68...@thi.ng/geom-clip-poly@1.0.69) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/geom-clip-poly - - - - - -## [1.0.68](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-clip-poly@1.0.67...@thi.ng/geom-clip-poly@1.0.68) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/geom-clip-poly - - - - - -## [1.0.67](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-clip-poly@1.0.66...@thi.ng/geom-clip-poly@1.0.67) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/geom-clip-poly - - - - - -## [1.0.66](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-clip-poly@1.0.65...@thi.ng/geom-clip-poly@1.0.66) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/geom-clip-poly - - - - - -## [1.0.65](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-clip-poly@1.0.64...@thi.ng/geom-clip-poly@1.0.65) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/geom-clip-poly - - - - - -## [1.0.64](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-clip-poly@1.0.63...@thi.ng/geom-clip-poly@1.0.64) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/geom-clip-poly - - - - - -## [1.0.63](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-clip-poly@1.0.62...@thi.ng/geom-clip-poly@1.0.63) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/geom-clip-poly - - - - - -## [1.0.62](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-clip-poly@1.0.61...@thi.ng/geom-clip-poly@1.0.62) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/geom-clip-poly - - - - - -## [1.0.61](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-clip-poly@1.0.60...@thi.ng/geom-clip-poly@1.0.61) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/geom-clip-poly - - - - - -## [1.0.60](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-clip-poly@1.0.59...@thi.ng/geom-clip-poly@1.0.60) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/geom-clip-poly - - - - - # 1.0.0 (2020-02-25) diff --git a/packages/geom-closest-point/CHANGELOG.md b/packages/geom-closest-point/CHANGELOG.md index 79fd3e7a30..c966ef7a46 100644 --- a/packages/geom-closest-point/CHANGELOG.md +++ b/packages/geom-closest-point/CHANGELOG.md @@ -3,86 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-closest-point@1.0.3...@thi.ng/geom-closest-point@1.0.4) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/geom-closest-point - - - - - -## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-closest-point@1.0.2...@thi.ng/geom-closest-point@1.0.3) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/geom-closest-point - - - - - -## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-closest-point@1.0.1...@thi.ng/geom-closest-point@1.0.2) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/geom-closest-point - - - - - -## [1.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-closest-point@0.5.31...@thi.ng/geom-closest-point@1.0.1) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/geom-closest-point - - - - - -## [0.5.31](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-closest-point@0.5.30...@thi.ng/geom-closest-point@0.5.31) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/geom-closest-point - - - - - -## [0.5.30](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-closest-point@0.5.29...@thi.ng/geom-closest-point@0.5.30) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/geom-closest-point - - - - - -## [0.5.29](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-closest-point@0.5.28...@thi.ng/geom-closest-point@0.5.29) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/geom-closest-point - - - - - -## [0.5.28](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-closest-point@0.5.27...@thi.ng/geom-closest-point@0.5.28) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/geom-closest-point - - - - - -## [0.5.27](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-closest-point@0.5.26...@thi.ng/geom-closest-point@0.5.27) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/geom-closest-point - - - - - -## [0.5.26](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-closest-point@0.5.25...@thi.ng/geom-closest-point@0.5.26) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/geom-closest-point - - - - - # [0.5.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-closest-point@0.4.0...@thi.ng/geom-closest-point@0.5.0) (2020-09-22) diff --git a/packages/geom-fuzz/CHANGELOG.md b/packages/geom-fuzz/CHANGELOG.md index 544d62c309..d1b9e07d67 100644 --- a/packages/geom-fuzz/CHANGELOG.md +++ b/packages/geom-fuzz/CHANGELOG.md @@ -3,94 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.0.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-fuzz@1.0.5...@thi.ng/geom-fuzz@1.0.6) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/geom-fuzz - - - - - -## [1.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-fuzz@1.0.4...@thi.ng/geom-fuzz@1.0.5) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/geom-fuzz - - - - - -## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-fuzz@1.0.3...@thi.ng/geom-fuzz@1.0.4) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/geom-fuzz - - - - - -## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-fuzz@1.0.2...@thi.ng/geom-fuzz@1.0.3) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/geom-fuzz - - - - - -## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-fuzz@1.0.1...@thi.ng/geom-fuzz@1.0.2) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/geom-fuzz - - - - - -## [1.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-fuzz@0.1.55...@thi.ng/geom-fuzz@1.0.1) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/geom-fuzz - - - - - -## [0.1.55](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-fuzz@0.1.54...@thi.ng/geom-fuzz@0.1.55) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/geom-fuzz - - - - - -## [0.1.54](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-fuzz@0.1.53...@thi.ng/geom-fuzz@0.1.54) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/geom-fuzz - - - - - -## [0.1.53](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-fuzz@0.1.52...@thi.ng/geom-fuzz@0.1.53) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/geom-fuzz - - - - - -## [0.1.52](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-fuzz@0.1.51...@thi.ng/geom-fuzz@0.1.52) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/geom-fuzz - - - - - -## [0.1.51](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-fuzz@0.1.50...@thi.ng/geom-fuzz@0.1.51) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/geom-fuzz - - - - - # 0.1.0 (2020-06-20) diff --git a/packages/geom-hull/CHANGELOG.md b/packages/geom-hull/CHANGELOG.md index 928d2bd0ce..f223e7eebb 100644 --- a/packages/geom-hull/CHANGELOG.md +++ b/packages/geom-hull/CHANGELOG.md @@ -3,86 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-hull@1.0.3...@thi.ng/geom-hull@1.0.4) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/geom-hull - - - - - -## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-hull@1.0.2...@thi.ng/geom-hull@1.0.3) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/geom-hull - - - - - -## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-hull@1.0.1...@thi.ng/geom-hull@1.0.2) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/geom-hull - - - - - -## [1.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-hull@0.0.97...@thi.ng/geom-hull@1.0.1) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/geom-hull - - - - - -## [0.0.97](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-hull@0.0.96...@thi.ng/geom-hull@0.0.97) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/geom-hull - - - - - -## [0.0.96](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-hull@0.0.95...@thi.ng/geom-hull@0.0.96) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/geom-hull - - - - - -## [0.0.95](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-hull@0.0.94...@thi.ng/geom-hull@0.0.95) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/geom-hull - - - - - -## [0.0.94](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-hull@0.0.93...@thi.ng/geom-hull@0.0.94) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/geom-hull - - - - - -## [0.0.93](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-hull@0.0.92...@thi.ng/geom-hull@0.0.93) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/geom-hull - - - - - -## [0.0.92](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-hull@0.0.91...@thi.ng/geom-hull@0.0.92) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/geom-hull - - - - - ## [0.0.61](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-hull@0.0.60...@thi.ng/geom-hull@0.0.61) (2020-08-16) **Note:** Version bump only for package @thi.ng/geom-hull diff --git a/packages/geom-io-obj/CHANGELOG.md b/packages/geom-io-obj/CHANGELOG.md index 957057632c..bd1623f335 100644 --- a/packages/geom-io-obj/CHANGELOG.md +++ b/packages/geom-io-obj/CHANGELOG.md @@ -3,86 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [0.1.59](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-io-obj@0.1.58...@thi.ng/geom-io-obj@0.1.59) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/geom-io-obj - - - - - -## [0.1.58](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-io-obj@0.1.57...@thi.ng/geom-io-obj@0.1.58) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/geom-io-obj - - - - - -## [0.1.57](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-io-obj@0.1.56...@thi.ng/geom-io-obj@0.1.57) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/geom-io-obj - - - - - -## [0.1.56](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-io-obj@0.1.55...@thi.ng/geom-io-obj@0.1.56) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/geom-io-obj - - - - - -## [0.1.55](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-io-obj@0.1.54...@thi.ng/geom-io-obj@0.1.55) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/geom-io-obj - - - - - -## [0.1.54](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-io-obj@0.1.53...@thi.ng/geom-io-obj@0.1.54) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/geom-io-obj - - - - - -## [0.1.53](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-io-obj@0.1.52...@thi.ng/geom-io-obj@0.1.53) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/geom-io-obj - - - - - -## [0.1.52](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-io-obj@0.1.51...@thi.ng/geom-io-obj@0.1.52) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/geom-io-obj - - - - - -## [0.1.51](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-io-obj@0.1.50...@thi.ng/geom-io-obj@0.1.51) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/geom-io-obj - - - - - -## [0.1.50](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-io-obj@0.1.49...@thi.ng/geom-io-obj@0.1.50) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/geom-io-obj - - - - - # 0.1.0 (2020-04-20) diff --git a/packages/geom-isec/CHANGELOG.md b/packages/geom-isec/CHANGELOG.md index 9db87949f8..25c80ef569 100644 --- a/packages/geom-isec/CHANGELOG.md +++ b/packages/geom-isec/CHANGELOG.md @@ -3,86 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-isec@1.0.3...@thi.ng/geom-isec@1.0.4) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/geom-isec - - - - - -## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-isec@1.0.2...@thi.ng/geom-isec@1.0.3) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/geom-isec - - - - - -## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-isec@1.0.1...@thi.ng/geom-isec@1.0.2) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/geom-isec - - - - - -## [1.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-isec@0.7.29...@thi.ng/geom-isec@1.0.1) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/geom-isec - - - - - -## [0.7.29](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-isec@0.7.28...@thi.ng/geom-isec@0.7.29) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/geom-isec - - - - - -## [0.7.28](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-isec@0.7.27...@thi.ng/geom-isec@0.7.28) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/geom-isec - - - - - -## [0.7.27](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-isec@0.7.26...@thi.ng/geom-isec@0.7.27) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/geom-isec - - - - - -## [0.7.26](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-isec@0.7.25...@thi.ng/geom-isec@0.7.26) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/geom-isec - - - - - -## [0.7.25](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-isec@0.7.24...@thi.ng/geom-isec@0.7.25) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/geom-isec - - - - - -## [0.7.24](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-isec@0.7.23...@thi.ng/geom-isec@0.7.24) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/geom-isec - - - - - ## [0.7.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-isec@0.7.3...@thi.ng/geom-isec@0.7.4) (2021-01-02) diff --git a/packages/geom-isoline/CHANGELOG.md b/packages/geom-isoline/CHANGELOG.md index 446b37c7d0..543c13a543 100644 --- a/packages/geom-isoline/CHANGELOG.md +++ b/packages/geom-isoline/CHANGELOG.md @@ -3,30 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.1.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-isoline@1.1.2...@thi.ng/geom-isoline@1.1.3) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/geom-isoline - - - - - -## [1.1.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-isoline@1.1.1...@thi.ng/geom-isoline@1.1.2) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/geom-isoline - - - - - -## [1.1.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-isoline@1.1.0...@thi.ng/geom-isoline@1.1.1) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/geom-isoline - - - - - # [1.1.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-isoline@1.0.1...@thi.ng/geom-isoline@1.1.0) (2021-08-09) @@ -43,62 +19,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline -## [1.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-isoline@0.1.95...@thi.ng/geom-isoline@1.0.1) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/geom-isoline - - - - - -## [0.1.95](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-isoline@0.1.94...@thi.ng/geom-isoline@0.1.95) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/geom-isoline - - - - - -## [0.1.94](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-isoline@0.1.93...@thi.ng/geom-isoline@0.1.94) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/geom-isoline - - - - - -## [0.1.93](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-isoline@0.1.92...@thi.ng/geom-isoline@0.1.93) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/geom-isoline - - - - - -## [0.1.92](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-isoline@0.1.91...@thi.ng/geom-isoline@0.1.92) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/geom-isoline - - - - - -## [0.1.91](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-isoline@0.1.90...@thi.ng/geom-isoline@0.1.91) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/geom-isoline - - - - - -## [0.1.90](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-isoline@0.1.89...@thi.ng/geom-isoline@0.1.90) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/geom-isoline - - - - - ## [0.1.25](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-isoline@0.1.24...@thi.ng/geom-isoline@0.1.25) (2019-08-21) ### Performance Improvements diff --git a/packages/geom-poly-utils/CHANGELOG.md b/packages/geom-poly-utils/CHANGELOG.md index d6e98b0ad8..e8a8563739 100644 --- a/packages/geom-poly-utils/CHANGELOG.md +++ b/packages/geom-poly-utils/CHANGELOG.md @@ -3,86 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-poly-utils@1.0.3...@thi.ng/geom-poly-utils@1.0.4) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/geom-poly-utils - - - - - -## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-poly-utils@1.0.2...@thi.ng/geom-poly-utils@1.0.3) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/geom-poly-utils - - - - - -## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-poly-utils@1.0.1...@thi.ng/geom-poly-utils@1.0.2) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/geom-poly-utils - - - - - -## [1.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-poly-utils@0.3.26...@thi.ng/geom-poly-utils@1.0.1) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/geom-poly-utils - - - - - -## [0.3.26](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-poly-utils@0.3.25...@thi.ng/geom-poly-utils@0.3.26) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/geom-poly-utils - - - - - -## [0.3.25](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-poly-utils@0.3.24...@thi.ng/geom-poly-utils@0.3.25) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/geom-poly-utils - - - - - -## [0.3.24](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-poly-utils@0.3.23...@thi.ng/geom-poly-utils@0.3.24) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/geom-poly-utils - - - - - -## [0.3.23](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-poly-utils@0.3.22...@thi.ng/geom-poly-utils@0.3.23) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/geom-poly-utils - - - - - -## [0.3.22](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-poly-utils@0.3.21...@thi.ng/geom-poly-utils@0.3.22) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/geom-poly-utils - - - - - -## [0.3.21](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-poly-utils@0.3.20...@thi.ng/geom-poly-utils@0.3.21) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/geom-poly-utils - - - - - # [0.3.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-poly-utils@0.2.2...@thi.ng/geom-poly-utils@0.3.0) (2020-12-22) diff --git a/packages/geom-resample/CHANGELOG.md b/packages/geom-resample/CHANGELOG.md index de9ae09f5b..57290c39f8 100644 --- a/packages/geom-resample/CHANGELOG.md +++ b/packages/geom-resample/CHANGELOG.md @@ -3,86 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-resample@1.0.3...@thi.ng/geom-resample@1.0.4) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/geom-resample - - - - - -## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-resample@1.0.2...@thi.ng/geom-resample@1.0.3) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/geom-resample - - - - - -## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-resample@1.0.1...@thi.ng/geom-resample@1.0.2) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/geom-resample - - - - - -## [1.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-resample@0.2.77...@thi.ng/geom-resample@1.0.1) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/geom-resample - - - - - -## [0.2.77](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-resample@0.2.76...@thi.ng/geom-resample@0.2.77) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/geom-resample - - - - - -## [0.2.76](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-resample@0.2.75...@thi.ng/geom-resample@0.2.76) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/geom-resample - - - - - -## [0.2.75](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-resample@0.2.74...@thi.ng/geom-resample@0.2.75) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/geom-resample - - - - - -## [0.2.74](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-resample@0.2.73...@thi.ng/geom-resample@0.2.74) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/geom-resample - - - - - -## [0.2.73](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-resample@0.2.72...@thi.ng/geom-resample@0.2.73) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/geom-resample - - - - - -## [0.2.72](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-resample@0.2.71...@thi.ng/geom-resample@0.2.72) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/geom-resample - - - - - # [0.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-resample@0.1.17...@thi.ng/geom-resample@0.2.0) (2019-07-07) ### Features diff --git a/packages/geom-splines/CHANGELOG.md b/packages/geom-splines/CHANGELOG.md index cf8da11bd5..e85463a01f 100644 --- a/packages/geom-splines/CHANGELOG.md +++ b/packages/geom-splines/CHANGELOG.md @@ -3,86 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-splines@1.0.3...@thi.ng/geom-splines@1.0.4) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/geom-splines - - - - - -## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-splines@1.0.2...@thi.ng/geom-splines@1.0.3) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/geom-splines - - - - - -## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-splines@1.0.1...@thi.ng/geom-splines@1.0.2) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/geom-splines - - - - - -## [1.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-splines@0.5.64...@thi.ng/geom-splines@1.0.1) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/geom-splines - - - - - -## [0.5.64](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-splines@0.5.63...@thi.ng/geom-splines@0.5.64) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/geom-splines - - - - - -## [0.5.63](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-splines@0.5.62...@thi.ng/geom-splines@0.5.63) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/geom-splines - - - - - -## [0.5.62](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-splines@0.5.61...@thi.ng/geom-splines@0.5.62) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/geom-splines - - - - - -## [0.5.61](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-splines@0.5.60...@thi.ng/geom-splines@0.5.61) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/geom-splines - - - - - -## [0.5.60](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-splines@0.5.59...@thi.ng/geom-splines@0.5.60) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/geom-splines - - - - - -## [0.5.59](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-splines@0.5.58...@thi.ng/geom-splines@0.5.59) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/geom-splines - - - - - # [0.5.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-splines@0.4.5...@thi.ng/geom-splines@0.5.0) (2020-02-25) diff --git a/packages/geom-subdiv-curve/CHANGELOG.md b/packages/geom-subdiv-curve/CHANGELOG.md index 25368f2b9a..d776894b65 100644 --- a/packages/geom-subdiv-curve/CHANGELOG.md +++ b/packages/geom-subdiv-curve/CHANGELOG.md @@ -3,86 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-subdiv-curve@1.0.3...@thi.ng/geom-subdiv-curve@1.0.4) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/geom-subdiv-curve - - - - - -## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-subdiv-curve@1.0.2...@thi.ng/geom-subdiv-curve@1.0.3) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/geom-subdiv-curve - - - - - -## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-subdiv-curve@1.0.1...@thi.ng/geom-subdiv-curve@1.0.2) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/geom-subdiv-curve - - - - - -## [1.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-subdiv-curve@0.1.95...@thi.ng/geom-subdiv-curve@1.0.1) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/geom-subdiv-curve - - - - - -## [0.1.95](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-subdiv-curve@0.1.94...@thi.ng/geom-subdiv-curve@0.1.95) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/geom-subdiv-curve - - - - - -## [0.1.94](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-subdiv-curve@0.1.93...@thi.ng/geom-subdiv-curve@0.1.94) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/geom-subdiv-curve - - - - - -## [0.1.93](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-subdiv-curve@0.1.92...@thi.ng/geom-subdiv-curve@0.1.93) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/geom-subdiv-curve - - - - - -## [0.1.92](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-subdiv-curve@0.1.91...@thi.ng/geom-subdiv-curve@0.1.92) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/geom-subdiv-curve - - - - - -## [0.1.91](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-subdiv-curve@0.1.90...@thi.ng/geom-subdiv-curve@0.1.91) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/geom-subdiv-curve - - - - - -## [0.1.90](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-subdiv-curve@0.1.89...@thi.ng/geom-subdiv-curve@0.1.90) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/geom-subdiv-curve - - - - - # 0.1.0 (2019-02-05) ### Features diff --git a/packages/geom-tessellate/CHANGELOG.md b/packages/geom-tessellate/CHANGELOG.md index eab055623f..fbd9865da0 100644 --- a/packages/geom-tessellate/CHANGELOG.md +++ b/packages/geom-tessellate/CHANGELOG.md @@ -3,86 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-tessellate@1.0.3...@thi.ng/geom-tessellate@1.0.4) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/geom-tessellate - - - - - -## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-tessellate@1.0.2...@thi.ng/geom-tessellate@1.0.3) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/geom-tessellate - - - - - -## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-tessellate@1.0.1...@thi.ng/geom-tessellate@1.0.2) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/geom-tessellate - - - - - -## [1.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-tessellate@0.2.78...@thi.ng/geom-tessellate@1.0.1) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/geom-tessellate - - - - - -## [0.2.78](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-tessellate@0.2.77...@thi.ng/geom-tessellate@0.2.78) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/geom-tessellate - - - - - -## [0.2.77](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-tessellate@0.2.76...@thi.ng/geom-tessellate@0.2.77) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/geom-tessellate - - - - - -## [0.2.76](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-tessellate@0.2.75...@thi.ng/geom-tessellate@0.2.76) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/geom-tessellate - - - - - -## [0.2.75](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-tessellate@0.2.74...@thi.ng/geom-tessellate@0.2.75) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/geom-tessellate - - - - - -## [0.2.74](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-tessellate@0.2.73...@thi.ng/geom-tessellate@0.2.74) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/geom-tessellate - - - - - -## [0.2.73](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-tessellate@0.2.72...@thi.ng/geom-tessellate@0.2.73) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/geom-tessellate - - - - - # [0.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-tessellate@0.1.17...@thi.ng/geom-tessellate@0.2.0) (2019-07-07) ### Features diff --git a/packages/geom-voronoi/CHANGELOG.md b/packages/geom-voronoi/CHANGELOG.md index d5d4c7e1ef..5f0f7d0564 100644 --- a/packages/geom-voronoi/CHANGELOG.md +++ b/packages/geom-voronoi/CHANGELOG.md @@ -3,86 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-voronoi@1.0.3...@thi.ng/geom-voronoi@1.0.4) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/geom-voronoi - - - - - -## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-voronoi@1.0.2...@thi.ng/geom-voronoi@1.0.3) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/geom-voronoi - - - - - -## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-voronoi@1.0.1...@thi.ng/geom-voronoi@1.0.2) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/geom-voronoi - - - - - -## [1.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-voronoi@0.2.40...@thi.ng/geom-voronoi@1.0.1) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/geom-voronoi - - - - - -## [0.2.40](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-voronoi@0.2.39...@thi.ng/geom-voronoi@0.2.40) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/geom-voronoi - - - - - -## [0.2.39](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-voronoi@0.2.38...@thi.ng/geom-voronoi@0.2.39) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/geom-voronoi - - - - - -## [0.2.38](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-voronoi@0.2.37...@thi.ng/geom-voronoi@0.2.38) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/geom-voronoi - - - - - -## [0.2.37](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-voronoi@0.2.36...@thi.ng/geom-voronoi@0.2.37) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/geom-voronoi - - - - - -## [0.2.36](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-voronoi@0.2.35...@thi.ng/geom-voronoi@0.2.36) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/geom-voronoi - - - - - -## [0.2.35](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-voronoi@0.2.34...@thi.ng/geom-voronoi@0.2.35) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/geom-voronoi - - - - - ## [0.2.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-voronoi@0.2.1...@thi.ng/geom-voronoi@0.2.2) (2020-07-28) diff --git a/packages/geom/CHANGELOG.md b/packages/geom/CHANGELOG.md index 6a9887bb3a..90eba0ed21 100644 --- a/packages/geom/CHANGELOG.md +++ b/packages/geom/CHANGELOG.md @@ -3,86 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [2.1.27](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom@2.1.26...@thi.ng/geom@2.1.27) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/geom - - - - - -## [2.1.26](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom@2.1.25...@thi.ng/geom@2.1.26) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/geom - - - - - -## [2.1.25](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom@2.1.24...@thi.ng/geom@2.1.25) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/geom - - - - - -## [2.1.24](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom@2.1.23...@thi.ng/geom@2.1.24) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/geom - - - - - -## [2.1.23](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom@2.1.22...@thi.ng/geom@2.1.23) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/geom - - - - - -## [2.1.22](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom@2.1.21...@thi.ng/geom@2.1.22) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/geom - - - - - -## [2.1.21](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom@2.1.20...@thi.ng/geom@2.1.21) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/geom - - - - - -## [2.1.20](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom@2.1.19...@thi.ng/geom@2.1.20) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/geom - - - - - -## [2.1.19](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom@2.1.18...@thi.ng/geom@2.1.19) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/geom - - - - - -## [2.1.18](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom@2.1.17...@thi.ng/geom@2.1.18) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/geom - - - - - # [2.1.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom@2.0.6...@thi.ng/geom@2.1.0) (2021-02-20) diff --git a/packages/gp/CHANGELOG.md b/packages/gp/CHANGELOG.md index 1f7b642074..b9dc2f5239 100644 --- a/packages/gp/CHANGELOG.md +++ b/packages/gp/CHANGELOG.md @@ -3,86 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [0.2.29](https://github.com/thi-ng/umbrella/compare/@thi.ng/gp@0.2.28...@thi.ng/gp@0.2.29) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/gp - - - - - -## [0.2.28](https://github.com/thi-ng/umbrella/compare/@thi.ng/gp@0.2.27...@thi.ng/gp@0.2.28) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/gp - - - - - -## [0.2.27](https://github.com/thi-ng/umbrella/compare/@thi.ng/gp@0.2.26...@thi.ng/gp@0.2.27) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/gp - - - - - -## [0.2.26](https://github.com/thi-ng/umbrella/compare/@thi.ng/gp@0.2.25...@thi.ng/gp@0.2.26) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/gp - - - - - -## [0.2.25](https://github.com/thi-ng/umbrella/compare/@thi.ng/gp@0.2.24...@thi.ng/gp@0.2.25) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/gp - - - - - -## [0.2.24](https://github.com/thi-ng/umbrella/compare/@thi.ng/gp@0.2.23...@thi.ng/gp@0.2.24) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/gp - - - - - -## [0.2.23](https://github.com/thi-ng/umbrella/compare/@thi.ng/gp@0.2.22...@thi.ng/gp@0.2.23) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/gp - - - - - -## [0.2.22](https://github.com/thi-ng/umbrella/compare/@thi.ng/gp@0.2.21...@thi.ng/gp@0.2.22) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/gp - - - - - -## [0.2.21](https://github.com/thi-ng/umbrella/compare/@thi.ng/gp@0.2.20...@thi.ng/gp@0.2.21) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/gp - - - - - -## [0.2.20](https://github.com/thi-ng/umbrella/compare/@thi.ng/gp@0.2.19...@thi.ng/gp@0.2.20) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/gp - - - - - # [0.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/gp@0.1.35...@thi.ng/gp@0.2.0) (2020-12-22) diff --git a/packages/grid-iterators/CHANGELOG.md b/packages/grid-iterators/CHANGELOG.md index eacd06bc2d..fef59af6f4 100644 --- a/packages/grid-iterators/CHANGELOG.md +++ b/packages/grid-iterators/CHANGELOG.md @@ -3,86 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/grid-iterators@1.0.3...@thi.ng/grid-iterators@1.0.4) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/grid-iterators - - - - - -## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/grid-iterators@1.0.2...@thi.ng/grid-iterators@1.0.3) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/grid-iterators - - - - - -## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/grid-iterators@1.0.1...@thi.ng/grid-iterators@1.0.2) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/grid-iterators - - - - - -## [1.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/grid-iterators@0.4.41...@thi.ng/grid-iterators@1.0.1) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/grid-iterators - - - - - -## [0.4.41](https://github.com/thi-ng/umbrella/compare/@thi.ng/grid-iterators@0.4.40...@thi.ng/grid-iterators@0.4.41) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/grid-iterators - - - - - -## [0.4.40](https://github.com/thi-ng/umbrella/compare/@thi.ng/grid-iterators@0.4.39...@thi.ng/grid-iterators@0.4.40) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/grid-iterators - - - - - -## [0.4.39](https://github.com/thi-ng/umbrella/compare/@thi.ng/grid-iterators@0.4.38...@thi.ng/grid-iterators@0.4.39) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/grid-iterators - - - - - -## [0.4.38](https://github.com/thi-ng/umbrella/compare/@thi.ng/grid-iterators@0.4.37...@thi.ng/grid-iterators@0.4.38) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/grid-iterators - - - - - -## [0.4.37](https://github.com/thi-ng/umbrella/compare/@thi.ng/grid-iterators@0.4.36...@thi.ng/grid-iterators@0.4.37) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/grid-iterators - - - - - -## [0.4.36](https://github.com/thi-ng/umbrella/compare/@thi.ng/grid-iterators@0.4.35...@thi.ng/grid-iterators@0.4.36) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/grid-iterators - - - - - ## [0.4.24](https://github.com/thi-ng/umbrella/compare/@thi.ng/grid-iterators@0.4.23...@thi.ng/grid-iterators@0.4.24) (2021-03-03) diff --git a/packages/hdiff/CHANGELOG.md b/packages/hdiff/CHANGELOG.md index 1828e3a78a..ebe6c94e55 100644 --- a/packages/hdiff/CHANGELOG.md +++ b/packages/hdiff/CHANGELOG.md @@ -3,86 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [0.1.52](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdiff@0.1.51...@thi.ng/hdiff@0.1.52) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/hdiff - - - - - -## [0.1.51](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdiff@0.1.50...@thi.ng/hdiff@0.1.51) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/hdiff - - - - - -## [0.1.50](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdiff@0.1.49...@thi.ng/hdiff@0.1.50) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/hdiff - - - - - -## [0.1.49](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdiff@0.1.48...@thi.ng/hdiff@0.1.49) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/hdiff - - - - - -## [0.1.48](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdiff@0.1.47...@thi.ng/hdiff@0.1.48) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/hdiff - - - - - -## [0.1.47](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdiff@0.1.46...@thi.ng/hdiff@0.1.47) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/hdiff - - - - - -## [0.1.46](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdiff@0.1.45...@thi.ng/hdiff@0.1.46) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/hdiff - - - - - -## [0.1.45](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdiff@0.1.44...@thi.ng/hdiff@0.1.45) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/hdiff - - - - - -## [0.1.44](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdiff@0.1.43...@thi.ng/hdiff@0.1.44) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/hdiff - - - - - -## [0.1.43](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdiff@0.1.42...@thi.ng/hdiff@0.1.43) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/hdiff - - - - - # 0.1.0 (2020-06-14) diff --git a/packages/hdom-canvas/CHANGELOG.md b/packages/hdom-canvas/CHANGELOG.md index 5680811692..fa9fb75273 100644 --- a/packages/hdom-canvas/CHANGELOG.md +++ b/packages/hdom-canvas/CHANGELOG.md @@ -3,86 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [3.0.59](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-canvas@3.0.58...@thi.ng/hdom-canvas@3.0.59) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/hdom-canvas - - - - - -## [3.0.58](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-canvas@3.0.57...@thi.ng/hdom-canvas@3.0.58) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/hdom-canvas - - - - - -## [3.0.57](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-canvas@3.0.56...@thi.ng/hdom-canvas@3.0.57) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/hdom-canvas - - - - - -## [3.0.56](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-canvas@3.0.55...@thi.ng/hdom-canvas@3.0.56) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/hdom-canvas - - - - - -## [3.0.55](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-canvas@3.0.54...@thi.ng/hdom-canvas@3.0.55) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/hdom-canvas - - - - - -## [3.0.54](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-canvas@3.0.53...@thi.ng/hdom-canvas@3.0.54) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/hdom-canvas - - - - - -## [3.0.53](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-canvas@3.0.52...@thi.ng/hdom-canvas@3.0.53) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/hdom-canvas - - - - - -## [3.0.52](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-canvas@3.0.51...@thi.ng/hdom-canvas@3.0.52) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/hdom-canvas - - - - - -## [3.0.51](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-canvas@3.0.50...@thi.ng/hdom-canvas@3.0.51) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/hdom-canvas - - - - - -## [3.0.50](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-canvas@3.0.49...@thi.ng/hdom-canvas@3.0.50) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/hdom-canvas - - - - - # [3.0.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-canvas@2.4.26...@thi.ng/hdom-canvas@3.0.0) (2020-06-05) diff --git a/packages/hdom-components/CHANGELOG.md b/packages/hdom-components/CHANGELOG.md index c93cf428c3..c0e5e9270f 100644 --- a/packages/hdom-components/CHANGELOG.md +++ b/packages/hdom-components/CHANGELOG.md @@ -3,86 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [4.0.47](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-components@4.0.46...@thi.ng/hdom-components@4.0.47) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/hdom-components - - - - - -## [4.0.46](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-components@4.0.45...@thi.ng/hdom-components@4.0.46) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/hdom-components - - - - - -## [4.0.45](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-components@4.0.44...@thi.ng/hdom-components@4.0.45) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/hdom-components - - - - - -## [4.0.44](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-components@4.0.43...@thi.ng/hdom-components@4.0.44) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/hdom-components - - - - - -## [4.0.43](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-components@4.0.42...@thi.ng/hdom-components@4.0.43) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/hdom-components - - - - - -## [4.0.42](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-components@4.0.41...@thi.ng/hdom-components@4.0.42) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/hdom-components - - - - - -## [4.0.41](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-components@4.0.40...@thi.ng/hdom-components@4.0.41) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/hdom-components - - - - - -## [4.0.40](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-components@4.0.39...@thi.ng/hdom-components@4.0.40) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/hdom-components - - - - - -## [4.0.39](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-components@4.0.38...@thi.ng/hdom-components@4.0.39) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/hdom-components - - - - - -## [4.0.38](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-components@4.0.37...@thi.ng/hdom-components@4.0.38) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/hdom-components - - - - - # [4.0.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-components@3.2.12...@thi.ng/hdom-components@4.0.0) (2020-06-07) diff --git a/packages/hdom-mock/CHANGELOG.md b/packages/hdom-mock/CHANGELOG.md index 344533270a..1960053efb 100644 --- a/packages/hdom-mock/CHANGELOG.md +++ b/packages/hdom-mock/CHANGELOG.md @@ -3,54 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.1.63](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-mock@1.1.62...@thi.ng/hdom-mock@1.1.63) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/hdom-mock - - - - - -## [1.1.62](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-mock@1.1.61...@thi.ng/hdom-mock@1.1.62) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/hdom-mock - - - - - -## [1.1.61](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-mock@1.1.60...@thi.ng/hdom-mock@1.1.61) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/hdom-mock - - - - - -## [1.1.60](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-mock@1.1.59...@thi.ng/hdom-mock@1.1.60) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/hdom-mock - - - - - -## [1.1.59](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-mock@1.1.58...@thi.ng/hdom-mock@1.1.59) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/hdom-mock - - - - - -## [1.1.58](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-mock@1.1.57...@thi.ng/hdom-mock@1.1.58) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/hdom-mock - - - - - # [1.1.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-mock@1.0.16...@thi.ng/hdom-mock@1.1.0) (2019-07-07) ### Features diff --git a/packages/hdom/CHANGELOG.md b/packages/hdom/CHANGELOG.md index 3677c91754..0d1086e009 100644 --- a/packages/hdom/CHANGELOG.md +++ b/packages/hdom/CHANGELOG.md @@ -3,54 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [8.2.31](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom@8.2.30...@thi.ng/hdom@8.2.31) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/hdom - - - - - -## [8.2.30](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom@8.2.29...@thi.ng/hdom@8.2.30) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/hdom - - - - - -## [8.2.29](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom@8.2.28...@thi.ng/hdom@8.2.29) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/hdom - - - - - -## [8.2.28](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom@8.2.27...@thi.ng/hdom@8.2.28) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/hdom - - - - - -## [8.2.27](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom@8.2.26...@thi.ng/hdom@8.2.27) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/hdom - - - - - -## [8.2.26](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom@8.2.25...@thi.ng/hdom@8.2.26) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/hdom - - - - - # [8.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom@8.1.0...@thi.ng/hdom@8.2.0) (2020-07-02) diff --git a/packages/heaps/CHANGELOG.md b/packages/heaps/CHANGELOG.md index bffb0efb11..a7ebf33039 100644 --- a/packages/heaps/CHANGELOG.md +++ b/packages/heaps/CHANGELOG.md @@ -16,46 +16,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline -## [1.2.43](https://github.com/thi-ng/umbrella/compare/@thi.ng/heaps@1.2.42...@thi.ng/heaps@1.2.43) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/heaps - - - - - -## [1.2.42](https://github.com/thi-ng/umbrella/compare/@thi.ng/heaps@1.2.41...@thi.ng/heaps@1.2.42) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/heaps - - - - - -## [1.2.41](https://github.com/thi-ng/umbrella/compare/@thi.ng/heaps@1.2.40...@thi.ng/heaps@1.2.41) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/heaps - - - - - -## [1.2.40](https://github.com/thi-ng/umbrella/compare/@thi.ng/heaps@1.2.39...@thi.ng/heaps@1.2.40) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/heaps - - - - - -## [1.2.39](https://github.com/thi-ng/umbrella/compare/@thi.ng/heaps@1.2.38...@thi.ng/heaps@1.2.39) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/heaps - - - - - ## [1.2.38](https://github.com/thi-ng/umbrella/compare/@thi.ng/heaps@1.2.37...@thi.ng/heaps@1.2.38) (2021-03-17) diff --git a/packages/hex/CHANGELOG.md b/packages/hex/CHANGELOG.md index 11e6bb8d5e..a37d00553c 100644 --- a/packages/hex/CHANGELOG.md +++ b/packages/hex/CHANGELOG.md @@ -3,54 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/hex@1.0.3...@thi.ng/hex@1.0.4) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/hex - - - - - -## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/hex@1.0.2...@thi.ng/hex@1.0.3) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/hex - - - - - -## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/hex@1.0.1...@thi.ng/hex@1.0.2) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/hex - - - - - -## [1.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/hex@0.2.7...@thi.ng/hex@1.0.1) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/hex - - - - - -## [0.2.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/hex@0.2.6...@thi.ng/hex@0.2.7) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/hex - - - - - -## [0.2.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/hex@0.2.5...@thi.ng/hex@0.2.6) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/hex - - - - - # [0.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/hex@0.1.3...@thi.ng/hex@0.2.0) (2021-02-20) diff --git a/packages/hiccup-canvas/CHANGELOG.md b/packages/hiccup-canvas/CHANGELOG.md index 31da3e2210..9928854589 100644 --- a/packages/hiccup-canvas/CHANGELOG.md +++ b/packages/hiccup-canvas/CHANGELOG.md @@ -3,86 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.2.14](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-canvas@1.2.13...@thi.ng/hiccup-canvas@1.2.14) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/hiccup-canvas - - - - - -## [1.2.13](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-canvas@1.2.12...@thi.ng/hiccup-canvas@1.2.13) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/hiccup-canvas - - - - - -## [1.2.12](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-canvas@1.2.11...@thi.ng/hiccup-canvas@1.2.12) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/hiccup-canvas - - - - - -## [1.2.11](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-canvas@1.2.10...@thi.ng/hiccup-canvas@1.2.11) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/hiccup-canvas - - - - - -## [1.2.10](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-canvas@1.2.9...@thi.ng/hiccup-canvas@1.2.10) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/hiccup-canvas - - - - - -## [1.2.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-canvas@1.2.8...@thi.ng/hiccup-canvas@1.2.9) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/hiccup-canvas - - - - - -## [1.2.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-canvas@1.2.7...@thi.ng/hiccup-canvas@1.2.8) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/hiccup-canvas - - - - - -## [1.2.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-canvas@1.2.6...@thi.ng/hiccup-canvas@1.2.7) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/hiccup-canvas - - - - - -## [1.2.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-canvas@1.2.5...@thi.ng/hiccup-canvas@1.2.6) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/hiccup-canvas - - - - - -## [1.2.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-canvas@1.2.4...@thi.ng/hiccup-canvas@1.2.5) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/hiccup-canvas - - - - - # [1.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-canvas@1.1.34...@thi.ng/hiccup-canvas@1.2.0) (2021-04-03) diff --git a/packages/hiccup-carbon-icons/CHANGELOG.md b/packages/hiccup-carbon-icons/CHANGELOG.md index 7743191597..a19ad7cc74 100644 --- a/packages/hiccup-carbon-icons/CHANGELOG.md +++ b/packages/hiccup-carbon-icons/CHANGELOG.md @@ -3,54 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [2.0.24](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-carbon-icons@2.0.23...@thi.ng/hiccup-carbon-icons@2.0.24) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/hiccup-carbon-icons - - - - - -## [2.0.23](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-carbon-icons@2.0.22...@thi.ng/hiccup-carbon-icons@2.0.23) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/hiccup-carbon-icons - - - - - -## [2.0.22](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-carbon-icons@2.0.21...@thi.ng/hiccup-carbon-icons@2.0.22) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/hiccup-carbon-icons - - - - - -## [2.0.21](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-carbon-icons@2.0.20...@thi.ng/hiccup-carbon-icons@2.0.21) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/hiccup-carbon-icons - - - - - -## [2.0.20](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-carbon-icons@2.0.19...@thi.ng/hiccup-carbon-icons@2.0.20) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/hiccup-carbon-icons - - - - - -## [2.0.19](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-carbon-icons@2.0.18...@thi.ng/hiccup-carbon-icons@2.0.19) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/hiccup-carbon-icons - - - - - ## [2.0.11](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-carbon-icons@2.0.10...@thi.ng/hiccup-carbon-icons@2.0.11) (2021-02-20) diff --git a/packages/hiccup-css/CHANGELOG.md b/packages/hiccup-css/CHANGELOG.md index 7235833db7..da135b5162 100644 --- a/packages/hiccup-css/CHANGELOG.md +++ b/packages/hiccup-css/CHANGELOG.md @@ -3,86 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.1.72](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-css@1.1.71...@thi.ng/hiccup-css@1.1.72) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/hiccup-css - - - - - -## [1.1.71](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-css@1.1.70...@thi.ng/hiccup-css@1.1.71) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/hiccup-css - - - - - -## [1.1.70](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-css@1.1.69...@thi.ng/hiccup-css@1.1.70) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/hiccup-css - - - - - -## [1.1.69](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-css@1.1.68...@thi.ng/hiccup-css@1.1.69) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/hiccup-css - - - - - -## [1.1.68](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-css@1.1.67...@thi.ng/hiccup-css@1.1.68) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/hiccup-css - - - - - -## [1.1.67](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-css@1.1.66...@thi.ng/hiccup-css@1.1.67) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/hiccup-css - - - - - -## [1.1.66](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-css@1.1.65...@thi.ng/hiccup-css@1.1.66) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/hiccup-css - - - - - -## [1.1.65](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-css@1.1.64...@thi.ng/hiccup-css@1.1.65) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/hiccup-css - - - - - -## [1.1.64](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-css@1.1.63...@thi.ng/hiccup-css@1.1.64) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/hiccup-css - - - - - -## [1.1.63](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-css@1.1.62...@thi.ng/hiccup-css@1.1.63) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/hiccup-css - - - - - # [1.1.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-css@1.0.19...@thi.ng/hiccup-css@1.1.0) (2019-07-07) ### Features diff --git a/packages/hiccup-html/CHANGELOG.md b/packages/hiccup-html/CHANGELOG.md index 02c4e763d8..7fe3d8a7c9 100644 --- a/packages/hiccup-html/CHANGELOG.md +++ b/packages/hiccup-html/CHANGELOG.md @@ -14,54 +14,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline -## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-html@1.0.2...@thi.ng/hiccup-html@1.0.3) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/hiccup-html - - - - - -## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-html@1.0.1...@thi.ng/hiccup-html@1.0.2) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/hiccup-html - - - - - -## [1.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-html@0.3.20...@thi.ng/hiccup-html@1.0.1) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/hiccup-html - - - - - -## [0.3.20](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-html@0.3.19...@thi.ng/hiccup-html@0.3.20) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/hiccup-html - - - - - -## [0.3.19](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-html@0.3.18...@thi.ng/hiccup-html@0.3.19) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/hiccup-html - - - - - -## [0.3.18](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-html@0.3.17...@thi.ng/hiccup-html@0.3.18) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/hiccup-html - - - - - # [0.3.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-html@0.2.0...@thi.ng/hiccup-html@0.3.0) (2020-07-09) diff --git a/packages/hiccup-markdown/CHANGELOG.md b/packages/hiccup-markdown/CHANGELOG.md index f7292131ac..97ee61850e 100644 --- a/packages/hiccup-markdown/CHANGELOG.md +++ b/packages/hiccup-markdown/CHANGELOG.md @@ -3,102 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.3.32](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-markdown@1.3.31...@thi.ng/hiccup-markdown@1.3.32) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/hiccup-markdown - - - - - -## [1.3.31](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-markdown@1.3.30...@thi.ng/hiccup-markdown@1.3.31) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/hiccup-markdown - - - - - -## [1.3.30](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-markdown@1.3.29...@thi.ng/hiccup-markdown@1.3.30) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/hiccup-markdown - - - - - -## [1.3.29](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-markdown@1.3.28...@thi.ng/hiccup-markdown@1.3.29) (2021-08-13) - -**Note:** Version bump only for package @thi.ng/hiccup-markdown - - - - - -## [1.3.28](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-markdown@1.3.27...@thi.ng/hiccup-markdown@1.3.28) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/hiccup-markdown - - - - - -## [1.3.27](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-markdown@1.3.26...@thi.ng/hiccup-markdown@1.3.27) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/hiccup-markdown - - - - - -## [1.3.26](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-markdown@1.3.25...@thi.ng/hiccup-markdown@1.3.26) (2021-08-07) - -**Note:** Version bump only for package @thi.ng/hiccup-markdown - - - - - -## [1.3.25](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-markdown@1.3.24...@thi.ng/hiccup-markdown@1.3.25) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/hiccup-markdown - - - - - -## [1.3.24](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-markdown@1.3.23...@thi.ng/hiccup-markdown@1.3.24) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/hiccup-markdown - - - - - -## [1.3.23](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-markdown@1.3.22...@thi.ng/hiccup-markdown@1.3.23) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/hiccup-markdown - - - - - -## [1.3.22](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-markdown@1.3.21...@thi.ng/hiccup-markdown@1.3.22) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/hiccup-markdown - - - - - -## [1.3.21](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-markdown@1.3.20...@thi.ng/hiccup-markdown@1.3.21) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/hiccup-markdown - - - - - # [1.3.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-markdown@1.2.44...@thi.ng/hiccup-markdown@1.3.0) (2021-01-22) diff --git a/packages/hiccup-svg/CHANGELOG.md b/packages/hiccup-svg/CHANGELOG.md index 8d9dfda12c..0f159f2b07 100644 --- a/packages/hiccup-svg/CHANGELOG.md +++ b/packages/hiccup-svg/CHANGELOG.md @@ -3,86 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [3.7.33](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-svg@3.7.32...@thi.ng/hiccup-svg@3.7.33) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/hiccup-svg - - - - - -## [3.7.32](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-svg@3.7.31...@thi.ng/hiccup-svg@3.7.32) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/hiccup-svg - - - - - -## [3.7.31](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-svg@3.7.30...@thi.ng/hiccup-svg@3.7.31) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/hiccup-svg - - - - - -## [3.7.30](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-svg@3.7.29...@thi.ng/hiccup-svg@3.7.30) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/hiccup-svg - - - - - -## [3.7.29](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-svg@3.7.28...@thi.ng/hiccup-svg@3.7.29) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/hiccup-svg - - - - - -## [3.7.28](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-svg@3.7.27...@thi.ng/hiccup-svg@3.7.28) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/hiccup-svg - - - - - -## [3.7.27](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-svg@3.7.26...@thi.ng/hiccup-svg@3.7.27) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/hiccup-svg - - - - - -## [3.7.26](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-svg@3.7.25...@thi.ng/hiccup-svg@3.7.26) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/hiccup-svg - - - - - -## [3.7.25](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-svg@3.7.24...@thi.ng/hiccup-svg@3.7.25) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/hiccup-svg - - - - - -## [3.7.24](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-svg@3.7.23...@thi.ng/hiccup-svg@3.7.24) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/hiccup-svg - - - - - # [3.7.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-svg@3.6.6...@thi.ng/hiccup-svg@3.7.0) (2021-01-02) diff --git a/packages/hiccup/CHANGELOG.md b/packages/hiccup/CHANGELOG.md index 18c542be2b..79337e8fde 100644 --- a/packages/hiccup/CHANGELOG.md +++ b/packages/hiccup/CHANGELOG.md @@ -3,54 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [3.6.21](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup@3.6.20...@thi.ng/hiccup@3.6.21) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/hiccup - - - - - -## [3.6.20](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup@3.6.19...@thi.ng/hiccup@3.6.20) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/hiccup - - - - - -## [3.6.19](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup@3.6.18...@thi.ng/hiccup@3.6.19) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/hiccup - - - - - -## [3.6.18](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup@3.6.17...@thi.ng/hiccup@3.6.18) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/hiccup - - - - - -## [3.6.17](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup@3.6.16...@thi.ng/hiccup@3.6.17) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/hiccup - - - - - -## [3.6.16](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup@3.6.15...@thi.ng/hiccup@3.6.16) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/hiccup - - - - - # [3.6.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup@3.5.8...@thi.ng/hiccup@3.6.0) (2020-09-13) diff --git a/packages/idgen/CHANGELOG.md b/packages/idgen/CHANGELOG.md index 9a1e00ea07..540a484c91 100644 --- a/packages/idgen/CHANGELOG.md +++ b/packages/idgen/CHANGELOG.md @@ -3,62 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/idgen@1.0.3...@thi.ng/idgen@1.0.4) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/idgen - - - - - -## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/idgen@1.0.2...@thi.ng/idgen@1.0.3) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/idgen - - - - - -## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/idgen@1.0.1...@thi.ng/idgen@1.0.2) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/idgen - - - - - -## [1.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/idgen@0.2.38...@thi.ng/idgen@1.0.1) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/idgen - - - - - -## [0.2.38](https://github.com/thi-ng/umbrella/compare/@thi.ng/idgen@0.2.37...@thi.ng/idgen@0.2.38) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/idgen - - - - - -## [0.2.37](https://github.com/thi-ng/umbrella/compare/@thi.ng/idgen@0.2.36...@thi.ng/idgen@0.2.37) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/idgen - - - - - -## [0.2.36](https://github.com/thi-ng/umbrella/compare/@thi.ng/idgen@0.2.35...@thi.ng/idgen@0.2.36) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/idgen - - - - - ## [0.2.29](https://github.com/thi-ng/umbrella/compare/@thi.ng/idgen@0.2.28...@thi.ng/idgen@0.2.29) (2021-01-02) diff --git a/packages/iges/CHANGELOG.md b/packages/iges/CHANGELOG.md index 801aa21dc7..e8c3a801bb 100644 --- a/packages/iges/CHANGELOG.md +++ b/packages/iges/CHANGELOG.md @@ -3,86 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.1.86](https://github.com/thi-ng/umbrella/compare/@thi.ng/iges@1.1.85...@thi.ng/iges@1.1.86) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/iges - - - - - -## [1.1.85](https://github.com/thi-ng/umbrella/compare/@thi.ng/iges@1.1.84...@thi.ng/iges@1.1.85) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/iges - - - - - -## [1.1.84](https://github.com/thi-ng/umbrella/compare/@thi.ng/iges@1.1.83...@thi.ng/iges@1.1.84) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/iges - - - - - -## [1.1.83](https://github.com/thi-ng/umbrella/compare/@thi.ng/iges@1.1.82...@thi.ng/iges@1.1.83) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/iges - - - - - -## [1.1.82](https://github.com/thi-ng/umbrella/compare/@thi.ng/iges@1.1.81...@thi.ng/iges@1.1.82) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/iges - - - - - -## [1.1.81](https://github.com/thi-ng/umbrella/compare/@thi.ng/iges@1.1.80...@thi.ng/iges@1.1.81) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/iges - - - - - -## [1.1.80](https://github.com/thi-ng/umbrella/compare/@thi.ng/iges@1.1.79...@thi.ng/iges@1.1.80) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/iges - - - - - -## [1.1.79](https://github.com/thi-ng/umbrella/compare/@thi.ng/iges@1.1.78...@thi.ng/iges@1.1.79) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/iges - - - - - -## [1.1.78](https://github.com/thi-ng/umbrella/compare/@thi.ng/iges@1.1.77...@thi.ng/iges@1.1.78) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/iges - - - - - -## [1.1.77](https://github.com/thi-ng/umbrella/compare/@thi.ng/iges@1.1.76...@thi.ng/iges@1.1.77) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/iges - - - - - # [1.1.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/iges@1.0.15...@thi.ng/iges@1.1.0) (2019-04-15) ### Features diff --git a/packages/imgui/CHANGELOG.md b/packages/imgui/CHANGELOG.md index a767e7e0d4..975cd88699 100644 --- a/packages/imgui/CHANGELOG.md +++ b/packages/imgui/CHANGELOG.md @@ -3,22 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/imgui@1.0.4...@thi.ng/imgui@1.0.5) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/imgui - - - - - -## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/imgui@1.0.3...@thi.ng/imgui@1.0.4) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/imgui - - - - - ## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/imgui@1.0.2...@thi.ng/imgui@1.0.3) (2021-08-18) @@ -30,70 +14,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline -## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/imgui@1.0.1...@thi.ng/imgui@1.0.2) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/imgui - - - - - -## [1.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/imgui@0.2.76...@thi.ng/imgui@1.0.1) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/imgui - - - - - -## [0.2.76](https://github.com/thi-ng/umbrella/compare/@thi.ng/imgui@0.2.75...@thi.ng/imgui@0.2.76) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/imgui - - - - - -## [0.2.75](https://github.com/thi-ng/umbrella/compare/@thi.ng/imgui@0.2.74...@thi.ng/imgui@0.2.75) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/imgui - - - - - -## [0.2.74](https://github.com/thi-ng/umbrella/compare/@thi.ng/imgui@0.2.73...@thi.ng/imgui@0.2.74) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/imgui - - - - - -## [0.2.73](https://github.com/thi-ng/umbrella/compare/@thi.ng/imgui@0.2.72...@thi.ng/imgui@0.2.73) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/imgui - - - - - -## [0.2.72](https://github.com/thi-ng/umbrella/compare/@thi.ng/imgui@0.2.71...@thi.ng/imgui@0.2.72) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/imgui - - - - - -## [0.2.71](https://github.com/thi-ng/umbrella/compare/@thi.ng/imgui@0.2.70...@thi.ng/imgui@0.2.71) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/imgui - - - - - ## [0.2.42](https://github.com/thi-ng/umbrella/compare/@thi.ng/imgui@0.2.41...@thi.ng/imgui@0.2.42) (2020-11-24) diff --git a/packages/interceptors/CHANGELOG.md b/packages/interceptors/CHANGELOG.md index dd216498e9..f127eeef0f 100644 --- a/packages/interceptors/CHANGELOG.md +++ b/packages/interceptors/CHANGELOG.md @@ -3,54 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [2.2.52](https://github.com/thi-ng/umbrella/compare/@thi.ng/interceptors@2.2.51...@thi.ng/interceptors@2.2.52) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/interceptors - - - - - -## [2.2.51](https://github.com/thi-ng/umbrella/compare/@thi.ng/interceptors@2.2.50...@thi.ng/interceptors@2.2.51) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/interceptors - - - - - -## [2.2.50](https://github.com/thi-ng/umbrella/compare/@thi.ng/interceptors@2.2.49...@thi.ng/interceptors@2.2.50) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/interceptors - - - - - -## [2.2.49](https://github.com/thi-ng/umbrella/compare/@thi.ng/interceptors@2.2.48...@thi.ng/interceptors@2.2.49) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/interceptors - - - - - -## [2.2.48](https://github.com/thi-ng/umbrella/compare/@thi.ng/interceptors@2.2.47...@thi.ng/interceptors@2.2.48) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/interceptors - - - - - -## [2.2.47](https://github.com/thi-ng/umbrella/compare/@thi.ng/interceptors@2.2.46...@thi.ng/interceptors@2.2.47) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/interceptors - - - - - # [2.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/interceptors@2.1.3...@thi.ng/interceptors@2.2.0) (2019-08-21) ### Features diff --git a/packages/intervals/CHANGELOG.md b/packages/intervals/CHANGELOG.md index 304c0dbe80..b072d73380 100644 --- a/packages/intervals/CHANGELOG.md +++ b/packages/intervals/CHANGELOG.md @@ -3,46 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [3.0.12](https://github.com/thi-ng/umbrella/compare/@thi.ng/intervals@3.0.11...@thi.ng/intervals@3.0.12) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/intervals - - - - - -## [3.0.11](https://github.com/thi-ng/umbrella/compare/@thi.ng/intervals@3.0.10...@thi.ng/intervals@3.0.11) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/intervals - - - - - -## [3.0.10](https://github.com/thi-ng/umbrella/compare/@thi.ng/intervals@3.0.9...@thi.ng/intervals@3.0.10) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/intervals - - - - - -## [3.0.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/intervals@3.0.8...@thi.ng/intervals@3.0.9) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/intervals - - - - - -## [3.0.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/intervals@3.0.7...@thi.ng/intervals@3.0.8) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/intervals - - - - - # [3.0.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/intervals@2.1.5...@thi.ng/intervals@3.0.0) (2021-02-20) diff --git a/packages/iterators/CHANGELOG.md b/packages/iterators/CHANGELOG.md index 66fee697bd..5f13fc94f7 100644 --- a/packages/iterators/CHANGELOG.md +++ b/packages/iterators/CHANGELOG.md @@ -3,86 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [5.1.73](https://github.com/thi-ng/umbrella/compare/@thi.ng/iterators@5.1.72...@thi.ng/iterators@5.1.73) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/iterators - - - - - -## [5.1.72](https://github.com/thi-ng/umbrella/compare/@thi.ng/iterators@5.1.71...@thi.ng/iterators@5.1.72) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/iterators - - - - - -## [5.1.71](https://github.com/thi-ng/umbrella/compare/@thi.ng/iterators@5.1.70...@thi.ng/iterators@5.1.71) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/iterators - - - - - -## [5.1.70](https://github.com/thi-ng/umbrella/compare/@thi.ng/iterators@5.1.69...@thi.ng/iterators@5.1.70) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/iterators - - - - - -## [5.1.69](https://github.com/thi-ng/umbrella/compare/@thi.ng/iterators@5.1.68...@thi.ng/iterators@5.1.69) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/iterators - - - - - -## [5.1.68](https://github.com/thi-ng/umbrella/compare/@thi.ng/iterators@5.1.67...@thi.ng/iterators@5.1.68) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/iterators - - - - - -## [5.1.67](https://github.com/thi-ng/umbrella/compare/@thi.ng/iterators@5.1.66...@thi.ng/iterators@5.1.67) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/iterators - - - - - -## [5.1.66](https://github.com/thi-ng/umbrella/compare/@thi.ng/iterators@5.1.65...@thi.ng/iterators@5.1.66) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/iterators - - - - - -## [5.1.65](https://github.com/thi-ng/umbrella/compare/@thi.ng/iterators@5.1.64...@thi.ng/iterators@5.1.65) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/iterators - - - - - -## [5.1.64](https://github.com/thi-ng/umbrella/compare/@thi.ng/iterators@5.1.63...@thi.ng/iterators@5.1.64) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/iterators - - - - - # [5.1.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/iterators@5.0.19...@thi.ng/iterators@5.1.0) (2019-07-07) ### Bug Fixes diff --git a/packages/k-means/CHANGELOG.md b/packages/k-means/CHANGELOG.md index 1247340558..085b4835f9 100644 --- a/packages/k-means/CHANGELOG.md +++ b/packages/k-means/CHANGELOG.md @@ -3,46 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [0.3.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/k-means@0.3.4...@thi.ng/k-means@0.3.5) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/k-means - - - - - -## [0.3.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/k-means@0.3.3...@thi.ng/k-means@0.3.4) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/k-means - - - - - -## [0.3.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/k-means@0.3.2...@thi.ng/k-means@0.3.3) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/k-means - - - - - -## [0.3.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/k-means@0.3.1...@thi.ng/k-means@0.3.2) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/k-means - - - - - -## [0.3.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/k-means@0.3.0...@thi.ng/k-means@0.3.1) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/k-means - - - - - # [0.3.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/k-means@0.2.5...@thi.ng/k-means@0.3.0) (2021-08-04) @@ -65,30 +25,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline -## [0.2.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/k-means@0.2.3...@thi.ng/k-means@0.2.4) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/k-means - - - - - -## [0.2.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/k-means@0.2.2...@thi.ng/k-means@0.2.3) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/k-means - - - - - -## [0.2.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/k-means@0.2.1...@thi.ng/k-means@0.2.2) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/k-means - - - - - # [0.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/k-means@0.1.0...@thi.ng/k-means@0.2.0) (2021-04-20) diff --git a/packages/ksuid/CHANGELOG.md b/packages/ksuid/CHANGELOG.md index 4e85ecca2c..e7f625106a 100644 --- a/packages/ksuid/CHANGELOG.md +++ b/packages/ksuid/CHANGELOG.md @@ -3,38 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/ksuid@1.0.3...@thi.ng/ksuid@1.0.4) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/ksuid - - - - - -## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/ksuid@1.0.2...@thi.ng/ksuid@1.0.3) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/ksuid - - - - - -## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/ksuid@1.0.1...@thi.ng/ksuid@1.0.2) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/ksuid - - - - - -## [1.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/ksuid@0.4.0...@thi.ng/ksuid@1.0.1) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/ksuid - - - - - # [0.4.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/ksuid@0.3.0...@thi.ng/ksuid@0.4.0) (2021-08-07) @@ -71,38 +39,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline -## [0.2.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/ksuid@0.2.5...@thi.ng/ksuid@0.2.6) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/ksuid - - - - - -## [0.2.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/ksuid@0.2.4...@thi.ng/ksuid@0.2.5) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/ksuid - - - - - -## [0.2.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/ksuid@0.2.3...@thi.ng/ksuid@0.2.4) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/ksuid - - - - - -## [0.2.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/ksuid@0.2.2...@thi.ng/ksuid@0.2.3) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/ksuid - - - - - # [0.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/ksuid@0.1.10...@thi.ng/ksuid@0.2.0) (2021-03-28) diff --git a/packages/layout/CHANGELOG.md b/packages/layout/CHANGELOG.md index 947ac586f6..2f4f24c514 100644 --- a/packages/layout/CHANGELOG.md +++ b/packages/layout/CHANGELOG.md @@ -3,38 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/layout@0.1.38...@thi.ng/layout@1.0.1) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/layout - - - - - -## [0.1.38](https://github.com/thi-ng/umbrella/compare/@thi.ng/layout@0.1.37...@thi.ng/layout@0.1.38) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/layout - - - - - -## [0.1.37](https://github.com/thi-ng/umbrella/compare/@thi.ng/layout@0.1.36...@thi.ng/layout@0.1.37) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/layout - - - - - -## [0.1.36](https://github.com/thi-ng/umbrella/compare/@thi.ng/layout@0.1.35...@thi.ng/layout@0.1.36) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/layout - - - - - # 0.1.0 (2020-02-25) diff --git a/packages/leb128/CHANGELOG.md b/packages/leb128/CHANGELOG.md index 8ad3b240ee..d45d5109d1 100644 --- a/packages/leb128/CHANGELOG.md +++ b/packages/leb128/CHANGELOG.md @@ -3,86 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.0.67](https://github.com/thi-ng/umbrella/compare/@thi.ng/leb128@1.0.66...@thi.ng/leb128@1.0.67) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/leb128 - - - - - -## [1.0.66](https://github.com/thi-ng/umbrella/compare/@thi.ng/leb128@1.0.65...@thi.ng/leb128@1.0.66) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/leb128 - - - - - -## [1.0.65](https://github.com/thi-ng/umbrella/compare/@thi.ng/leb128@1.0.64...@thi.ng/leb128@1.0.65) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/leb128 - - - - - -## [1.0.64](https://github.com/thi-ng/umbrella/compare/@thi.ng/leb128@1.0.63...@thi.ng/leb128@1.0.64) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/leb128 - - - - - -## [1.0.63](https://github.com/thi-ng/umbrella/compare/@thi.ng/leb128@1.0.62...@thi.ng/leb128@1.0.63) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/leb128 - - - - - -## [1.0.62](https://github.com/thi-ng/umbrella/compare/@thi.ng/leb128@1.0.61...@thi.ng/leb128@1.0.62) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/leb128 - - - - - -## [1.0.61](https://github.com/thi-ng/umbrella/compare/@thi.ng/leb128@1.0.60...@thi.ng/leb128@1.0.61) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/leb128 - - - - - -## [1.0.60](https://github.com/thi-ng/umbrella/compare/@thi.ng/leb128@1.0.59...@thi.ng/leb128@1.0.60) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/leb128 - - - - - -## [1.0.59](https://github.com/thi-ng/umbrella/compare/@thi.ng/leb128@1.0.58...@thi.ng/leb128@1.0.59) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/leb128 - - - - - -## [1.0.58](https://github.com/thi-ng/umbrella/compare/@thi.ng/leb128@1.0.57...@thi.ng/leb128@1.0.58) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/leb128 - - - - - ## [1.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/leb128@1.0.0...@thi.ng/leb128@1.0.1) (2019-11-30) ### Bug Fixes diff --git a/packages/lowdisc/CHANGELOG.md b/packages/lowdisc/CHANGELOG.md index 9bb7f749dc..fcff35b381 100644 --- a/packages/lowdisc/CHANGELOG.md +++ b/packages/lowdisc/CHANGELOG.md @@ -3,46 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [0.1.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/lowdisc@0.1.5...@thi.ng/lowdisc@0.1.6) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/lowdisc - - - - - -## [0.1.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/lowdisc@0.1.4...@thi.ng/lowdisc@0.1.5) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/lowdisc - - - - - -## [0.1.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/lowdisc@0.1.3...@thi.ng/lowdisc@0.1.4) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/lowdisc - - - - - -## [0.1.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/lowdisc@0.1.2...@thi.ng/lowdisc@0.1.3) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/lowdisc - - - - - -## [0.1.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/lowdisc@0.1.1...@thi.ng/lowdisc@0.1.2) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/lowdisc - - - - - # 0.1.0 (2021-04-19) diff --git a/packages/lsys/CHANGELOG.md b/packages/lsys/CHANGELOG.md index d399d16927..24fc99ee9b 100644 --- a/packages/lsys/CHANGELOG.md +++ b/packages/lsys/CHANGELOG.md @@ -3,86 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/lsys@1.0.3...@thi.ng/lsys@1.0.4) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/lsys - - - - - -## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/lsys@1.0.2...@thi.ng/lsys@1.0.3) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/lsys - - - - - -## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/lsys@1.0.1...@thi.ng/lsys@1.0.2) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/lsys - - - - - -## [1.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/lsys@0.2.92...@thi.ng/lsys@1.0.1) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/lsys - - - - - -## [0.2.92](https://github.com/thi-ng/umbrella/compare/@thi.ng/lsys@0.2.91...@thi.ng/lsys@0.2.92) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/lsys - - - - - -## [0.2.91](https://github.com/thi-ng/umbrella/compare/@thi.ng/lsys@0.2.90...@thi.ng/lsys@0.2.91) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/lsys - - - - - -## [0.2.90](https://github.com/thi-ng/umbrella/compare/@thi.ng/lsys@0.2.89...@thi.ng/lsys@0.2.90) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/lsys - - - - - -## [0.2.89](https://github.com/thi-ng/umbrella/compare/@thi.ng/lsys@0.2.88...@thi.ng/lsys@0.2.89) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/lsys - - - - - -## [0.2.88](https://github.com/thi-ng/umbrella/compare/@thi.ng/lsys@0.2.87...@thi.ng/lsys@0.2.88) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/lsys - - - - - -## [0.2.87](https://github.com/thi-ng/umbrella/compare/@thi.ng/lsys@0.2.86...@thi.ng/lsys@0.2.87) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/lsys - - - - - # [0.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/lsys@0.1.0...@thi.ng/lsys@0.2.0) (2019-02-26) ### Features diff --git a/packages/malloc/CHANGELOG.md b/packages/malloc/CHANGELOG.md index eea8c72de4..f16871f846 100644 --- a/packages/malloc/CHANGELOG.md +++ b/packages/malloc/CHANGELOG.md @@ -3,54 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [5.0.13](https://github.com/thi-ng/umbrella/compare/@thi.ng/malloc@5.0.12...@thi.ng/malloc@5.0.13) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/malloc - - - - - -## [5.0.12](https://github.com/thi-ng/umbrella/compare/@thi.ng/malloc@5.0.11...@thi.ng/malloc@5.0.12) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/malloc - - - - - -## [5.0.11](https://github.com/thi-ng/umbrella/compare/@thi.ng/malloc@5.0.10...@thi.ng/malloc@5.0.11) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/malloc - - - - - -## [5.0.10](https://github.com/thi-ng/umbrella/compare/@thi.ng/malloc@5.0.9...@thi.ng/malloc@5.0.10) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/malloc - - - - - -## [5.0.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/malloc@5.0.8...@thi.ng/malloc@5.0.9) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/malloc - - - - - -## [5.0.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/malloc@5.0.7...@thi.ng/malloc@5.0.8) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/malloc - - - - - # [5.0.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/malloc@4.2.6...@thi.ng/malloc@5.0.0) (2021-02-20) diff --git a/packages/math/CHANGELOG.md b/packages/math/CHANGELOG.md index 176cb41baa..a707f80202 100644 --- a/packages/math/CHANGELOG.md +++ b/packages/math/CHANGELOG.md @@ -3,46 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [4.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/math@4.0.4...@thi.ng/math@4.0.5) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/math - - - - - -## [4.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/math@4.0.3...@thi.ng/math@4.0.4) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/math - - - - - -## [4.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/math@4.0.2...@thi.ng/math@4.0.3) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/math - - - - - -## [4.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/math@4.0.1...@thi.ng/math@4.0.2) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/math - - - - - -## [4.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/math@4.0.0...@thi.ng/math@4.0.1) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/math - - - - - # [4.0.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/math@3.4.0...@thi.ng/math@4.0.0) (2021-04-24) diff --git a/packages/matrices/CHANGELOG.md b/packages/matrices/CHANGELOG.md index 04c0eb0018..baaa3f2b6d 100644 --- a/packages/matrices/CHANGELOG.md +++ b/packages/matrices/CHANGELOG.md @@ -3,86 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/matrices@1.0.3...@thi.ng/matrices@1.0.4) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/matrices - - - - - -## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/matrices@1.0.2...@thi.ng/matrices@1.0.3) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/matrices - - - - - -## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/matrices@1.0.1...@thi.ng/matrices@1.0.2) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/matrices - - - - - -## [1.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/matrices@0.6.64...@thi.ng/matrices@1.0.1) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/matrices - - - - - -## [0.6.64](https://github.com/thi-ng/umbrella/compare/@thi.ng/matrices@0.6.63...@thi.ng/matrices@0.6.64) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/matrices - - - - - -## [0.6.63](https://github.com/thi-ng/umbrella/compare/@thi.ng/matrices@0.6.62...@thi.ng/matrices@0.6.63) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/matrices - - - - - -## [0.6.62](https://github.com/thi-ng/umbrella/compare/@thi.ng/matrices@0.6.61...@thi.ng/matrices@0.6.62) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/matrices - - - - - -## [0.6.61](https://github.com/thi-ng/umbrella/compare/@thi.ng/matrices@0.6.60...@thi.ng/matrices@0.6.61) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/matrices - - - - - -## [0.6.60](https://github.com/thi-ng/umbrella/compare/@thi.ng/matrices@0.6.59...@thi.ng/matrices@0.6.60) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/matrices - - - - - -## [0.6.59](https://github.com/thi-ng/umbrella/compare/@thi.ng/matrices@0.6.58...@thi.ng/matrices@0.6.59) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/matrices - - - - - # [0.6.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/matrices@0.5.12...@thi.ng/matrices@0.6.0) (2020-02-25) diff --git a/packages/memoize/CHANGELOG.md b/packages/memoize/CHANGELOG.md index 5937fbeae1..470e4b086a 100644 --- a/packages/memoize/CHANGELOG.md +++ b/packages/memoize/CHANGELOG.md @@ -3,54 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [2.1.20](https://github.com/thi-ng/umbrella/compare/@thi.ng/memoize@2.1.19...@thi.ng/memoize@2.1.20) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/memoize - - - - - -## [2.1.19](https://github.com/thi-ng/umbrella/compare/@thi.ng/memoize@2.1.18...@thi.ng/memoize@2.1.19) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/memoize - - - - - -## [2.1.18](https://github.com/thi-ng/umbrella/compare/@thi.ng/memoize@2.1.17...@thi.ng/memoize@2.1.18) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/memoize - - - - - -## [2.1.17](https://github.com/thi-ng/umbrella/compare/@thi.ng/memoize@2.1.16...@thi.ng/memoize@2.1.17) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/memoize - - - - - -## [2.1.16](https://github.com/thi-ng/umbrella/compare/@thi.ng/memoize@2.1.15...@thi.ng/memoize@2.1.16) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/memoize - - - - - -## [2.1.15](https://github.com/thi-ng/umbrella/compare/@thi.ng/memoize@2.1.14...@thi.ng/memoize@2.1.15) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/memoize - - - - - # [2.1.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/memoize@2.0.19...@thi.ng/memoize@2.1.0) (2020-08-20) diff --git a/packages/mime/CHANGELOG.md b/packages/mime/CHANGELOG.md index 8c5a3c3697..4c58a96513 100644 --- a/packages/mime/CHANGELOG.md +++ b/packages/mime/CHANGELOG.md @@ -3,62 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/mime@1.0.3...@thi.ng/mime@1.0.4) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/mime - - - - - -## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/mime@1.0.2...@thi.ng/mime@1.0.3) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/mime - - - - - -## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/mime@1.0.1...@thi.ng/mime@1.0.2) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/mime - - - - - -## [1.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/mime@0.5.4...@thi.ng/mime@1.0.1) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/mime - - - - - -## [0.5.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/mime@0.5.3...@thi.ng/mime@0.5.4) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/mime - - - - - -## [0.5.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/mime@0.5.2...@thi.ng/mime@0.5.3) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/mime - - - - - -## [0.5.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/mime@0.5.1...@thi.ng/mime@0.5.2) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/mime - - - - - ## [0.5.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/mime@0.5.0...@thi.ng/mime@0.5.1) (2021-04-10) diff --git a/packages/morton/CHANGELOG.md b/packages/morton/CHANGELOG.md index dcf2d9bd8a..55b8b27857 100644 --- a/packages/morton/CHANGELOG.md +++ b/packages/morton/CHANGELOG.md @@ -3,54 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [2.0.46](https://github.com/thi-ng/umbrella/compare/@thi.ng/morton@2.0.45...@thi.ng/morton@2.0.46) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/morton - - - - - -## [2.0.45](https://github.com/thi-ng/umbrella/compare/@thi.ng/morton@2.0.44...@thi.ng/morton@2.0.45) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/morton - - - - - -## [2.0.44](https://github.com/thi-ng/umbrella/compare/@thi.ng/morton@2.0.43...@thi.ng/morton@2.0.44) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/morton - - - - - -## [2.0.43](https://github.com/thi-ng/umbrella/compare/@thi.ng/morton@2.0.42...@thi.ng/morton@2.0.43) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/morton - - - - - -## [2.0.42](https://github.com/thi-ng/umbrella/compare/@thi.ng/morton@2.0.41...@thi.ng/morton@2.0.42) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/morton - - - - - -## [2.0.41](https://github.com/thi-ng/umbrella/compare/@thi.ng/morton@2.0.40...@thi.ng/morton@2.0.41) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/morton - - - - - ## [2.0.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/morton@2.0.8...@thi.ng/morton@2.0.9) (2020-04-11) diff --git a/packages/oquery/CHANGELOG.md b/packages/oquery/CHANGELOG.md index a76183b74a..3e306eb8da 100644 --- a/packages/oquery/CHANGELOG.md +++ b/packages/oquery/CHANGELOG.md @@ -3,62 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/oquery@1.0.3...@thi.ng/oquery@1.0.4) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/oquery - - - - - -## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/oquery@1.0.2...@thi.ng/oquery@1.0.3) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/oquery - - - - - -## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/oquery@1.0.1...@thi.ng/oquery@1.0.2) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/oquery - - - - - -## [1.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/oquery@0.3.4...@thi.ng/oquery@1.0.1) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/oquery - - - - - -## [0.3.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/oquery@0.3.3...@thi.ng/oquery@0.3.4) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/oquery - - - - - -## [0.3.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/oquery@0.3.2...@thi.ng/oquery@0.3.3) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/oquery - - - - - -## [0.3.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/oquery@0.3.1...@thi.ng/oquery@0.3.2) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/oquery - - - - - # [0.3.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/oquery@0.2.11...@thi.ng/oquery@0.3.0) (2021-03-22) diff --git a/packages/parse/CHANGELOG.md b/packages/parse/CHANGELOG.md index 1ca3a7c336..c9224d39f0 100644 --- a/packages/parse/CHANGELOG.md +++ b/packages/parse/CHANGELOG.md @@ -3,62 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/parse@1.0.3...@thi.ng/parse@1.0.4) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/parse - - - - - -## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/parse@1.0.2...@thi.ng/parse@1.0.3) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/parse - - - - - -## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/parse@1.0.1...@thi.ng/parse@1.0.2) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/parse - - - - - -## [1.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/parse@0.9.25...@thi.ng/parse@1.0.1) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/parse - - - - - -## [0.9.25](https://github.com/thi-ng/umbrella/compare/@thi.ng/parse@0.9.24...@thi.ng/parse@0.9.25) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/parse - - - - - -## [0.9.24](https://github.com/thi-ng/umbrella/compare/@thi.ng/parse@0.9.23...@thi.ng/parse@0.9.24) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/parse - - - - - -## [0.9.23](https://github.com/thi-ng/umbrella/compare/@thi.ng/parse@0.9.22...@thi.ng/parse@0.9.23) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/parse - - - - - # [0.9.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/parse@0.8.2...@thi.ng/parse@0.9.0) (2020-08-17) diff --git a/packages/paths/CHANGELOG.md b/packages/paths/CHANGELOG.md index 5f7a334d3b..8781b499e2 100644 --- a/packages/paths/CHANGELOG.md +++ b/packages/paths/CHANGELOG.md @@ -3,54 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [4.2.13](https://github.com/thi-ng/umbrella/compare/@thi.ng/paths@4.2.12...@thi.ng/paths@4.2.13) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/paths - - - - - -## [4.2.12](https://github.com/thi-ng/umbrella/compare/@thi.ng/paths@4.2.11...@thi.ng/paths@4.2.12) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/paths - - - - - -## [4.2.11](https://github.com/thi-ng/umbrella/compare/@thi.ng/paths@4.2.10...@thi.ng/paths@4.2.11) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/paths - - - - - -## [4.2.10](https://github.com/thi-ng/umbrella/compare/@thi.ng/paths@4.2.9...@thi.ng/paths@4.2.10) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/paths - - - - - -## [4.2.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/paths@4.2.8...@thi.ng/paths@4.2.9) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/paths - - - - - -## [4.2.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/paths@4.2.7...@thi.ng/paths@4.2.8) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/paths - - - - - # [4.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/paths@4.1.13...@thi.ng/paths@4.2.0) (2021-02-20) diff --git a/packages/pixel-io-netpbm/CHANGELOG.md b/packages/pixel-io-netpbm/CHANGELOG.md index ebcd47abb2..64edd0c8af 100644 --- a/packages/pixel-io-netpbm/CHANGELOG.md +++ b/packages/pixel-io-netpbm/CHANGELOG.md @@ -3,94 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.0.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/pixel-io-netpbm@1.0.5...@thi.ng/pixel-io-netpbm@1.0.6) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/pixel-io-netpbm - - - - - -## [1.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/pixel-io-netpbm@1.0.4...@thi.ng/pixel-io-netpbm@1.0.5) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/pixel-io-netpbm - - - - - -## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/pixel-io-netpbm@1.0.3...@thi.ng/pixel-io-netpbm@1.0.4) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/pixel-io-netpbm - - - - - -## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/pixel-io-netpbm@1.0.2...@thi.ng/pixel-io-netpbm@1.0.3) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/pixel-io-netpbm - - - - - -## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/pixel-io-netpbm@1.0.1...@thi.ng/pixel-io-netpbm@1.0.2) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/pixel-io-netpbm - - - - - -## [1.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/pixel-io-netpbm@0.1.16...@thi.ng/pixel-io-netpbm@1.0.1) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/pixel-io-netpbm - - - - - -## [0.1.16](https://github.com/thi-ng/umbrella/compare/@thi.ng/pixel-io-netpbm@0.1.15...@thi.ng/pixel-io-netpbm@0.1.16) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/pixel-io-netpbm - - - - - -## [0.1.15](https://github.com/thi-ng/umbrella/compare/@thi.ng/pixel-io-netpbm@0.1.14...@thi.ng/pixel-io-netpbm@0.1.15) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/pixel-io-netpbm - - - - - -## [0.1.14](https://github.com/thi-ng/umbrella/compare/@thi.ng/pixel-io-netpbm@0.1.13...@thi.ng/pixel-io-netpbm@0.1.14) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/pixel-io-netpbm - - - - - -## [0.1.13](https://github.com/thi-ng/umbrella/compare/@thi.ng/pixel-io-netpbm@0.1.12...@thi.ng/pixel-io-netpbm@0.1.13) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/pixel-io-netpbm - - - - - -## [0.1.12](https://github.com/thi-ng/umbrella/compare/@thi.ng/pixel-io-netpbm@0.1.11...@thi.ng/pixel-io-netpbm@0.1.12) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/pixel-io-netpbm - - - - - # 0.1.0 (2021-02-20) diff --git a/packages/pixel/CHANGELOG.md b/packages/pixel/CHANGELOG.md index ef065b756f..a9d0957dcc 100644 --- a/packages/pixel/CHANGELOG.md +++ b/packages/pixel/CHANGELOG.md @@ -3,54 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/pixel@1.0.3...@thi.ng/pixel@1.0.4) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/pixel - - - - - -## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/pixel@1.0.2...@thi.ng/pixel@1.0.3) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/pixel - - - - - -## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/pixel@1.0.1...@thi.ng/pixel@1.0.2) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/pixel - - - - - -## [1.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/pixel@0.11.2...@thi.ng/pixel@1.0.1) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/pixel - - - - - -## [0.11.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/pixel@0.11.1...@thi.ng/pixel@0.11.2) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/pixel - - - - - -## [0.11.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/pixel@0.11.0...@thi.ng/pixel@0.11.1) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/pixel - - - - - # [0.11.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/pixel@0.10.5...@thi.ng/pixel@0.11.0) (2021-08-04) @@ -62,30 +14,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline -## [0.10.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/pixel@0.10.4...@thi.ng/pixel@0.10.5) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/pixel - - - - - -## [0.10.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/pixel@0.10.3...@thi.ng/pixel@0.10.4) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/pixel - - - - - -## [0.10.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/pixel@0.10.2...@thi.ng/pixel@0.10.3) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/pixel - - - - - # [0.10.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/pixel@0.9.0...@thi.ng/pixel@0.10.0) (2021-04-19) diff --git a/packages/pointfree-lang/CHANGELOG.md b/packages/pointfree-lang/CHANGELOG.md index f26d292367..cb63b54da2 100644 --- a/packages/pointfree-lang/CHANGELOG.md +++ b/packages/pointfree-lang/CHANGELOG.md @@ -3,78 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.4.37](https://github.com/thi-ng/umbrella/compare/@thi.ng/pointfree-lang@1.4.36...@thi.ng/pointfree-lang@1.4.37) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/pointfree-lang - - - - - -## [1.4.36](https://github.com/thi-ng/umbrella/compare/@thi.ng/pointfree-lang@1.4.35...@thi.ng/pointfree-lang@1.4.36) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/pointfree-lang - - - - - -## [1.4.35](https://github.com/thi-ng/umbrella/compare/@thi.ng/pointfree-lang@1.4.34...@thi.ng/pointfree-lang@1.4.35) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/pointfree-lang - - - - - -## [1.4.34](https://github.com/thi-ng/umbrella/compare/@thi.ng/pointfree-lang@1.4.33...@thi.ng/pointfree-lang@1.4.34) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/pointfree-lang - - - - - -## [1.4.33](https://github.com/thi-ng/umbrella/compare/@thi.ng/pointfree-lang@1.4.32...@thi.ng/pointfree-lang@1.4.33) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/pointfree-lang - - - - - -## [1.4.32](https://github.com/thi-ng/umbrella/compare/@thi.ng/pointfree-lang@1.4.31...@thi.ng/pointfree-lang@1.4.32) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/pointfree-lang - - - - - -## [1.4.31](https://github.com/thi-ng/umbrella/compare/@thi.ng/pointfree-lang@1.4.30...@thi.ng/pointfree-lang@1.4.31) (2021-07-29) - -**Note:** Version bump only for package @thi.ng/pointfree-lang - - - - - -## [1.4.30](https://github.com/thi-ng/umbrella/compare/@thi.ng/pointfree-lang@1.4.29...@thi.ng/pointfree-lang@1.4.30) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/pointfree-lang - - - - - -## [1.4.29](https://github.com/thi-ng/umbrella/compare/@thi.ng/pointfree-lang@1.4.28...@thi.ng/pointfree-lang@1.4.29) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/pointfree-lang - - - - - # [1.4.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/pointfree-lang@1.3.0...@thi.ng/pointfree-lang@1.4.0) (2020-04-27) diff --git a/packages/pointfree/CHANGELOG.md b/packages/pointfree/CHANGELOG.md index e6d449319f..fd1c800859 100644 --- a/packages/pointfree/CHANGELOG.md +++ b/packages/pointfree/CHANGELOG.md @@ -3,54 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [2.0.35](https://github.com/thi-ng/umbrella/compare/@thi.ng/pointfree@2.0.34...@thi.ng/pointfree@2.0.35) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/pointfree - - - - - -## [2.0.34](https://github.com/thi-ng/umbrella/compare/@thi.ng/pointfree@2.0.33...@thi.ng/pointfree@2.0.34) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/pointfree - - - - - -## [2.0.33](https://github.com/thi-ng/umbrella/compare/@thi.ng/pointfree@2.0.32...@thi.ng/pointfree@2.0.33) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/pointfree - - - - - -## [2.0.32](https://github.com/thi-ng/umbrella/compare/@thi.ng/pointfree@2.0.31...@thi.ng/pointfree@2.0.32) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/pointfree - - - - - -## [2.0.31](https://github.com/thi-ng/umbrella/compare/@thi.ng/pointfree@2.0.30...@thi.ng/pointfree@2.0.31) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/pointfree - - - - - -## [2.0.30](https://github.com/thi-ng/umbrella/compare/@thi.ng/pointfree@2.0.29...@thi.ng/pointfree@2.0.30) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/pointfree - - - - - # [2.0.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/pointfree@1.3.3...@thi.ng/pointfree@2.0.0) (2020-04-16) diff --git a/packages/poisson/CHANGELOG.md b/packages/poisson/CHANGELOG.md index 9429651a0e..92405c60e4 100644 --- a/packages/poisson/CHANGELOG.md +++ b/packages/poisson/CHANGELOG.md @@ -3,86 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.1.52](https://github.com/thi-ng/umbrella/compare/@thi.ng/poisson@1.1.51...@thi.ng/poisson@1.1.52) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/poisson - - - - - -## [1.1.51](https://github.com/thi-ng/umbrella/compare/@thi.ng/poisson@1.1.50...@thi.ng/poisson@1.1.51) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/poisson - - - - - -## [1.1.50](https://github.com/thi-ng/umbrella/compare/@thi.ng/poisson@1.1.49...@thi.ng/poisson@1.1.50) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/poisson - - - - - -## [1.1.49](https://github.com/thi-ng/umbrella/compare/@thi.ng/poisson@1.1.48...@thi.ng/poisson@1.1.49) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/poisson - - - - - -## [1.1.48](https://github.com/thi-ng/umbrella/compare/@thi.ng/poisson@1.1.47...@thi.ng/poisson@1.1.48) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/poisson - - - - - -## [1.1.47](https://github.com/thi-ng/umbrella/compare/@thi.ng/poisson@1.1.46...@thi.ng/poisson@1.1.47) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/poisson - - - - - -## [1.1.46](https://github.com/thi-ng/umbrella/compare/@thi.ng/poisson@1.1.45...@thi.ng/poisson@1.1.46) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/poisson - - - - - -## [1.1.45](https://github.com/thi-ng/umbrella/compare/@thi.ng/poisson@1.1.44...@thi.ng/poisson@1.1.45) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/poisson - - - - - -## [1.1.44](https://github.com/thi-ng/umbrella/compare/@thi.ng/poisson@1.1.43...@thi.ng/poisson@1.1.44) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/poisson - - - - - -## [1.1.43](https://github.com/thi-ng/umbrella/compare/@thi.ng/poisson@1.1.42...@thi.ng/poisson@1.1.43) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/poisson - - - - - # [1.1.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/poisson@1.0.17...@thi.ng/poisson@1.1.0) (2020-05-29) diff --git a/packages/porter-duff/CHANGELOG.md b/packages/porter-duff/CHANGELOG.md index 07ef2372af..c81030290e 100644 --- a/packages/porter-duff/CHANGELOG.md +++ b/packages/porter-duff/CHANGELOG.md @@ -3,46 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/porter-duff@0.1.50...@thi.ng/porter-duff@1.0.1) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/porter-duff - - - - - -## [0.1.50](https://github.com/thi-ng/umbrella/compare/@thi.ng/porter-duff@0.1.49...@thi.ng/porter-duff@0.1.50) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/porter-duff - - - - - -## [0.1.49](https://github.com/thi-ng/umbrella/compare/@thi.ng/porter-duff@0.1.48...@thi.ng/porter-duff@0.1.49) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/porter-duff - - - - - -## [0.1.48](https://github.com/thi-ng/umbrella/compare/@thi.ng/porter-duff@0.1.47...@thi.ng/porter-duff@0.1.48) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/porter-duff - - - - - -## [0.1.47](https://github.com/thi-ng/umbrella/compare/@thi.ng/porter-duff@0.1.46...@thi.ng/porter-duff@0.1.47) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/porter-duff - - - - - # 0.1.0 (2019-07-31) ### Bug Fixes diff --git a/packages/prefixes/CHANGELOG.md b/packages/prefixes/CHANGELOG.md index 2d4ee5cfc9..6663144b60 100644 --- a/packages/prefixes/CHANGELOG.md +++ b/packages/prefixes/CHANGELOG.md @@ -3,46 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/prefixes@1.0.1...@thi.ng/prefixes@1.0.2) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/prefixes - - - - - -## [1.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/prefixes@0.1.20...@thi.ng/prefixes@1.0.1) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/prefixes - - - - - -## [0.1.20](https://github.com/thi-ng/umbrella/compare/@thi.ng/prefixes@0.1.19...@thi.ng/prefixes@0.1.20) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/prefixes - - - - - -## [0.1.19](https://github.com/thi-ng/umbrella/compare/@thi.ng/prefixes@0.1.18...@thi.ng/prefixes@0.1.19) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/prefixes - - - - - -## [0.1.18](https://github.com/thi-ng/umbrella/compare/@thi.ng/prefixes@0.1.17...@thi.ng/prefixes@0.1.18) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/prefixes - - - - - # 0.1.0 (2020-07-02) diff --git a/packages/quad-edge/CHANGELOG.md b/packages/quad-edge/CHANGELOG.md index 2b5532f45e..86b193a40a 100644 --- a/packages/quad-edge/CHANGELOG.md +++ b/packages/quad-edge/CHANGELOG.md @@ -3,38 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/quad-edge@0.2.37...@thi.ng/quad-edge@1.0.1) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/quad-edge - - - - - -## [0.2.37](https://github.com/thi-ng/umbrella/compare/@thi.ng/quad-edge@0.2.36...@thi.ng/quad-edge@0.2.37) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/quad-edge - - - - - -## [0.2.36](https://github.com/thi-ng/umbrella/compare/@thi.ng/quad-edge@0.2.35...@thi.ng/quad-edge@0.2.36) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/quad-edge - - - - - -## [0.2.35](https://github.com/thi-ng/umbrella/compare/@thi.ng/quad-edge@0.2.34...@thi.ng/quad-edge@0.2.35) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/quad-edge - - - - - # [0.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/quad-edge@0.1.4...@thi.ng/quad-edge@0.2.0) (2019-07-07) ### Features diff --git a/packages/ramp/CHANGELOG.md b/packages/ramp/CHANGELOG.md index e02682fb77..20c329a0af 100644 --- a/packages/ramp/CHANGELOG.md +++ b/packages/ramp/CHANGELOG.md @@ -3,94 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.0.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/ramp@1.0.5...@thi.ng/ramp@1.0.6) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/ramp - - - - - -## [1.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/ramp@1.0.4...@thi.ng/ramp@1.0.5) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/ramp - - - - - -## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/ramp@1.0.3...@thi.ng/ramp@1.0.4) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/ramp - - - - - -## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/ramp@1.0.2...@thi.ng/ramp@1.0.3) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/ramp - - - - - -## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/ramp@1.0.1...@thi.ng/ramp@1.0.2) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/ramp - - - - - -## [1.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/ramp@0.1.65...@thi.ng/ramp@1.0.1) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/ramp - - - - - -## [0.1.65](https://github.com/thi-ng/umbrella/compare/@thi.ng/ramp@0.1.64...@thi.ng/ramp@0.1.65) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/ramp - - - - - -## [0.1.64](https://github.com/thi-ng/umbrella/compare/@thi.ng/ramp@0.1.63...@thi.ng/ramp@0.1.64) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/ramp - - - - - -## [0.1.63](https://github.com/thi-ng/umbrella/compare/@thi.ng/ramp@0.1.62...@thi.ng/ramp@0.1.63) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/ramp - - - - - -## [0.1.62](https://github.com/thi-ng/umbrella/compare/@thi.ng/ramp@0.1.61...@thi.ng/ramp@0.1.62) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/ramp - - - - - -## [0.1.61](https://github.com/thi-ng/umbrella/compare/@thi.ng/ramp@0.1.60...@thi.ng/ramp@0.1.61) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/ramp - - - - - # 0.1.0 (2020-01-24) ### Features diff --git a/packages/random/CHANGELOG.md b/packages/random/CHANGELOG.md index 96cf7f1c75..c39ec8bdc4 100644 --- a/packages/random/CHANGELOG.md +++ b/packages/random/CHANGELOG.md @@ -3,30 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [2.4.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/random@2.4.6...@thi.ng/random@2.4.7) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/random - - - - - -## [2.4.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/random@2.4.5...@thi.ng/random@2.4.6) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/random - - - - - -## [2.4.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/random@2.4.4...@thi.ng/random@2.4.5) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/random - - - - - ## [2.4.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/random@2.4.3...@thi.ng/random@2.4.4) (2021-08-04) @@ -38,30 +14,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline -## [2.4.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/random@2.4.2...@thi.ng/random@2.4.3) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/random - - - - - -## [2.4.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/random@2.4.1...@thi.ng/random@2.4.2) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/random - - - - - -## [2.4.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/random@2.4.0...@thi.ng/random@2.4.1) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/random - - - - - # [2.4.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/random@2.3.7...@thi.ng/random@2.4.0) (2021-04-19) diff --git a/packages/range-coder/CHANGELOG.md b/packages/range-coder/CHANGELOG.md index 4de5e28fea..ee07517104 100644 --- a/packages/range-coder/CHANGELOG.md +++ b/packages/range-coder/CHANGELOG.md @@ -3,86 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.0.92](https://github.com/thi-ng/umbrella/compare/@thi.ng/range-coder@1.0.91...@thi.ng/range-coder@1.0.92) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/range-coder - - - - - -## [1.0.91](https://github.com/thi-ng/umbrella/compare/@thi.ng/range-coder@1.0.90...@thi.ng/range-coder@1.0.91) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/range-coder - - - - - -## [1.0.90](https://github.com/thi-ng/umbrella/compare/@thi.ng/range-coder@1.0.89...@thi.ng/range-coder@1.0.90) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/range-coder - - - - - -## [1.0.89](https://github.com/thi-ng/umbrella/compare/@thi.ng/range-coder@1.0.88...@thi.ng/range-coder@1.0.89) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/range-coder - - - - - -## [1.0.88](https://github.com/thi-ng/umbrella/compare/@thi.ng/range-coder@1.0.87...@thi.ng/range-coder@1.0.88) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/range-coder - - - - - -## [1.0.87](https://github.com/thi-ng/umbrella/compare/@thi.ng/range-coder@1.0.86...@thi.ng/range-coder@1.0.87) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/range-coder - - - - - -## [1.0.86](https://github.com/thi-ng/umbrella/compare/@thi.ng/range-coder@1.0.85...@thi.ng/range-coder@1.0.86) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/range-coder - - - - - -## [1.0.85](https://github.com/thi-ng/umbrella/compare/@thi.ng/range-coder@1.0.84...@thi.ng/range-coder@1.0.85) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/range-coder - - - - - -## [1.0.84](https://github.com/thi-ng/umbrella/compare/@thi.ng/range-coder@1.0.83...@thi.ng/range-coder@1.0.84) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/range-coder - - - - - -## [1.0.83](https://github.com/thi-ng/umbrella/compare/@thi.ng/range-coder@1.0.82...@thi.ng/range-coder@1.0.83) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/range-coder - - - - - # [1.0.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/range-coder@0.1.28...@thi.ng/range-coder@1.0.0) (2019-01-21) ### Build System diff --git a/packages/rdom-canvas/CHANGELOG.md b/packages/rdom-canvas/CHANGELOG.md index 02cd3eec4c..4093d488d0 100644 --- a/packages/rdom-canvas/CHANGELOG.md +++ b/packages/rdom-canvas/CHANGELOG.md @@ -3,94 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [0.1.58](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom-canvas@0.1.57...@thi.ng/rdom-canvas@0.1.58) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/rdom-canvas - - - - - -## [0.1.57](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom-canvas@0.1.56...@thi.ng/rdom-canvas@0.1.57) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/rdom-canvas - - - - - -## [0.1.56](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom-canvas@0.1.55...@thi.ng/rdom-canvas@0.1.56) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/rdom-canvas - - - - - -## [0.1.55](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom-canvas@0.1.54...@thi.ng/rdom-canvas@0.1.55) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/rdom-canvas - - - - - -## [0.1.54](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom-canvas@0.1.53...@thi.ng/rdom-canvas@0.1.54) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/rdom-canvas - - - - - -## [0.1.53](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom-canvas@0.1.52...@thi.ng/rdom-canvas@0.1.53) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/rdom-canvas - - - - - -## [0.1.52](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom-canvas@0.1.51...@thi.ng/rdom-canvas@0.1.52) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/rdom-canvas - - - - - -## [0.1.51](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom-canvas@0.1.50...@thi.ng/rdom-canvas@0.1.51) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/rdom-canvas - - - - - -## [0.1.50](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom-canvas@0.1.49...@thi.ng/rdom-canvas@0.1.50) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/rdom-canvas - - - - - -## [0.1.49](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom-canvas@0.1.48...@thi.ng/rdom-canvas@0.1.49) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/rdom-canvas - - - - - -## [0.1.48](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom-canvas@0.1.47...@thi.ng/rdom-canvas@0.1.48) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/rdom-canvas - - - - - ## [0.1.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom-canvas@0.1.8...@thi.ng/rdom-canvas@0.1.9) (2020-07-28) diff --git a/packages/rdom-components/CHANGELOG.md b/packages/rdom-components/CHANGELOG.md index c113149b26..010994940b 100644 --- a/packages/rdom-components/CHANGELOG.md +++ b/packages/rdom-components/CHANGELOG.md @@ -3,62 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [0.2.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom-components@0.2.6...@thi.ng/rdom-components@0.2.7) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/rdom-components - - - - - -## [0.2.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom-components@0.2.5...@thi.ng/rdom-components@0.2.6) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/rdom-components - - - - - -## [0.2.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom-components@0.2.4...@thi.ng/rdom-components@0.2.5) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/rdom-components - - - - - -## [0.2.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom-components@0.2.3...@thi.ng/rdom-components@0.2.4) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/rdom-components - - - - - -## [0.2.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom-components@0.2.2...@thi.ng/rdom-components@0.2.3) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/rdom-components - - - - - -## [0.2.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom-components@0.2.1...@thi.ng/rdom-components@0.2.2) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/rdom-components - - - - - -## [0.2.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom-components@0.2.0...@thi.ng/rdom-components@0.2.1) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/rdom-components - - - - - # [0.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom-components@0.1.46...@thi.ng/rdom-components@0.2.0) (2021-08-04) @@ -71,30 +15,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline -## [0.1.46](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom-components@0.1.45...@thi.ng/rdom-components@0.1.46) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/rdom-components - - - - - -## [0.1.45](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom-components@0.1.44...@thi.ng/rdom-components@0.1.45) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/rdom-components - - - - - -## [0.1.44](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom-components@0.1.43...@thi.ng/rdom-components@0.1.44) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/rdom-components - - - - - ## [0.1.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom-components@0.1.1...@thi.ng/rdom-components@0.1.2) (2020-07-09) diff --git a/packages/rdom/CHANGELOG.md b/packages/rdom/CHANGELOG.md index cd4f553f41..f321acb859 100644 --- a/packages/rdom/CHANGELOG.md +++ b/packages/rdom/CHANGELOG.md @@ -3,62 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [0.6.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom@0.6.6...@thi.ng/rdom@0.6.7) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/rdom - - - - - -## [0.6.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom@0.6.5...@thi.ng/rdom@0.6.6) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/rdom - - - - - -## [0.6.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom@0.6.4...@thi.ng/rdom@0.6.5) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/rdom - - - - - -## [0.6.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom@0.6.3...@thi.ng/rdom@0.6.4) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/rdom - - - - - -## [0.6.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom@0.6.2...@thi.ng/rdom@0.6.3) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/rdom - - - - - -## [0.6.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom@0.6.1...@thi.ng/rdom@0.6.2) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/rdom - - - - - -## [0.6.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom@0.6.0...@thi.ng/rdom@0.6.1) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/rdom - - - - - # [0.6.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom@0.5.0...@thi.ng/rdom@0.6.0) (2021-08-04) @@ -86,22 +30,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline -## [0.4.17](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom@0.4.16...@thi.ng/rdom@0.4.17) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/rdom - - - - - -## [0.4.16](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom@0.4.15...@thi.ng/rdom@0.4.16) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/rdom - - - - - # [0.4.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom@0.3.9...@thi.ng/rdom@0.4.0) (2021-02-24) diff --git a/packages/resolve-map/CHANGELOG.md b/packages/resolve-map/CHANGELOG.md index ef57baf1e2..3e4b0afc68 100644 --- a/packages/resolve-map/CHANGELOG.md +++ b/packages/resolve-map/CHANGELOG.md @@ -3,54 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [4.2.26](https://github.com/thi-ng/umbrella/compare/@thi.ng/resolve-map@4.2.25...@thi.ng/resolve-map@4.2.26) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/resolve-map - - - - - -## [4.2.25](https://github.com/thi-ng/umbrella/compare/@thi.ng/resolve-map@4.2.24...@thi.ng/resolve-map@4.2.25) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/resolve-map - - - - - -## [4.2.24](https://github.com/thi-ng/umbrella/compare/@thi.ng/resolve-map@4.2.23...@thi.ng/resolve-map@4.2.24) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/resolve-map - - - - - -## [4.2.23](https://github.com/thi-ng/umbrella/compare/@thi.ng/resolve-map@4.2.22...@thi.ng/resolve-map@4.2.23) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/resolve-map - - - - - -## [4.2.22](https://github.com/thi-ng/umbrella/compare/@thi.ng/resolve-map@4.2.21...@thi.ng/resolve-map@4.2.22) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/resolve-map - - - - - -## [4.2.21](https://github.com/thi-ng/umbrella/compare/@thi.ng/resolve-map@4.2.20...@thi.ng/resolve-map@4.2.21) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/resolve-map - - - - - # [4.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/resolve-map@4.1.31...@thi.ng/resolve-map@4.2.0) (2020-07-18) diff --git a/packages/rle-pack/CHANGELOG.md b/packages/rle-pack/CHANGELOG.md index ce31f685bf..a677ac684e 100644 --- a/packages/rle-pack/CHANGELOG.md +++ b/packages/rle-pack/CHANGELOG.md @@ -3,46 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [2.1.43](https://github.com/thi-ng/umbrella/compare/@thi.ng/rle-pack@2.1.42...@thi.ng/rle-pack@2.1.43) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/rle-pack - - - - - -## [2.1.42](https://github.com/thi-ng/umbrella/compare/@thi.ng/rle-pack@2.1.41...@thi.ng/rle-pack@2.1.42) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/rle-pack - - - - - -## [2.1.41](https://github.com/thi-ng/umbrella/compare/@thi.ng/rle-pack@2.1.40...@thi.ng/rle-pack@2.1.41) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/rle-pack - - - - - -## [2.1.40](https://github.com/thi-ng/umbrella/compare/@thi.ng/rle-pack@2.1.39...@thi.ng/rle-pack@2.1.40) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/rle-pack - - - - - -## [2.1.39](https://github.com/thi-ng/umbrella/compare/@thi.ng/rle-pack@2.1.38...@thi.ng/rle-pack@2.1.39) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/rle-pack - - - - - # [2.1.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/rle-pack@2.0.6...@thi.ng/rle-pack@2.1.0) (2019-07-07) ### Features diff --git a/packages/router/CHANGELOG.md b/packages/router/CHANGELOG.md index 4c2911762c..8340d07a82 100644 --- a/packages/router/CHANGELOG.md +++ b/packages/router/CHANGELOG.md @@ -3,54 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [2.0.53](https://github.com/thi-ng/umbrella/compare/@thi.ng/router@2.0.52...@thi.ng/router@2.0.53) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/router - - - - - -## [2.0.52](https://github.com/thi-ng/umbrella/compare/@thi.ng/router@2.0.51...@thi.ng/router@2.0.52) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/router - - - - - -## [2.0.51](https://github.com/thi-ng/umbrella/compare/@thi.ng/router@2.0.50...@thi.ng/router@2.0.51) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/router - - - - - -## [2.0.50](https://github.com/thi-ng/umbrella/compare/@thi.ng/router@2.0.49...@thi.ng/router@2.0.50) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/router - - - - - -## [2.0.49](https://github.com/thi-ng/umbrella/compare/@thi.ng/router@2.0.48...@thi.ng/router@2.0.49) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/router - - - - - -## [2.0.48](https://github.com/thi-ng/umbrella/compare/@thi.ng/router@2.0.47...@thi.ng/router@2.0.48) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/router - - - - - # [2.0.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/router@1.0.12...@thi.ng/router@2.0.0) (2019-07-07) ### Code Refactoring diff --git a/packages/rstream-csp/CHANGELOG.md b/packages/rstream-csp/CHANGELOG.md index 1e0ce90aab..1d09004480 100644 --- a/packages/rstream-csp/CHANGELOG.md +++ b/packages/rstream-csp/CHANGELOG.md @@ -3,94 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [2.0.78](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-csp@2.0.77...@thi.ng/rstream-csp@2.0.78) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/rstream-csp - - - - - -## [2.0.77](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-csp@2.0.76...@thi.ng/rstream-csp@2.0.77) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/rstream-csp - - - - - -## [2.0.76](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-csp@2.0.75...@thi.ng/rstream-csp@2.0.76) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/rstream-csp - - - - - -## [2.0.75](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-csp@2.0.74...@thi.ng/rstream-csp@2.0.75) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/rstream-csp - - - - - -## [2.0.74](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-csp@2.0.73...@thi.ng/rstream-csp@2.0.74) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/rstream-csp - - - - - -## [2.0.73](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-csp@2.0.72...@thi.ng/rstream-csp@2.0.73) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/rstream-csp - - - - - -## [2.0.72](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-csp@2.0.71...@thi.ng/rstream-csp@2.0.72) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/rstream-csp - - - - - -## [2.0.71](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-csp@2.0.70...@thi.ng/rstream-csp@2.0.71) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/rstream-csp - - - - - -## [2.0.70](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-csp@2.0.69...@thi.ng/rstream-csp@2.0.70) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/rstream-csp - - - - - -## [2.0.69](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-csp@2.0.68...@thi.ng/rstream-csp@2.0.69) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/rstream-csp - - - - - -## [2.0.68](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-csp@2.0.67...@thi.ng/rstream-csp@2.0.68) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/rstream-csp - - - - - # [2.0.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-csp@1.0.33...@thi.ng/rstream-csp@2.0.0) (2019-11-30) ### Code Refactoring diff --git a/packages/rstream-dot/CHANGELOG.md b/packages/rstream-dot/CHANGELOG.md index 7d73bb8dbb..5b75447d24 100644 --- a/packages/rstream-dot/CHANGELOG.md +++ b/packages/rstream-dot/CHANGELOG.md @@ -3,94 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.2.27](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-dot@1.2.26...@thi.ng/rstream-dot@1.2.27) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/rstream-dot - - - - - -## [1.2.26](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-dot@1.2.25...@thi.ng/rstream-dot@1.2.26) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/rstream-dot - - - - - -## [1.2.25](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-dot@1.2.24...@thi.ng/rstream-dot@1.2.25) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/rstream-dot - - - - - -## [1.2.24](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-dot@1.2.23...@thi.ng/rstream-dot@1.2.24) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/rstream-dot - - - - - -## [1.2.23](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-dot@1.2.22...@thi.ng/rstream-dot@1.2.23) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/rstream-dot - - - - - -## [1.2.22](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-dot@1.2.21...@thi.ng/rstream-dot@1.2.22) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/rstream-dot - - - - - -## [1.2.21](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-dot@1.2.20...@thi.ng/rstream-dot@1.2.21) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/rstream-dot - - - - - -## [1.2.20](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-dot@1.2.19...@thi.ng/rstream-dot@1.2.20) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/rstream-dot - - - - - -## [1.2.19](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-dot@1.2.18...@thi.ng/rstream-dot@1.2.19) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/rstream-dot - - - - - -## [1.2.18](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-dot@1.2.17...@thi.ng/rstream-dot@1.2.18) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/rstream-dot - - - - - -## [1.2.17](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-dot@1.2.16...@thi.ng/rstream-dot@1.2.17) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/rstream-dot - - - - - # [1.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-dot@1.1.59...@thi.ng/rstream-dot@1.2.0) (2021-02-22) diff --git a/packages/rstream-gestures/CHANGELOG.md b/packages/rstream-gestures/CHANGELOG.md index a71574931a..c2fa6b0a1a 100644 --- a/packages/rstream-gestures/CHANGELOG.md +++ b/packages/rstream-gestures/CHANGELOG.md @@ -3,94 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [3.0.32](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-gestures@3.0.31...@thi.ng/rstream-gestures@3.0.32) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/rstream-gestures - - - - - -## [3.0.31](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-gestures@3.0.30...@thi.ng/rstream-gestures@3.0.31) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/rstream-gestures - - - - - -## [3.0.30](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-gestures@3.0.29...@thi.ng/rstream-gestures@3.0.30) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/rstream-gestures - - - - - -## [3.0.29](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-gestures@3.0.28...@thi.ng/rstream-gestures@3.0.29) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/rstream-gestures - - - - - -## [3.0.28](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-gestures@3.0.27...@thi.ng/rstream-gestures@3.0.28) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/rstream-gestures - - - - - -## [3.0.27](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-gestures@3.0.26...@thi.ng/rstream-gestures@3.0.27) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/rstream-gestures - - - - - -## [3.0.26](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-gestures@3.0.25...@thi.ng/rstream-gestures@3.0.26) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/rstream-gestures - - - - - -## [3.0.25](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-gestures@3.0.24...@thi.ng/rstream-gestures@3.0.25) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/rstream-gestures - - - - - -## [3.0.24](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-gestures@3.0.23...@thi.ng/rstream-gestures@3.0.24) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/rstream-gestures - - - - - -## [3.0.23](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-gestures@3.0.22...@thi.ng/rstream-gestures@3.0.23) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/rstream-gestures - - - - - -## [3.0.22](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-gestures@3.0.21...@thi.ng/rstream-gestures@3.0.22) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/rstream-gestures - - - - - # [3.0.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-gestures@2.0.45...@thi.ng/rstream-gestures@3.0.0) (2020-12-22) diff --git a/packages/rstream-graph/CHANGELOG.md b/packages/rstream-graph/CHANGELOG.md index fb93da00df..484e646d10 100644 --- a/packages/rstream-graph/CHANGELOG.md +++ b/packages/rstream-graph/CHANGELOG.md @@ -3,94 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [3.2.79](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-graph@3.2.78...@thi.ng/rstream-graph@3.2.79) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/rstream-graph - - - - - -## [3.2.78](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-graph@3.2.77...@thi.ng/rstream-graph@3.2.78) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/rstream-graph - - - - - -## [3.2.77](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-graph@3.2.76...@thi.ng/rstream-graph@3.2.77) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/rstream-graph - - - - - -## [3.2.76](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-graph@3.2.75...@thi.ng/rstream-graph@3.2.76) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/rstream-graph - - - - - -## [3.2.75](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-graph@3.2.74...@thi.ng/rstream-graph@3.2.75) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/rstream-graph - - - - - -## [3.2.74](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-graph@3.2.73...@thi.ng/rstream-graph@3.2.74) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/rstream-graph - - - - - -## [3.2.73](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-graph@3.2.72...@thi.ng/rstream-graph@3.2.73) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/rstream-graph - - - - - -## [3.2.72](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-graph@3.2.71...@thi.ng/rstream-graph@3.2.72) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/rstream-graph - - - - - -## [3.2.71](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-graph@3.2.70...@thi.ng/rstream-graph@3.2.71) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/rstream-graph - - - - - -## [3.2.70](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-graph@3.2.69...@thi.ng/rstream-graph@3.2.70) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/rstream-graph - - - - - -## [3.2.69](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-graph@3.2.68...@thi.ng/rstream-graph@3.2.69) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/rstream-graph - - - - - # [3.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-graph@3.1.8...@thi.ng/rstream-graph@3.2.0) (2019-11-30) ### Bug Fixes diff --git a/packages/rstream-log-file/CHANGELOG.md b/packages/rstream-log-file/CHANGELOG.md index 41c0db52cb..b9df57e808 100644 --- a/packages/rstream-log-file/CHANGELOG.md +++ b/packages/rstream-log-file/CHANGELOG.md @@ -3,94 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log-file@1.0.3...@thi.ng/rstream-log-file@1.0.4) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/rstream-log-file - - - - - -## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log-file@1.0.2...@thi.ng/rstream-log-file@1.0.3) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/rstream-log-file - - - - - -## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log-file@1.0.1...@thi.ng/rstream-log-file@1.0.2) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/rstream-log-file - - - - - -## [1.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log-file@0.1.96...@thi.ng/rstream-log-file@1.0.1) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/rstream-log-file - - - - - -## [0.1.96](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log-file@0.1.95...@thi.ng/rstream-log-file@0.1.96) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/rstream-log-file - - - - - -## [0.1.95](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log-file@0.1.94...@thi.ng/rstream-log-file@0.1.95) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/rstream-log-file - - - - - -## [0.1.94](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log-file@0.1.93...@thi.ng/rstream-log-file@0.1.94) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/rstream-log-file - - - - - -## [0.1.93](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log-file@0.1.92...@thi.ng/rstream-log-file@0.1.93) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/rstream-log-file - - - - - -## [0.1.92](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log-file@0.1.91...@thi.ng/rstream-log-file@0.1.92) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/rstream-log-file - - - - - -## [0.1.91](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log-file@0.1.90...@thi.ng/rstream-log-file@0.1.91) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/rstream-log-file - - - - - -## [0.1.90](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log-file@0.1.89...@thi.ng/rstream-log-file@0.1.90) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/rstream-log-file - - - - - # 0.1.0 (2019-03-19) ### Features diff --git a/packages/rstream-log/CHANGELOG.md b/packages/rstream-log/CHANGELOG.md index b49ce461b1..c5d10095c5 100644 --- a/packages/rstream-log/CHANGELOG.md +++ b/packages/rstream-log/CHANGELOG.md @@ -3,94 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [3.2.31](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log@3.2.30...@thi.ng/rstream-log@3.2.31) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/rstream-log - - - - - -## [3.2.30](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log@3.2.29...@thi.ng/rstream-log@3.2.30) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/rstream-log - - - - - -## [3.2.29](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log@3.2.28...@thi.ng/rstream-log@3.2.29) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/rstream-log - - - - - -## [3.2.28](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log@3.2.27...@thi.ng/rstream-log@3.2.28) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/rstream-log - - - - - -## [3.2.27](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log@3.2.26...@thi.ng/rstream-log@3.2.27) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/rstream-log - - - - - -## [3.2.26](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log@3.2.25...@thi.ng/rstream-log@3.2.26) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/rstream-log - - - - - -## [3.2.25](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log@3.2.24...@thi.ng/rstream-log@3.2.25) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/rstream-log - - - - - -## [3.2.24](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log@3.2.23...@thi.ng/rstream-log@3.2.24) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/rstream-log - - - - - -## [3.2.23](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log@3.2.22...@thi.ng/rstream-log@3.2.23) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/rstream-log - - - - - -## [3.2.22](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log@3.2.21...@thi.ng/rstream-log@3.2.22) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/rstream-log - - - - - -## [3.2.21](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log@3.2.20...@thi.ng/rstream-log@3.2.21) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/rstream-log - - - - - # [3.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log@3.1.55...@thi.ng/rstream-log@3.2.0) (2021-01-13) diff --git a/packages/rstream-query/CHANGELOG.md b/packages/rstream-query/CHANGELOG.md index dff277f233..4dba714ee9 100644 --- a/packages/rstream-query/CHANGELOG.md +++ b/packages/rstream-query/CHANGELOG.md @@ -3,94 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.1.87](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-query@1.1.86...@thi.ng/rstream-query@1.1.87) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/rstream-query - - - - - -## [1.1.86](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-query@1.1.85...@thi.ng/rstream-query@1.1.86) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/rstream-query - - - - - -## [1.1.85](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-query@1.1.84...@thi.ng/rstream-query@1.1.85) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/rstream-query - - - - - -## [1.1.84](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-query@1.1.83...@thi.ng/rstream-query@1.1.84) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/rstream-query - - - - - -## [1.1.83](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-query@1.1.82...@thi.ng/rstream-query@1.1.83) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/rstream-query - - - - - -## [1.1.82](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-query@1.1.81...@thi.ng/rstream-query@1.1.82) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/rstream-query - - - - - -## [1.1.81](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-query@1.1.80...@thi.ng/rstream-query@1.1.81) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/rstream-query - - - - - -## [1.1.80](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-query@1.1.79...@thi.ng/rstream-query@1.1.80) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/rstream-query - - - - - -## [1.1.79](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-query@1.1.78...@thi.ng/rstream-query@1.1.79) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/rstream-query - - - - - -## [1.1.78](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-query@1.1.77...@thi.ng/rstream-query@1.1.78) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/rstream-query - - - - - -## [1.1.77](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-query@1.1.76...@thi.ng/rstream-query@1.1.77) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/rstream-query - - - - - ## [1.1.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-query@1.1.6...@thi.ng/rstream-query@1.1.7) (2019-11-30) ### Bug Fixes diff --git a/packages/rstream/CHANGELOG.md b/packages/rstream/CHANGELOG.md index 0db6265694..ff84f1637d 100644 --- a/packages/rstream/CHANGELOG.md +++ b/packages/rstream/CHANGELOG.md @@ -3,46 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [6.0.19](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream@6.0.18...@thi.ng/rstream@6.0.19) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/rstream - - - - - -## [6.0.18](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream@6.0.17...@thi.ng/rstream@6.0.18) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/rstream - - - - - -## [6.0.17](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream@6.0.16...@thi.ng/rstream@6.0.17) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/rstream - - - - - -## [6.0.16](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream@6.0.15...@thi.ng/rstream@6.0.16) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/rstream - - - - - -## [6.0.15](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream@6.0.14...@thi.ng/rstream@6.0.15) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/rstream - - - - - ## [6.0.14](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream@6.0.13...@thi.ng/rstream@6.0.14) (2021-08-08) @@ -54,46 +14,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline -## [6.0.13](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream@6.0.12...@thi.ng/rstream@6.0.13) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/rstream - - - - - -## [6.0.12](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream@6.0.11...@thi.ng/rstream@6.0.12) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/rstream - - - - - -## [6.0.11](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream@6.0.10...@thi.ng/rstream@6.0.11) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/rstream - - - - - -## [6.0.10](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream@6.0.9...@thi.ng/rstream@6.0.10) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/rstream - - - - - -## [6.0.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream@6.0.8...@thi.ng/rstream@6.0.9) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/rstream - - - - - # [6.0.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream@5.1.7...@thi.ng/rstream@6.0.0) (2021-03-12) diff --git a/packages/sax/CHANGELOG.md b/packages/sax/CHANGELOG.md index b4a6a83474..e961a8526e 100644 --- a/packages/sax/CHANGELOG.md +++ b/packages/sax/CHANGELOG.md @@ -3,86 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.1.72](https://github.com/thi-ng/umbrella/compare/@thi.ng/sax@1.1.71...@thi.ng/sax@1.1.72) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/sax - - - - - -## [1.1.71](https://github.com/thi-ng/umbrella/compare/@thi.ng/sax@1.1.70...@thi.ng/sax@1.1.71) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/sax - - - - - -## [1.1.70](https://github.com/thi-ng/umbrella/compare/@thi.ng/sax@1.1.69...@thi.ng/sax@1.1.70) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/sax - - - - - -## [1.1.69](https://github.com/thi-ng/umbrella/compare/@thi.ng/sax@1.1.68...@thi.ng/sax@1.1.69) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/sax - - - - - -## [1.1.68](https://github.com/thi-ng/umbrella/compare/@thi.ng/sax@1.1.67...@thi.ng/sax@1.1.68) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/sax - - - - - -## [1.1.67](https://github.com/thi-ng/umbrella/compare/@thi.ng/sax@1.1.66...@thi.ng/sax@1.1.67) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/sax - - - - - -## [1.1.66](https://github.com/thi-ng/umbrella/compare/@thi.ng/sax@1.1.65...@thi.ng/sax@1.1.66) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/sax - - - - - -## [1.1.65](https://github.com/thi-ng/umbrella/compare/@thi.ng/sax@1.1.64...@thi.ng/sax@1.1.65) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/sax - - - - - -## [1.1.64](https://github.com/thi-ng/umbrella/compare/@thi.ng/sax@1.1.63...@thi.ng/sax@1.1.64) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/sax - - - - - -## [1.1.63](https://github.com/thi-ng/umbrella/compare/@thi.ng/sax@1.1.62...@thi.ng/sax@1.1.63) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/sax - - - - - # [1.1.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/sax@1.0.19...@thi.ng/sax@1.1.0) (2019-07-07) ### Features diff --git a/packages/scenegraph/CHANGELOG.md b/packages/scenegraph/CHANGELOG.md index 94313ecdf7..b8ad171fcf 100644 --- a/packages/scenegraph/CHANGELOG.md +++ b/packages/scenegraph/CHANGELOG.md @@ -3,86 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [0.3.42](https://github.com/thi-ng/umbrella/compare/@thi.ng/scenegraph@0.3.41...@thi.ng/scenegraph@0.3.42) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/scenegraph - - - - - -## [0.3.41](https://github.com/thi-ng/umbrella/compare/@thi.ng/scenegraph@0.3.40...@thi.ng/scenegraph@0.3.41) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/scenegraph - - - - - -## [0.3.40](https://github.com/thi-ng/umbrella/compare/@thi.ng/scenegraph@0.3.39...@thi.ng/scenegraph@0.3.40) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/scenegraph - - - - - -## [0.3.39](https://github.com/thi-ng/umbrella/compare/@thi.ng/scenegraph@0.3.38...@thi.ng/scenegraph@0.3.39) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/scenegraph - - - - - -## [0.3.38](https://github.com/thi-ng/umbrella/compare/@thi.ng/scenegraph@0.3.37...@thi.ng/scenegraph@0.3.38) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/scenegraph - - - - - -## [0.3.37](https://github.com/thi-ng/umbrella/compare/@thi.ng/scenegraph@0.3.36...@thi.ng/scenegraph@0.3.37) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/scenegraph - - - - - -## [0.3.36](https://github.com/thi-ng/umbrella/compare/@thi.ng/scenegraph@0.3.35...@thi.ng/scenegraph@0.3.36) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/scenegraph - - - - - -## [0.3.35](https://github.com/thi-ng/umbrella/compare/@thi.ng/scenegraph@0.3.34...@thi.ng/scenegraph@0.3.35) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/scenegraph - - - - - -## [0.3.34](https://github.com/thi-ng/umbrella/compare/@thi.ng/scenegraph@0.3.33...@thi.ng/scenegraph@0.3.34) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/scenegraph - - - - - -## [0.3.33](https://github.com/thi-ng/umbrella/compare/@thi.ng/scenegraph@0.3.32...@thi.ng/scenegraph@0.3.33) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/scenegraph - - - - - # [0.3.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/scenegraph@0.2.1...@thi.ng/scenegraph@0.3.0) (2020-07-28) diff --git a/packages/seq/CHANGELOG.md b/packages/seq/CHANGELOG.md index 3467e24aee..483c99bc6d 100644 --- a/packages/seq/CHANGELOG.md +++ b/packages/seq/CHANGELOG.md @@ -3,46 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [0.2.42](https://github.com/thi-ng/umbrella/compare/@thi.ng/seq@0.2.41...@thi.ng/seq@0.2.42) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/seq - - - - - -## [0.2.41](https://github.com/thi-ng/umbrella/compare/@thi.ng/seq@0.2.40...@thi.ng/seq@0.2.41) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/seq - - - - - -## [0.2.40](https://github.com/thi-ng/umbrella/compare/@thi.ng/seq@0.2.39...@thi.ng/seq@0.2.40) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/seq - - - - - -## [0.2.39](https://github.com/thi-ng/umbrella/compare/@thi.ng/seq@0.2.38...@thi.ng/seq@0.2.39) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/seq - - - - - -## [0.2.38](https://github.com/thi-ng/umbrella/compare/@thi.ng/seq@0.2.37...@thi.ng/seq@0.2.38) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/seq - - - - - # [0.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/seq@0.1.0...@thi.ng/seq@0.2.0) (2020-01-24) ### Features diff --git a/packages/sexpr/CHANGELOG.md b/packages/sexpr/CHANGELOG.md index 1c69b493ff..0e1eb0dd1f 100644 --- a/packages/sexpr/CHANGELOG.md +++ b/packages/sexpr/CHANGELOG.md @@ -3,54 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [0.2.47](https://github.com/thi-ng/umbrella/compare/@thi.ng/sexpr@0.2.46...@thi.ng/sexpr@0.2.47) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/sexpr - - - - - -## [0.2.46](https://github.com/thi-ng/umbrella/compare/@thi.ng/sexpr@0.2.45...@thi.ng/sexpr@0.2.46) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/sexpr - - - - - -## [0.2.45](https://github.com/thi-ng/umbrella/compare/@thi.ng/sexpr@0.2.44...@thi.ng/sexpr@0.2.45) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/sexpr - - - - - -## [0.2.44](https://github.com/thi-ng/umbrella/compare/@thi.ng/sexpr@0.2.43...@thi.ng/sexpr@0.2.44) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/sexpr - - - - - -## [0.2.43](https://github.com/thi-ng/umbrella/compare/@thi.ng/sexpr@0.2.42...@thi.ng/sexpr@0.2.43) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/sexpr - - - - - -## [0.2.42](https://github.com/thi-ng/umbrella/compare/@thi.ng/sexpr@0.2.41...@thi.ng/sexpr@0.2.42) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/sexpr - - - - - ## [0.2.35](https://github.com/thi-ng/umbrella/compare/@thi.ng/sexpr@0.2.34...@thi.ng/sexpr@0.2.35) (2021-03-03) diff --git a/packages/shader-ast-glsl/CHANGELOG.md b/packages/shader-ast-glsl/CHANGELOG.md index 5800dfe5c1..1cdc0c9bb7 100644 --- a/packages/shader-ast-glsl/CHANGELOG.md +++ b/packages/shader-ast-glsl/CHANGELOG.md @@ -3,94 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [0.2.46](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-glsl@0.2.45...@thi.ng/shader-ast-glsl@0.2.46) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/shader-ast-glsl - - - - - -## [0.2.45](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-glsl@0.2.44...@thi.ng/shader-ast-glsl@0.2.45) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/shader-ast-glsl - - - - - -## [0.2.44](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-glsl@0.2.43...@thi.ng/shader-ast-glsl@0.2.44) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/shader-ast-glsl - - - - - -## [0.2.43](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-glsl@0.2.42...@thi.ng/shader-ast-glsl@0.2.43) (2021-08-13) - -**Note:** Version bump only for package @thi.ng/shader-ast-glsl - - - - - -## [0.2.42](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-glsl@0.2.41...@thi.ng/shader-ast-glsl@0.2.42) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/shader-ast-glsl - - - - - -## [0.2.41](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-glsl@0.2.40...@thi.ng/shader-ast-glsl@0.2.41) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/shader-ast-glsl - - - - - -## [0.2.40](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-glsl@0.2.39...@thi.ng/shader-ast-glsl@0.2.40) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/shader-ast-glsl - - - - - -## [0.2.39](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-glsl@0.2.38...@thi.ng/shader-ast-glsl@0.2.39) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/shader-ast-glsl - - - - - -## [0.2.38](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-glsl@0.2.37...@thi.ng/shader-ast-glsl@0.2.38) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/shader-ast-glsl - - - - - -## [0.2.37](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-glsl@0.2.36...@thi.ng/shader-ast-glsl@0.2.37) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/shader-ast-glsl - - - - - -## [0.2.36](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-glsl@0.2.35...@thi.ng/shader-ast-glsl@0.2.36) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/shader-ast-glsl - - - - - # [0.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-glsl@0.1.39...@thi.ng/shader-ast-glsl@0.2.0) (2020-07-28) diff --git a/packages/shader-ast-js/CHANGELOG.md b/packages/shader-ast-js/CHANGELOG.md index 5fbd1f9897..ad23b75018 100644 --- a/packages/shader-ast-js/CHANGELOG.md +++ b/packages/shader-ast-js/CHANGELOG.md @@ -3,22 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [0.5.47](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-js@0.5.46...@thi.ng/shader-ast-js@0.5.47) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/shader-ast-js - - - - - -## [0.5.46](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-js@0.5.45...@thi.ng/shader-ast-js@0.5.46) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/shader-ast-js - - - - - ## [0.5.45](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-js@0.5.44...@thi.ng/shader-ast-js@0.5.45) (2021-08-17) @@ -30,70 +14,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline -## [0.5.44](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-js@0.5.43...@thi.ng/shader-ast-js@0.5.44) (2021-08-13) - -**Note:** Version bump only for package @thi.ng/shader-ast-js - - - - - -## [0.5.43](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-js@0.5.42...@thi.ng/shader-ast-js@0.5.43) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/shader-ast-js - - - - - -## [0.5.42](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-js@0.5.41...@thi.ng/shader-ast-js@0.5.42) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/shader-ast-js - - - - - -## [0.5.41](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-js@0.5.40...@thi.ng/shader-ast-js@0.5.41) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/shader-ast-js - - - - - -## [0.5.40](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-js@0.5.39...@thi.ng/shader-ast-js@0.5.40) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/shader-ast-js - - - - - -## [0.5.39](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-js@0.5.38...@thi.ng/shader-ast-js@0.5.39) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/shader-ast-js - - - - - -## [0.5.38](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-js@0.5.37...@thi.ng/shader-ast-js@0.5.38) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/shader-ast-js - - - - - -## [0.5.37](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-js@0.5.36...@thi.ng/shader-ast-js@0.5.37) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/shader-ast-js - - - - - # [0.5.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-js@0.4.40...@thi.ng/shader-ast-js@0.5.0) (2020-08-10) diff --git a/packages/shader-ast-stdlib/CHANGELOG.md b/packages/shader-ast-stdlib/CHANGELOG.md index 5e0e404ad6..e35bc20aba 100644 --- a/packages/shader-ast-stdlib/CHANGELOG.md +++ b/packages/shader-ast-stdlib/CHANGELOG.md @@ -3,22 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [0.9.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-stdlib@0.9.1...@thi.ng/shader-ast-stdlib@0.9.2) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/shader-ast-stdlib - - - - - -## [0.9.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-stdlib@0.9.0...@thi.ng/shader-ast-stdlib@0.9.1) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/shader-ast-stdlib - - - - - # [0.9.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-stdlib@0.8.0...@thi.ng/shader-ast-stdlib@0.9.0) (2021-08-17) @@ -56,62 +40,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline -## [0.6.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-stdlib@0.6.6...@thi.ng/shader-ast-stdlib@0.6.7) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/shader-ast-stdlib - - - - - -## [0.6.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-stdlib@0.6.5...@thi.ng/shader-ast-stdlib@0.6.6) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/shader-ast-stdlib - - - - - -## [0.6.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-stdlib@0.6.4...@thi.ng/shader-ast-stdlib@0.6.5) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/shader-ast-stdlib - - - - - -## [0.6.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-stdlib@0.6.3...@thi.ng/shader-ast-stdlib@0.6.4) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/shader-ast-stdlib - - - - - -## [0.6.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-stdlib@0.6.2...@thi.ng/shader-ast-stdlib@0.6.3) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/shader-ast-stdlib - - - - - -## [0.6.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-stdlib@0.6.1...@thi.ng/shader-ast-stdlib@0.6.2) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/shader-ast-stdlib - - - - - -## [0.6.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-stdlib@0.6.0...@thi.ng/shader-ast-stdlib@0.6.1) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/shader-ast-stdlib - - - - - # [0.6.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-stdlib@0.5.26...@thi.ng/shader-ast-stdlib@0.6.0) (2021-04-24) diff --git a/packages/shader-ast/CHANGELOG.md b/packages/shader-ast/CHANGELOG.md index d5b0f3c241..5aab501394 100644 --- a/packages/shader-ast/CHANGELOG.md +++ b/packages/shader-ast/CHANGELOG.md @@ -3,22 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [0.10.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast@0.10.1...@thi.ng/shader-ast@0.10.2) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/shader-ast - - - - - -## [0.10.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast@0.10.0...@thi.ng/shader-ast@0.10.1) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/shader-ast - - - - - # [0.10.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast@0.9.0...@thi.ng/shader-ast@0.10.0) (2021-08-17) @@ -51,54 +35,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline -## [0.8.20](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast@0.8.19...@thi.ng/shader-ast@0.8.20) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/shader-ast - - - - - -## [0.8.19](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast@0.8.18...@thi.ng/shader-ast@0.8.19) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/shader-ast - - - - - -## [0.8.18](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast@0.8.17...@thi.ng/shader-ast@0.8.18) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/shader-ast - - - - - -## [0.8.17](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast@0.8.16...@thi.ng/shader-ast@0.8.17) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/shader-ast - - - - - -## [0.8.16](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast@0.8.15...@thi.ng/shader-ast@0.8.16) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/shader-ast - - - - - -## [0.8.15](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast@0.8.14...@thi.ng/shader-ast@0.8.15) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/shader-ast - - - - - ## [0.8.14](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast@0.8.13...@thi.ng/shader-ast@0.8.14) (2021-06-08) diff --git a/packages/simd/CHANGELOG.md b/packages/simd/CHANGELOG.md index 215858c843..d6e87f52a8 100644 --- a/packages/simd/CHANGELOG.md +++ b/packages/simd/CHANGELOG.md @@ -3,86 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [0.4.40](https://github.com/thi-ng/umbrella/compare/@thi.ng/simd@0.4.39...@thi.ng/simd@0.4.40) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/simd - - - - - -## [0.4.39](https://github.com/thi-ng/umbrella/compare/@thi.ng/simd@0.4.38...@thi.ng/simd@0.4.39) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/simd - - - - - -## [0.4.38](https://github.com/thi-ng/umbrella/compare/@thi.ng/simd@0.4.37...@thi.ng/simd@0.4.38) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/simd - - - - - -## [0.4.37](https://github.com/thi-ng/umbrella/compare/@thi.ng/simd@0.4.36...@thi.ng/simd@0.4.37) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/simd - - - - - -## [0.4.36](https://github.com/thi-ng/umbrella/compare/@thi.ng/simd@0.4.35...@thi.ng/simd@0.4.36) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/simd - - - - - -## [0.4.35](https://github.com/thi-ng/umbrella/compare/@thi.ng/simd@0.4.34...@thi.ng/simd@0.4.35) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/simd - - - - - -## [0.4.34](https://github.com/thi-ng/umbrella/compare/@thi.ng/simd@0.4.33...@thi.ng/simd@0.4.34) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/simd - - - - - -## [0.4.33](https://github.com/thi-ng/umbrella/compare/@thi.ng/simd@0.4.32...@thi.ng/simd@0.4.33) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/simd - - - - - -## [0.4.32](https://github.com/thi-ng/umbrella/compare/@thi.ng/simd@0.4.31...@thi.ng/simd@0.4.32) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/simd - - - - - -## [0.4.31](https://github.com/thi-ng/umbrella/compare/@thi.ng/simd@0.4.30...@thi.ng/simd@0.4.31) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/simd - - - - - # [0.4.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/simd@0.3.1...@thi.ng/simd@0.4.0) (2020-07-25) diff --git a/packages/soa/CHANGELOG.md b/packages/soa/CHANGELOG.md index 8cbcdea361..ad0b915a97 100644 --- a/packages/soa/CHANGELOG.md +++ b/packages/soa/CHANGELOG.md @@ -3,86 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [0.2.24](https://github.com/thi-ng/umbrella/compare/@thi.ng/soa@0.2.23...@thi.ng/soa@0.2.24) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/soa - - - - - -## [0.2.23](https://github.com/thi-ng/umbrella/compare/@thi.ng/soa@0.2.22...@thi.ng/soa@0.2.23) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/soa - - - - - -## [0.2.22](https://github.com/thi-ng/umbrella/compare/@thi.ng/soa@0.2.21...@thi.ng/soa@0.2.22) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/soa - - - - - -## [0.2.21](https://github.com/thi-ng/umbrella/compare/@thi.ng/soa@0.2.20...@thi.ng/soa@0.2.21) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/soa - - - - - -## [0.2.20](https://github.com/thi-ng/umbrella/compare/@thi.ng/soa@0.2.19...@thi.ng/soa@0.2.20) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/soa - - - - - -## [0.2.19](https://github.com/thi-ng/umbrella/compare/@thi.ng/soa@0.2.18...@thi.ng/soa@0.2.19) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/soa - - - - - -## [0.2.18](https://github.com/thi-ng/umbrella/compare/@thi.ng/soa@0.2.17...@thi.ng/soa@0.2.18) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/soa - - - - - -## [0.2.17](https://github.com/thi-ng/umbrella/compare/@thi.ng/soa@0.2.16...@thi.ng/soa@0.2.17) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/soa - - - - - -## [0.2.16](https://github.com/thi-ng/umbrella/compare/@thi.ng/soa@0.2.15...@thi.ng/soa@0.2.16) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/soa - - - - - -## [0.2.15](https://github.com/thi-ng/umbrella/compare/@thi.ng/soa@0.2.14...@thi.ng/soa@0.2.15) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/soa - - - - - # [0.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/soa@0.1.47...@thi.ng/soa@0.2.0) (2021-02-20) diff --git a/packages/sparse/CHANGELOG.md b/packages/sparse/CHANGELOG.md index daaa374d1d..29f14f10de 100644 --- a/packages/sparse/CHANGELOG.md +++ b/packages/sparse/CHANGELOG.md @@ -3,86 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [0.1.88](https://github.com/thi-ng/umbrella/compare/@thi.ng/sparse@0.1.87...@thi.ng/sparse@0.1.88) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/sparse - - - - - -## [0.1.87](https://github.com/thi-ng/umbrella/compare/@thi.ng/sparse@0.1.86...@thi.ng/sparse@0.1.87) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/sparse - - - - - -## [0.1.86](https://github.com/thi-ng/umbrella/compare/@thi.ng/sparse@0.1.85...@thi.ng/sparse@0.1.86) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/sparse - - - - - -## [0.1.85](https://github.com/thi-ng/umbrella/compare/@thi.ng/sparse@0.1.84...@thi.ng/sparse@0.1.85) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/sparse - - - - - -## [0.1.84](https://github.com/thi-ng/umbrella/compare/@thi.ng/sparse@0.1.83...@thi.ng/sparse@0.1.84) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/sparse - - - - - -## [0.1.83](https://github.com/thi-ng/umbrella/compare/@thi.ng/sparse@0.1.82...@thi.ng/sparse@0.1.83) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/sparse - - - - - -## [0.1.82](https://github.com/thi-ng/umbrella/compare/@thi.ng/sparse@0.1.81...@thi.ng/sparse@0.1.82) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/sparse - - - - - -## [0.1.81](https://github.com/thi-ng/umbrella/compare/@thi.ng/sparse@0.1.80...@thi.ng/sparse@0.1.81) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/sparse - - - - - -## [0.1.80](https://github.com/thi-ng/umbrella/compare/@thi.ng/sparse@0.1.79...@thi.ng/sparse@0.1.80) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/sparse - - - - - -## [0.1.79](https://github.com/thi-ng/umbrella/compare/@thi.ng/sparse@0.1.78...@thi.ng/sparse@0.1.79) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/sparse - - - - - # 0.1.0 (2019-02-17) ### Features diff --git a/packages/strings/CHANGELOG.md b/packages/strings/CHANGELOG.md index 101b33b183..881bc91cda 100644 --- a/packages/strings/CHANGELOG.md +++ b/packages/strings/CHANGELOG.md @@ -3,54 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [2.1.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/strings@2.1.5...@thi.ng/strings@2.1.6) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/strings - - - - - -## [2.1.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/strings@2.1.4...@thi.ng/strings@2.1.5) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/strings - - - - - -## [2.1.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/strings@2.1.3...@thi.ng/strings@2.1.4) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/strings - - - - - -## [2.1.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/strings@2.1.2...@thi.ng/strings@2.1.3) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/strings - - - - - -## [2.1.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/strings@2.1.1...@thi.ng/strings@2.1.2) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/strings - - - - - -## [2.1.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/strings@2.1.0...@thi.ng/strings@2.1.1) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/strings - - - - - # [2.1.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/strings@2.0.0...@thi.ng/strings@2.1.0) (2021-03-24) diff --git a/packages/system/CHANGELOG.md b/packages/system/CHANGELOG.md index cf0c7be9e5..83e1389b9f 100644 --- a/packages/system/CHANGELOG.md +++ b/packages/system/CHANGELOG.md @@ -3,94 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.0.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/system@1.0.5...@thi.ng/system@1.0.6) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/system - - - - - -## [1.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/system@1.0.4...@thi.ng/system@1.0.5) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/system - - - - - -## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/system@1.0.3...@thi.ng/system@1.0.4) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/system - - - - - -## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/system@1.0.2...@thi.ng/system@1.0.3) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/system - - - - - -## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/system@1.0.1...@thi.ng/system@1.0.2) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/system - - - - - -## [1.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/system@0.3.9...@thi.ng/system@1.0.1) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/system - - - - - -## [0.3.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/system@0.3.8...@thi.ng/system@0.3.9) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/system - - - - - -## [0.3.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/system@0.3.7...@thi.ng/system@0.3.8) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/system - - - - - -## [0.3.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/system@0.3.6...@thi.ng/system@0.3.7) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/system - - - - - -## [0.3.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/system@0.3.5...@thi.ng/system@0.3.6) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/system - - - - - -## [0.3.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/system@0.3.4...@thi.ng/system@0.3.5) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/system - - - - - # [0.3.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/system@0.2.48...@thi.ng/system@0.3.0) (2021-03-30) diff --git a/packages/text-canvas/CHANGELOG.md b/packages/text-canvas/CHANGELOG.md index a9104254c2..bd3207858a 100644 --- a/packages/text-canvas/CHANGELOG.md +++ b/packages/text-canvas/CHANGELOG.md @@ -3,30 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.1.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/text-canvas@1.1.2...@thi.ng/text-canvas@1.1.3) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/text-canvas - - - - - -## [1.1.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/text-canvas@1.1.1...@thi.ng/text-canvas@1.1.2) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/text-canvas - - - - - -## [1.1.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/text-canvas@1.1.0...@thi.ng/text-canvas@1.1.1) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/text-canvas - - - - - # [1.1.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/text-canvas@1.0.3...@thi.ng/text-canvas@1.1.0) (2021-08-13) @@ -38,30 +14,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline -## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/text-canvas@1.0.2...@thi.ng/text-canvas@1.0.3) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/text-canvas - - - - - -## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/text-canvas@1.0.1...@thi.ng/text-canvas@1.0.2) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/text-canvas - - - - - -## [1.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/text-canvas@0.7.14...@thi.ng/text-canvas@1.0.1) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/text-canvas - - - - - ## [0.7.14](https://github.com/thi-ng/umbrella/compare/@thi.ng/text-canvas@0.7.13...@thi.ng/text-canvas@0.7.14) (2021-08-07) @@ -73,46 +25,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline -## [0.7.13](https://github.com/thi-ng/umbrella/compare/@thi.ng/text-canvas@0.7.12...@thi.ng/text-canvas@0.7.13) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/text-canvas - - - - - -## [0.7.12](https://github.com/thi-ng/umbrella/compare/@thi.ng/text-canvas@0.7.11...@thi.ng/text-canvas@0.7.12) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/text-canvas - - - - - -## [0.7.11](https://github.com/thi-ng/umbrella/compare/@thi.ng/text-canvas@0.7.10...@thi.ng/text-canvas@0.7.11) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/text-canvas - - - - - -## [0.7.10](https://github.com/thi-ng/umbrella/compare/@thi.ng/text-canvas@0.7.9...@thi.ng/text-canvas@0.7.10) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/text-canvas - - - - - -## [0.7.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/text-canvas@0.7.8...@thi.ng/text-canvas@0.7.9) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/text-canvas - - - - - ## [0.7.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/text-canvas@0.7.3...@thi.ng/text-canvas@0.7.4) (2021-03-30) diff --git a/packages/transducers-binary/CHANGELOG.md b/packages/transducers-binary/CHANGELOG.md index 88b306009c..84778b54fd 100644 --- a/packages/transducers-binary/CHANGELOG.md +++ b/packages/transducers-binary/CHANGELOG.md @@ -3,86 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-binary@1.0.3...@thi.ng/transducers-binary@1.0.4) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/transducers-binary - - - - - -## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-binary@1.0.2...@thi.ng/transducers-binary@1.0.3) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/transducers-binary - - - - - -## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-binary@1.0.1...@thi.ng/transducers-binary@1.0.2) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/transducers-binary - - - - - -## [1.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-binary@0.6.25...@thi.ng/transducers-binary@1.0.1) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/transducers-binary - - - - - -## [0.6.25](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-binary@0.6.24...@thi.ng/transducers-binary@0.6.25) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/transducers-binary - - - - - -## [0.6.24](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-binary@0.6.23...@thi.ng/transducers-binary@0.6.24) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/transducers-binary - - - - - -## [0.6.23](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-binary@0.6.22...@thi.ng/transducers-binary@0.6.23) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/transducers-binary - - - - - -## [0.6.22](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-binary@0.6.21...@thi.ng/transducers-binary@0.6.22) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/transducers-binary - - - - - -## [0.6.21](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-binary@0.6.20...@thi.ng/transducers-binary@0.6.21) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/transducers-binary - - - - - -## [0.6.20](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-binary@0.6.19...@thi.ng/transducers-binary@0.6.20) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/transducers-binary - - - - - # [0.6.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-binary@0.5.33...@thi.ng/transducers-binary@0.6.0) (2020-12-22) diff --git a/packages/transducers-fsm/CHANGELOG.md b/packages/transducers-fsm/CHANGELOG.md index 76c90eb023..b1f0850128 100644 --- a/packages/transducers-fsm/CHANGELOG.md +++ b/packages/transducers-fsm/CHANGELOG.md @@ -3,86 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.1.72](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-fsm@1.1.71...@thi.ng/transducers-fsm@1.1.72) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/transducers-fsm - - - - - -## [1.1.71](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-fsm@1.1.70...@thi.ng/transducers-fsm@1.1.71) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/transducers-fsm - - - - - -## [1.1.70](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-fsm@1.1.69...@thi.ng/transducers-fsm@1.1.70) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/transducers-fsm - - - - - -## [1.1.69](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-fsm@1.1.68...@thi.ng/transducers-fsm@1.1.69) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/transducers-fsm - - - - - -## [1.1.68](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-fsm@1.1.67...@thi.ng/transducers-fsm@1.1.68) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/transducers-fsm - - - - - -## [1.1.67](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-fsm@1.1.66...@thi.ng/transducers-fsm@1.1.67) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/transducers-fsm - - - - - -## [1.1.66](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-fsm@1.1.65...@thi.ng/transducers-fsm@1.1.66) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/transducers-fsm - - - - - -## [1.1.65](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-fsm@1.1.64...@thi.ng/transducers-fsm@1.1.65) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/transducers-fsm - - - - - -## [1.1.64](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-fsm@1.1.63...@thi.ng/transducers-fsm@1.1.64) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/transducers-fsm - - - - - -## [1.1.63](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-fsm@1.1.62...@thi.ng/transducers-fsm@1.1.63) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/transducers-fsm - - - - - # [1.1.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-fsm@1.0.19...@thi.ng/transducers-fsm@1.1.0) (2019-07-07) ### Features diff --git a/packages/transducers-hdom/CHANGELOG.md b/packages/transducers-hdom/CHANGELOG.md index 370bac08a7..abac55acff 100644 --- a/packages/transducers-hdom/CHANGELOG.md +++ b/packages/transducers-hdom/CHANGELOG.md @@ -3,86 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [2.0.104](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-hdom@2.0.103...@thi.ng/transducers-hdom@2.0.104) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/transducers-hdom - - - - - -## [2.0.103](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-hdom@2.0.102...@thi.ng/transducers-hdom@2.0.103) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/transducers-hdom - - - - - -## [2.0.102](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-hdom@2.0.101...@thi.ng/transducers-hdom@2.0.102) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/transducers-hdom - - - - - -## [2.0.101](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-hdom@2.0.100...@thi.ng/transducers-hdom@2.0.101) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/transducers-hdom - - - - - -## [2.0.100](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-hdom@2.0.99...@thi.ng/transducers-hdom@2.0.100) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/transducers-hdom - - - - - -## [2.0.99](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-hdom@2.0.98...@thi.ng/transducers-hdom@2.0.99) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/transducers-hdom - - - - - -## [2.0.98](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-hdom@2.0.97...@thi.ng/transducers-hdom@2.0.98) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/transducers-hdom - - - - - -## [2.0.97](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-hdom@2.0.96...@thi.ng/transducers-hdom@2.0.97) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/transducers-hdom - - - - - -## [2.0.96](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-hdom@2.0.95...@thi.ng/transducers-hdom@2.0.96) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/transducers-hdom - - - - - -## [2.0.95](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-hdom@2.0.94...@thi.ng/transducers-hdom@2.0.95) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/transducers-hdom - - - - - # [2.0.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-hdom@1.2.16...@thi.ng/transducers-hdom@2.0.0) (2019-01-21) ### Build System diff --git a/packages/transducers-patch/CHANGELOG.md b/packages/transducers-patch/CHANGELOG.md index 0b1fdf2f14..5950dd97d7 100644 --- a/packages/transducers-patch/CHANGELOG.md +++ b/packages/transducers-patch/CHANGELOG.md @@ -3,86 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [0.2.29](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-patch@0.2.28...@thi.ng/transducers-patch@0.2.29) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/transducers-patch - - - - - -## [0.2.28](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-patch@0.2.27...@thi.ng/transducers-patch@0.2.28) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/transducers-patch - - - - - -## [0.2.27](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-patch@0.2.26...@thi.ng/transducers-patch@0.2.27) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/transducers-patch - - - - - -## [0.2.26](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-patch@0.2.25...@thi.ng/transducers-patch@0.2.26) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/transducers-patch - - - - - -## [0.2.25](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-patch@0.2.24...@thi.ng/transducers-patch@0.2.25) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/transducers-patch - - - - - -## [0.2.24](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-patch@0.2.23...@thi.ng/transducers-patch@0.2.24) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/transducers-patch - - - - - -## [0.2.23](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-patch@0.2.22...@thi.ng/transducers-patch@0.2.23) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/transducers-patch - - - - - -## [0.2.22](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-patch@0.2.21...@thi.ng/transducers-patch@0.2.22) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/transducers-patch - - - - - -## [0.2.21](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-patch@0.2.20...@thi.ng/transducers-patch@0.2.21) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/transducers-patch - - - - - -## [0.2.20](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-patch@0.2.19...@thi.ng/transducers-patch@0.2.20) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/transducers-patch - - - - - # [0.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-patch@0.1.33...@thi.ng/transducers-patch@0.2.0) (2020-12-22) diff --git a/packages/transducers-stats/CHANGELOG.md b/packages/transducers-stats/CHANGELOG.md index a82eceba7f..9329b12832 100644 --- a/packages/transducers-stats/CHANGELOG.md +++ b/packages/transducers-stats/CHANGELOG.md @@ -3,86 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.1.73](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-stats@1.1.72...@thi.ng/transducers-stats@1.1.73) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/transducers-stats - - - - - -## [1.1.72](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-stats@1.1.71...@thi.ng/transducers-stats@1.1.72) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/transducers-stats - - - - - -## [1.1.71](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-stats@1.1.70...@thi.ng/transducers-stats@1.1.71) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/transducers-stats - - - - - -## [1.1.70](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-stats@1.1.69...@thi.ng/transducers-stats@1.1.70) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/transducers-stats - - - - - -## [1.1.69](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-stats@1.1.68...@thi.ng/transducers-stats@1.1.69) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/transducers-stats - - - - - -## [1.1.68](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-stats@1.1.67...@thi.ng/transducers-stats@1.1.68) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/transducers-stats - - - - - -## [1.1.67](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-stats@1.1.66...@thi.ng/transducers-stats@1.1.67) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/transducers-stats - - - - - -## [1.1.66](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-stats@1.1.65...@thi.ng/transducers-stats@1.1.66) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/transducers-stats - - - - - -## [1.1.65](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-stats@1.1.64...@thi.ng/transducers-stats@1.1.65) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/transducers-stats - - - - - -## [1.1.64](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-stats@1.1.63...@thi.ng/transducers-stats@1.1.64) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/transducers-stats - - - - - # [1.1.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-stats@1.0.19...@thi.ng/transducers-stats@1.1.0) (2019-07-07) ### Features diff --git a/packages/transducers/CHANGELOG.md b/packages/transducers/CHANGELOG.md index eadd2402b6..84d9a06ee7 100644 --- a/packages/transducers/CHANGELOG.md +++ b/packages/transducers/CHANGELOG.md @@ -25,38 +25,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline -## [7.8.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers@7.8.3...@thi.ng/transducers@7.8.4) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/transducers - - - - - -## [7.8.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers@7.8.2...@thi.ng/transducers@7.8.3) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/transducers - - - - - -## [7.8.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers@7.8.1...@thi.ng/transducers@7.8.2) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/transducers - - - - - -## [7.8.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers@7.8.0...@thi.ng/transducers@7.8.1) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/transducers - - - - - # [7.8.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers@7.7.5...@thi.ng/transducers@7.8.0) (2021-08-04) @@ -69,30 +37,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline -## [7.7.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers@7.7.4...@thi.ng/transducers@7.7.5) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/transducers - - - - - -## [7.7.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers@7.7.3...@thi.ng/transducers@7.7.4) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/transducers - - - - - -## [7.7.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers@7.7.2...@thi.ng/transducers@7.7.3) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/transducers - - - - - # [7.7.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers@7.6.10...@thi.ng/transducers@7.7.0) (2021-04-07) diff --git a/packages/unionstruct/CHANGELOG.md b/packages/unionstruct/CHANGELOG.md index 9238c3311a..bb593e62f4 100644 --- a/packages/unionstruct/CHANGELOG.md +++ b/packages/unionstruct/CHANGELOG.md @@ -3,46 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.1.40](https://github.com/thi-ng/umbrella/compare/@thi.ng/unionstruct@1.1.39...@thi.ng/unionstruct@1.1.40) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/unionstruct - - - - - -## [1.1.39](https://github.com/thi-ng/umbrella/compare/@thi.ng/unionstruct@1.1.38...@thi.ng/unionstruct@1.1.39) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/unionstruct - - - - - -## [1.1.38](https://github.com/thi-ng/umbrella/compare/@thi.ng/unionstruct@1.1.37...@thi.ng/unionstruct@1.1.38) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/unionstruct - - - - - -## [1.1.37](https://github.com/thi-ng/umbrella/compare/@thi.ng/unionstruct@1.1.36...@thi.ng/unionstruct@1.1.37) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/unionstruct - - - - - -## [1.1.36](https://github.com/thi-ng/umbrella/compare/@thi.ng/unionstruct@1.1.35...@thi.ng/unionstruct@1.1.36) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/unionstruct - - - - - # [1.1.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/unionstruct@1.0.6...@thi.ng/unionstruct@1.1.0) (2019-07-07) ### Bug Fixes diff --git a/packages/vclock/CHANGELOG.md b/packages/vclock/CHANGELOG.md index d9ce424065..d47f51dc9f 100644 --- a/packages/vclock/CHANGELOG.md +++ b/packages/vclock/CHANGELOG.md @@ -3,54 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [0.1.15](https://github.com/thi-ng/umbrella/compare/@thi.ng/vclock@0.1.14...@thi.ng/vclock@0.1.15) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/vclock - - - - - -## [0.1.14](https://github.com/thi-ng/umbrella/compare/@thi.ng/vclock@0.1.13...@thi.ng/vclock@0.1.14) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/vclock - - - - - -## [0.1.13](https://github.com/thi-ng/umbrella/compare/@thi.ng/vclock@0.1.12...@thi.ng/vclock@0.1.13) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/vclock - - - - - -## [0.1.12](https://github.com/thi-ng/umbrella/compare/@thi.ng/vclock@0.1.11...@thi.ng/vclock@0.1.12) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/vclock - - - - - -## [0.1.11](https://github.com/thi-ng/umbrella/compare/@thi.ng/vclock@0.1.10...@thi.ng/vclock@0.1.11) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/vclock - - - - - -## [0.1.10](https://github.com/thi-ng/umbrella/compare/@thi.ng/vclock@0.1.9...@thi.ng/vclock@0.1.10) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/vclock - - - - - # 0.1.0 (2020-11-26) diff --git a/packages/vector-pools/CHANGELOG.md b/packages/vector-pools/CHANGELOG.md index 14dbbb311a..57ce578256 100644 --- a/packages/vector-pools/CHANGELOG.md +++ b/packages/vector-pools/CHANGELOG.md @@ -3,86 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [2.0.24](https://github.com/thi-ng/umbrella/compare/@thi.ng/vector-pools@2.0.23...@thi.ng/vector-pools@2.0.24) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/vector-pools - - - - - -## [2.0.23](https://github.com/thi-ng/umbrella/compare/@thi.ng/vector-pools@2.0.22...@thi.ng/vector-pools@2.0.23) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/vector-pools - - - - - -## [2.0.22](https://github.com/thi-ng/umbrella/compare/@thi.ng/vector-pools@2.0.21...@thi.ng/vector-pools@2.0.22) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/vector-pools - - - - - -## [2.0.21](https://github.com/thi-ng/umbrella/compare/@thi.ng/vector-pools@2.0.20...@thi.ng/vector-pools@2.0.21) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/vector-pools - - - - - -## [2.0.20](https://github.com/thi-ng/umbrella/compare/@thi.ng/vector-pools@2.0.19...@thi.ng/vector-pools@2.0.20) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/vector-pools - - - - - -## [2.0.19](https://github.com/thi-ng/umbrella/compare/@thi.ng/vector-pools@2.0.18...@thi.ng/vector-pools@2.0.19) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/vector-pools - - - - - -## [2.0.18](https://github.com/thi-ng/umbrella/compare/@thi.ng/vector-pools@2.0.17...@thi.ng/vector-pools@2.0.18) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/vector-pools - - - - - -## [2.0.17](https://github.com/thi-ng/umbrella/compare/@thi.ng/vector-pools@2.0.16...@thi.ng/vector-pools@2.0.17) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/vector-pools - - - - - -## [2.0.16](https://github.com/thi-ng/umbrella/compare/@thi.ng/vector-pools@2.0.15...@thi.ng/vector-pools@2.0.16) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/vector-pools - - - - - -## [2.0.15](https://github.com/thi-ng/umbrella/compare/@thi.ng/vector-pools@2.0.14...@thi.ng/vector-pools@2.0.15) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/vector-pools - - - - - # [2.0.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/vector-pools@1.0.57...@thi.ng/vector-pools@2.0.0) (2021-02-20) diff --git a/packages/vectors/CHANGELOG.md b/packages/vectors/CHANGELOG.md index 27fe84892d..ef8e7a3def 100644 --- a/packages/vectors/CHANGELOG.md +++ b/packages/vectors/CHANGELOG.md @@ -3,22 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [6.1.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/vectors@6.1.1...@thi.ng/vectors@6.1.2) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/vectors - - - - - -## [6.1.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/vectors@6.1.0...@thi.ng/vectors@6.1.1) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/vectors - - - - - # [6.1.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/vectors@6.0.7...@thi.ng/vectors@6.1.0) (2021-08-17) @@ -31,54 +15,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline -## [6.0.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/vectors@6.0.6...@thi.ng/vectors@6.0.7) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/vectors - - - - - -## [6.0.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/vectors@6.0.5...@thi.ng/vectors@6.0.6) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/vectors - - - - - -## [6.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/vectors@6.0.4...@thi.ng/vectors@6.0.5) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/vectors - - - - - -## [6.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/vectors@6.0.3...@thi.ng/vectors@6.0.4) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/vectors - - - - - -## [6.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/vectors@6.0.2...@thi.ng/vectors@6.0.3) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/vectors - - - - - -## [6.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/vectors@6.0.1...@thi.ng/vectors@6.0.2) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/vectors - - - - - ## [6.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/vectors@6.0.0...@thi.ng/vectors@6.0.1) (2021-06-08) diff --git a/packages/viz/CHANGELOG.md b/packages/viz/CHANGELOG.md index 19181a2eb8..9afea66504 100644 --- a/packages/viz/CHANGELOG.md +++ b/packages/viz/CHANGELOG.md @@ -3,94 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [0.2.40](https://github.com/thi-ng/umbrella/compare/@thi.ng/viz@0.2.39...@thi.ng/viz@0.2.40) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/viz - - - - - -## [0.2.39](https://github.com/thi-ng/umbrella/compare/@thi.ng/viz@0.2.38...@thi.ng/viz@0.2.39) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/viz - - - - - -## [0.2.38](https://github.com/thi-ng/umbrella/compare/@thi.ng/viz@0.2.37...@thi.ng/viz@0.2.38) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/viz - - - - - -## [0.2.37](https://github.com/thi-ng/umbrella/compare/@thi.ng/viz@0.2.36...@thi.ng/viz@0.2.37) (2021-08-09) - -**Note:** Version bump only for package @thi.ng/viz - - - - - -## [0.2.36](https://github.com/thi-ng/umbrella/compare/@thi.ng/viz@0.2.35...@thi.ng/viz@0.2.36) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/viz - - - - - -## [0.2.35](https://github.com/thi-ng/umbrella/compare/@thi.ng/viz@0.2.34...@thi.ng/viz@0.2.35) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/viz - - - - - -## [0.2.34](https://github.com/thi-ng/umbrella/compare/@thi.ng/viz@0.2.33...@thi.ng/viz@0.2.34) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/viz - - - - - -## [0.2.33](https://github.com/thi-ng/umbrella/compare/@thi.ng/viz@0.2.32...@thi.ng/viz@0.2.33) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/viz - - - - - -## [0.2.32](https://github.com/thi-ng/umbrella/compare/@thi.ng/viz@0.2.31...@thi.ng/viz@0.2.32) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/viz - - - - - -## [0.2.31](https://github.com/thi-ng/umbrella/compare/@thi.ng/viz@0.2.30...@thi.ng/viz@0.2.31) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/viz - - - - - -## [0.2.30](https://github.com/thi-ng/umbrella/compare/@thi.ng/viz@0.2.29...@thi.ng/viz@0.2.30) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/viz - - - - - # [0.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/viz@0.1.2...@thi.ng/viz@0.2.0) (2020-11-24) diff --git a/packages/webgl-msdf/CHANGELOG.md b/packages/webgl-msdf/CHANGELOG.md index a42cfb9cf0..dc05d6c923 100644 --- a/packages/webgl-msdf/CHANGELOG.md +++ b/packages/webgl-msdf/CHANGELOG.md @@ -3,110 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.0.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl-msdf@1.0.5...@thi.ng/webgl-msdf@1.0.6) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/webgl-msdf - - - - - -## [1.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl-msdf@1.0.4...@thi.ng/webgl-msdf@1.0.5) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/webgl-msdf - - - - - -## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl-msdf@1.0.3...@thi.ng/webgl-msdf@1.0.4) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/webgl-msdf - - - - - -## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl-msdf@1.0.2...@thi.ng/webgl-msdf@1.0.3) (2021-08-13) - -**Note:** Version bump only for package @thi.ng/webgl-msdf - - - - - -## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl-msdf@1.0.1...@thi.ng/webgl-msdf@1.0.2) (2021-08-09) - -**Note:** Version bump only for package @thi.ng/webgl-msdf - - - - - -## [1.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl-msdf@0.1.96...@thi.ng/webgl-msdf@1.0.1) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/webgl-msdf - - - - - -## [0.1.96](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl-msdf@0.1.95...@thi.ng/webgl-msdf@0.1.96) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/webgl-msdf - - - - - -## [0.1.95](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl-msdf@0.1.94...@thi.ng/webgl-msdf@0.1.95) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/webgl-msdf - - - - - -## [0.1.94](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl-msdf@0.1.93...@thi.ng/webgl-msdf@0.1.94) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/webgl-msdf - - - - - -## [0.1.93](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl-msdf@0.1.92...@thi.ng/webgl-msdf@0.1.93) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/webgl-msdf - - - - - -## [0.1.92](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl-msdf@0.1.91...@thi.ng/webgl-msdf@0.1.92) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/webgl-msdf - - - - - -## [0.1.91](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl-msdf@0.1.90...@thi.ng/webgl-msdf@0.1.91) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/webgl-msdf - - - - - -## [0.1.90](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl-msdf@0.1.89...@thi.ng/webgl-msdf@0.1.90) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/webgl-msdf - - - - - ## [0.1.10](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl-msdf@0.1.9...@thi.ng/webgl-msdf@0.1.10) (2019-11-30) ### Bug Fixes diff --git a/packages/webgl-shadertoy/CHANGELOG.md b/packages/webgl-shadertoy/CHANGELOG.md index 0070048f9b..5d29c77e65 100644 --- a/packages/webgl-shadertoy/CHANGELOG.md +++ b/packages/webgl-shadertoy/CHANGELOG.md @@ -3,110 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [0.2.89](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl-shadertoy@0.2.88...@thi.ng/webgl-shadertoy@0.2.89) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/webgl-shadertoy - - - - - -## [0.2.88](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl-shadertoy@0.2.87...@thi.ng/webgl-shadertoy@0.2.88) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/webgl-shadertoy - - - - - -## [0.2.87](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl-shadertoy@0.2.86...@thi.ng/webgl-shadertoy@0.2.87) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/webgl-shadertoy - - - - - -## [0.2.86](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl-shadertoy@0.2.85...@thi.ng/webgl-shadertoy@0.2.86) (2021-08-13) - -**Note:** Version bump only for package @thi.ng/webgl-shadertoy - - - - - -## [0.2.85](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl-shadertoy@0.2.84...@thi.ng/webgl-shadertoy@0.2.85) (2021-08-09) - -**Note:** Version bump only for package @thi.ng/webgl-shadertoy - - - - - -## [0.2.84](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl-shadertoy@0.2.83...@thi.ng/webgl-shadertoy@0.2.84) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/webgl-shadertoy - - - - - -## [0.2.83](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl-shadertoy@0.2.82...@thi.ng/webgl-shadertoy@0.2.83) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/webgl-shadertoy - - - - - -## [0.2.82](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl-shadertoy@0.2.81...@thi.ng/webgl-shadertoy@0.2.82) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/webgl-shadertoy - - - - - -## [0.2.81](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl-shadertoy@0.2.80...@thi.ng/webgl-shadertoy@0.2.81) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/webgl-shadertoy - - - - - -## [0.2.80](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl-shadertoy@0.2.79...@thi.ng/webgl-shadertoy@0.2.80) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/webgl-shadertoy - - - - - -## [0.2.79](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl-shadertoy@0.2.78...@thi.ng/webgl-shadertoy@0.2.79) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/webgl-shadertoy - - - - - -## [0.2.78](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl-shadertoy@0.2.77...@thi.ng/webgl-shadertoy@0.2.78) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/webgl-shadertoy - - - - - -## [0.2.77](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl-shadertoy@0.2.76...@thi.ng/webgl-shadertoy@0.2.77) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/webgl-shadertoy - - - - - # [0.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl-shadertoy@0.1.4...@thi.ng/webgl-shadertoy@0.2.0) (2020-02-25) diff --git a/packages/webgl/CHANGELOG.md b/packages/webgl/CHANGELOG.md index d87eb4577c..a1d5a06f95 100644 --- a/packages/webgl/CHANGELOG.md +++ b/packages/webgl/CHANGELOG.md @@ -3,102 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [5.0.12](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl@5.0.11...@thi.ng/webgl@5.0.12) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/webgl - - - - - -## [5.0.11](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl@5.0.10...@thi.ng/webgl@5.0.11) (2021-08-19) - -**Note:** Version bump only for package @thi.ng/webgl - - - - - -## [5.0.10](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl@5.0.9...@thi.ng/webgl@5.0.10) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/webgl - - - - - -## [5.0.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl@5.0.8...@thi.ng/webgl@5.0.9) (2021-08-13) - -**Note:** Version bump only for package @thi.ng/webgl - - - - - -## [5.0.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl@5.0.7...@thi.ng/webgl@5.0.8) (2021-08-09) - -**Note:** Version bump only for package @thi.ng/webgl - - - - - -## [5.0.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl@5.0.6...@thi.ng/webgl@5.0.7) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/webgl - - - - - -## [5.0.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl@5.0.5...@thi.ng/webgl@5.0.6) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/webgl - - - - - -## [5.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl@5.0.4...@thi.ng/webgl@5.0.5) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/webgl - - - - - -## [5.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl@5.0.3...@thi.ng/webgl@5.0.4) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/webgl - - - - - -## [5.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl@5.0.2...@thi.ng/webgl@5.0.3) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/webgl - - - - - -## [5.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl@5.0.1...@thi.ng/webgl@5.0.2) (2021-07-27) - -**Note:** Version bump only for package @thi.ng/webgl - - - - - -## [5.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl@5.0.0...@thi.ng/webgl@5.0.1) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/webgl - - - - - # [5.0.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl@4.0.16...@thi.ng/webgl@5.0.0) (2021-06-08) diff --git a/packages/zipper/CHANGELOG.md b/packages/zipper/CHANGELOG.md index 347def27c1..7dc5672619 100644 --- a/packages/zipper/CHANGELOG.md +++ b/packages/zipper/CHANGELOG.md @@ -3,62 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/zipper@1.0.1...@thi.ng/zipper@1.0.2) (2021-08-17) - -**Note:** Version bump only for package @thi.ng/zipper - - - - - -## [1.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/zipper@0.1.50...@thi.ng/zipper@1.0.1) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/zipper - - - - - -## [0.1.50](https://github.com/thi-ng/umbrella/compare/@thi.ng/zipper@0.1.49...@thi.ng/zipper@0.1.50) (2021-08-08) - -**Note:** Version bump only for package @thi.ng/zipper - - - - - -## [0.1.49](https://github.com/thi-ng/umbrella/compare/@thi.ng/zipper@0.1.48...@thi.ng/zipper@0.1.49) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/zipper - - - - - -## [0.1.48](https://github.com/thi-ng/umbrella/compare/@thi.ng/zipper@0.1.47...@thi.ng/zipper@0.1.48) (2021-08-04) - -**Note:** Version bump only for package @thi.ng/zipper - - - - - -## [0.1.47](https://github.com/thi-ng/umbrella/compare/@thi.ng/zipper@0.1.46...@thi.ng/zipper@0.1.47) (2021-07-01) - -**Note:** Version bump only for package @thi.ng/zipper - - - - - -## [0.1.46](https://github.com/thi-ng/umbrella/compare/@thi.ng/zipper@0.1.45...@thi.ng/zipper@0.1.46) (2021-06-08) - -**Note:** Version bump only for package @thi.ng/zipper - - - - - # 0.1.0 (2019-11-30) ### Features From eba439491afd191c2d5aecb99fb8b5c264f32138 Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Thu, 19 Aug 2021 17:18:09 +0200 Subject: [PATCH 12/76] feat(tools): add tool:prune alias --- package.json | 1 + tools/src/prune-changelogs.ts | 10 ++++++++++ 2 files changed, 11 insertions(+) create mode 100644 tools/src/prune-changelogs.ts diff --git a/package.json b/package.json index f7c7496d83..cbeabe954f 100644 --- a/package.json +++ b/package.json @@ -55,6 +55,7 @@ "tool:deps": "ts-node -P tools/tsconfig.json tools/src/adjacency.ts", "tool:imports": "ts-node -P tools/tsconfig.json tools/src/check-imports.ts", "tool:exports": "ts-node -P tools/tsconfig.json tools/src/check-exports.ts", + "tool:prune": "ts-node -P tools/tsconfig.json tools/src/prune-changelogs.ts", "tool:searchindex": "ts-node -P tools/tsconfig.json tools/src/build-search-index.ts" }, "resolutions": { diff --git a/tools/src/prune-changelogs.ts b/tools/src/prune-changelogs.ts new file mode 100644 index 0000000000..7774314a5c --- /dev/null +++ b/tools/src/prune-changelogs.ts @@ -0,0 +1,10 @@ +import { files, readText } from "./io"; +import { writeFileSync } from "fs"; + +const RE = + /## \[[0-9.]+\].+$\n\n\*\*Note:\*\* Version bump only for package.*$\n{6}/gm; + +for (let f of files("packages", "CHANGELOG.md")) { + console.log(f); + writeFileSync(f, readText(f).replace(RE, "")); +} From d1ffbb0838e9a77cfaae75955901792c6bad1ee8 Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Thu, 19 Aug 2021 18:57:28 +0200 Subject: [PATCH 13/76] feat(tools): update files() iter & prune tool --- tools/src/io.ts | 16 ++++++++++------ tools/src/prune-changelogs.ts | 8 ++++++-- 2 files changed, 16 insertions(+), 8 deletions(-) diff --git a/tools/src/io.ts b/tools/src/io.ts index 643d383ab1..06e62b9beb 100644 --- a/tools/src/io.ts +++ b/tools/src/io.ts @@ -1,3 +1,4 @@ +import { isString } from "@thi.ng/checks"; import { readdirSync, readFileSync, statSync } from "fs"; export const readJSON = (path: string) => JSON.parse(readFileSync(path)); @@ -5,27 +6,30 @@ export const readJSON = (path: string) => JSON.parse(readFileSync(path)); export const readText = (path: string) => readFileSync(path).toString(); /** - * Recursively reads given directory and returns file names matching - * given extension. + * Recursively reads given directory and yields sequence of file names matching + * given extension (or regexp). * * @param dir - * @param ext + * @param match * @param maxDepth * @param depth */ export function* files( dir: string, - ext: string, + match: string | RegExp, maxDepth = Infinity, depth = 0 ): IterableIterator { if (depth >= maxDepth) return; + const re = isString(match) + ? new RegExp(`${match.replace(/\./g, "\\.")}$`) + : match; for (let f of readdirSync(dir)) { const curr = dir + "/" + f; - if (f.endsWith(ext)) { + if (re.test(f)) { yield curr; } else if (statSync(curr).isDirectory()) { - yield* files(curr, ext, maxDepth, depth + 1); + yield* files(curr, match, maxDepth, depth + 1); } } } diff --git a/tools/src/prune-changelogs.ts b/tools/src/prune-changelogs.ts index 7774314a5c..0574668cd4 100644 --- a/tools/src/prune-changelogs.ts +++ b/tools/src/prune-changelogs.ts @@ -5,6 +5,10 @@ const RE = /## \[[0-9.]+\].+$\n\n\*\*Note:\*\* Version bump only for package.*$\n{6}/gm; for (let f of files("packages", "CHANGELOG.md")) { - console.log(f); - writeFileSync(f, readText(f).replace(RE, "")); + const src = readText(f); + const dest = src.replace(RE, ""); + if (dest !== src) { + console.log("pruning:", f); + writeFileSync(f, dest); + } } From 9d1bb17b4373a0cbe43705a41a4cbce353999c7e Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Sat, 21 Aug 2021 15:27:21 +0200 Subject: [PATCH 14/76] feat(color-palettes): add as new pkg, add assets & swatch gen --- assets/color-palettes/00ORLwKeosxtEeZxq.svg | 1 + assets/color-palettes/00PhEgF9AlI5PTrLB.svg | 1 + assets/color-palettes/00PhGSfzpeU5Bkh47-2.svg | 1 + assets/color-palettes/00PhGSfzpeU5Bkh47a.svg | 1 + assets/color-palettes/00QLNIKFhjs5rJCjr.svg | 1 + assets/color-palettes/00QLcP0k2fPAz0KHR.svg | 1 + assets/color-palettes/00QLfPj2trTnyJHAg.svg | 1 + assets/color-palettes/00QLfPkuNx1jE7sMm.svg | 1 + assets/color-palettes/00QLfPm4UfkMiaicq.svg | 1 + assets/color-palettes/00QLj3Yj1pUNnTKVY.svg | 1 + assets/color-palettes/00QLj3fsFErIl5W0b.svg | 1 + assets/color-palettes/00QLn7G59JhKtuUs0.svg | 1 + assets/color-palettes/00QLn7Lr9V98YD0zY.svg | 1 + assets/color-palettes/00QLn7XfPKvMKCrzO.svg | 1 + assets/color-palettes/00QLqYQ3HE1oy3ByI.svg | 1 + assets/color-palettes/00QLqYS2ZOgkMeMAE.svg | 1 + assets/color-palettes/00QLslJAGNA8YREKh.svg | 1 + assets/color-palettes/00QMA8RhpXdgwPtLn.svg | 1 + assets/color-palettes/00QMA8SkIwjW5KEch.svg | 1 + assets/color-palettes/00QMA8h2BH69zyEk0.svg | 1 + assets/color-palettes/00QMA8tedClukB7IL.svg | 1 + assets/color-palettes/00QMEZVdDC6dMYpjp.svg | 1 + assets/color-palettes/00QMEZazmZG85DaWw.svg | 1 + assets/color-palettes/00QMEZb0EorAC0k7y.svg | 1 + assets/color-palettes/00QMEZgMsSVZavaNd.svg | 1 + assets/color-palettes/00QMEZl7ulP3f2WaX.svg | 1 + assets/color-palettes/00QMEZzTrk06iVgaK.svg | 1 + assets/color-palettes/00QMKP9yh8XlJYcgM.svg | 1 + assets/color-palettes/00QMSRoDq0SDYprak.svg | 1 + assets/color-palettes/00QMSRqFlj9B8ayZW.svg | 1 + assets/color-palettes/00QMSSCjsJpojbpYz.svg | 1 + assets/color-palettes/00QMSSEJXJOUdMoSj.svg | 1 + assets/color-palettes/00QMxescYuh8eYT39.svg | 1 + assets/color-palettes/00QN31G5AB2FTftCe.svg | 1 + assets/color-palettes/00QN49h9BAkHHyKJh.svg | 1 + assets/color-palettes/00RB4I684QFqc2HAM.svg | 1 + assets/color-palettes/00RB4I6NRn6CF3oS0.svg | 1 + assets/color-palettes/00RB4I89XiwNSlobH.svg | 1 + assets/color-palettes/00RB4IFxoIYII3Cqi.svg | 1 + assets/color-palettes/00RGly9mkWt6i3suL-2.svg | 1 + assets/color-palettes/00RGly9mkWt6i3suL.svg | 1 + assets/color-palettes/00RGly9mkWt6i3suLa.svg | 1 + assets/color-palettes/00RGlyFVinQl5cj21.svg | 1 + assets/color-palettes/00RGlyJwY9q4Sh0tQ.svg | 1 + assets/color-palettes/00RGlyLkqOmPmbuX6.svg | 1 + assets/color-palettes/00RTRDAqmTEarmyeR.svg | 1 + assets/color-palettes/00RTRDIRDbnErAXHV.svg | 1 + assets/color-palettes/00RTRDIzyUse2qJ9N.svg | 1 + assets/color-palettes/00RTRDNL7MjHkDys4.svg | 1 + assets/color-palettes/00RTRDOtbFF8KFNH9.svg | 1 + assets/color-palettes/00RYyJ25i8zFwOJGh.svg | 1 + assets/color-palettes/00RYyJ4jHYfMF6yfy.svg | 1 + assets/color-palettes/00RYyJDsTKzsBBgCO.svg | 1 + assets/color-palettes/00RlTJrw94KFOF3zL.svg | 1 + assets/color-palettes/00RlTJxJZ16ivgKBw.svg | 1 + assets/color-palettes/00RnZfzWN7Ewml76I.svg | 1 + assets/color-palettes/00T2A6qx5VScIQ9bU.svg | 1 + assets/color-palettes/00UWNvEkTsOF0aQHh.svg | 1 + assets/color-palettes/00bYah8QOLZNgszuV.svg | 1 + assets/color-palettes/00bYahDYU6E7wDJwL.svg | 1 + assets/color-palettes/00bYcivY8Jqx8nsiR.svg | 1 + assets/color-palettes/00bYcixZkofJhLJ8w.svg | 1 + assets/color-palettes/00bYcj4uvi0NIlqyw.svg | 1 + assets/color-palettes/00bYcjDCylnf3k1aB.svg | 1 + assets/color-palettes/00g3JvJ0ZydpXXvEC.svg | 1 + packages/color-palettes/LICENSE | 201 +++++++ packages/color-palettes/README.md | 158 ++++++ packages/color-palettes/api-extractor.json | 3 + packages/color-palettes/package.json | 66 +++ packages/color-palettes/src/index.ts | 506 ++++++++++++++++++ packages/color-palettes/test/index.ts | 6 + packages/color-palettes/test/tsconfig.json | 11 + packages/color-palettes/tools/index.ts | 125 +++++ packages/color-palettes/tools/tsconfig.json | 10 + packages/color-palettes/tpl.readme.md | 132 +++++ packages/color-palettes/tsconfig.json | 9 + 76 files changed, 1292 insertions(+) create mode 100644 assets/color-palettes/00ORLwKeosxtEeZxq.svg create mode 100644 assets/color-palettes/00PhEgF9AlI5PTrLB.svg create mode 100644 assets/color-palettes/00PhGSfzpeU5Bkh47-2.svg create mode 100644 assets/color-palettes/00PhGSfzpeU5Bkh47a.svg create mode 100644 assets/color-palettes/00QLNIKFhjs5rJCjr.svg create mode 100644 assets/color-palettes/00QLcP0k2fPAz0KHR.svg create mode 100644 assets/color-palettes/00QLfPj2trTnyJHAg.svg create mode 100644 assets/color-palettes/00QLfPkuNx1jE7sMm.svg create mode 100644 assets/color-palettes/00QLfPm4UfkMiaicq.svg create mode 100644 assets/color-palettes/00QLj3Yj1pUNnTKVY.svg create mode 100644 assets/color-palettes/00QLj3fsFErIl5W0b.svg create mode 100644 assets/color-palettes/00QLn7G59JhKtuUs0.svg create mode 100644 assets/color-palettes/00QLn7Lr9V98YD0zY.svg create mode 100644 assets/color-palettes/00QLn7XfPKvMKCrzO.svg create mode 100644 assets/color-palettes/00QLqYQ3HE1oy3ByI.svg create mode 100644 assets/color-palettes/00QLqYS2ZOgkMeMAE.svg create mode 100644 assets/color-palettes/00QLslJAGNA8YREKh.svg create mode 100644 assets/color-palettes/00QMA8RhpXdgwPtLn.svg create mode 100644 assets/color-palettes/00QMA8SkIwjW5KEch.svg create mode 100644 assets/color-palettes/00QMA8h2BH69zyEk0.svg create mode 100644 assets/color-palettes/00QMA8tedClukB7IL.svg create mode 100644 assets/color-palettes/00QMEZVdDC6dMYpjp.svg create mode 100644 assets/color-palettes/00QMEZazmZG85DaWw.svg create mode 100644 assets/color-palettes/00QMEZb0EorAC0k7y.svg create mode 100644 assets/color-palettes/00QMEZgMsSVZavaNd.svg create mode 100644 assets/color-palettes/00QMEZl7ulP3f2WaX.svg create mode 100644 assets/color-palettes/00QMEZzTrk06iVgaK.svg create mode 100644 assets/color-palettes/00QMKP9yh8XlJYcgM.svg create mode 100644 assets/color-palettes/00QMSRoDq0SDYprak.svg create mode 100644 assets/color-palettes/00QMSRqFlj9B8ayZW.svg create mode 100644 assets/color-palettes/00QMSSCjsJpojbpYz.svg create mode 100644 assets/color-palettes/00QMSSEJXJOUdMoSj.svg create mode 100644 assets/color-palettes/00QMxescYuh8eYT39.svg create mode 100644 assets/color-palettes/00QN31G5AB2FTftCe.svg create mode 100644 assets/color-palettes/00QN49h9BAkHHyKJh.svg create mode 100644 assets/color-palettes/00RB4I684QFqc2HAM.svg create mode 100644 assets/color-palettes/00RB4I6NRn6CF3oS0.svg create mode 100644 assets/color-palettes/00RB4I89XiwNSlobH.svg create mode 100644 assets/color-palettes/00RB4IFxoIYII3Cqi.svg create mode 100644 assets/color-palettes/00RGly9mkWt6i3suL-2.svg create mode 100644 assets/color-palettes/00RGly9mkWt6i3suL.svg create mode 100644 assets/color-palettes/00RGly9mkWt6i3suLa.svg create mode 100644 assets/color-palettes/00RGlyFVinQl5cj21.svg create mode 100644 assets/color-palettes/00RGlyJwY9q4Sh0tQ.svg create mode 100644 assets/color-palettes/00RGlyLkqOmPmbuX6.svg create mode 100644 assets/color-palettes/00RTRDAqmTEarmyeR.svg create mode 100644 assets/color-palettes/00RTRDIRDbnErAXHV.svg create mode 100644 assets/color-palettes/00RTRDIzyUse2qJ9N.svg create mode 100644 assets/color-palettes/00RTRDNL7MjHkDys4.svg create mode 100644 assets/color-palettes/00RTRDOtbFF8KFNH9.svg create mode 100644 assets/color-palettes/00RYyJ25i8zFwOJGh.svg create mode 100644 assets/color-palettes/00RYyJ4jHYfMF6yfy.svg create mode 100644 assets/color-palettes/00RYyJDsTKzsBBgCO.svg create mode 100644 assets/color-palettes/00RlTJrw94KFOF3zL.svg create mode 100644 assets/color-palettes/00RlTJxJZ16ivgKBw.svg create mode 100644 assets/color-palettes/00RnZfzWN7Ewml76I.svg create mode 100644 assets/color-palettes/00T2A6qx5VScIQ9bU.svg create mode 100644 assets/color-palettes/00UWNvEkTsOF0aQHh.svg create mode 100644 assets/color-palettes/00bYah8QOLZNgszuV.svg create mode 100644 assets/color-palettes/00bYahDYU6E7wDJwL.svg create mode 100644 assets/color-palettes/00bYcivY8Jqx8nsiR.svg create mode 100644 assets/color-palettes/00bYcixZkofJhLJ8w.svg create mode 100644 assets/color-palettes/00bYcj4uvi0NIlqyw.svg create mode 100644 assets/color-palettes/00bYcjDCylnf3k1aB.svg create mode 100644 assets/color-palettes/00g3JvJ0ZydpXXvEC.svg create mode 100644 packages/color-palettes/LICENSE create mode 100644 packages/color-palettes/README.md create mode 100644 packages/color-palettes/api-extractor.json create mode 100644 packages/color-palettes/package.json create mode 100644 packages/color-palettes/src/index.ts create mode 100644 packages/color-palettes/test/index.ts create mode 100644 packages/color-palettes/test/tsconfig.json create mode 100644 packages/color-palettes/tools/index.ts create mode 100644 packages/color-palettes/tools/tsconfig.json create mode 100644 packages/color-palettes/tpl.readme.md create mode 100644 packages/color-palettes/tsconfig.json diff --git a/assets/color-palettes/00ORLwKeosxtEeZxq.svg b/assets/color-palettes/00ORLwKeosxtEeZxq.svg new file mode 100644 index 0000000000..b647a732e7 --- /dev/null +++ b/assets/color-palettes/00ORLwKeosxtEeZxq.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00PhEgF9AlI5PTrLB.svg b/assets/color-palettes/00PhEgF9AlI5PTrLB.svg new file mode 100644 index 0000000000..7309966431 --- /dev/null +++ b/assets/color-palettes/00PhEgF9AlI5PTrLB.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00PhGSfzpeU5Bkh47-2.svg b/assets/color-palettes/00PhGSfzpeU5Bkh47-2.svg new file mode 100644 index 0000000000..248b92df1c --- /dev/null +++ b/assets/color-palettes/00PhGSfzpeU5Bkh47-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00PhGSfzpeU5Bkh47a.svg b/assets/color-palettes/00PhGSfzpeU5Bkh47a.svg new file mode 100644 index 0000000000..248b92df1c --- /dev/null +++ b/assets/color-palettes/00PhGSfzpeU5Bkh47a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00QLNIKFhjs5rJCjr.svg b/assets/color-palettes/00QLNIKFhjs5rJCjr.svg new file mode 100644 index 0000000000..391a0b9fc7 --- /dev/null +++ b/assets/color-palettes/00QLNIKFhjs5rJCjr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00QLcP0k2fPAz0KHR.svg b/assets/color-palettes/00QLcP0k2fPAz0KHR.svg new file mode 100644 index 0000000000..0056e2eb3a --- /dev/null +++ b/assets/color-palettes/00QLcP0k2fPAz0KHR.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00QLfPj2trTnyJHAg.svg b/assets/color-palettes/00QLfPj2trTnyJHAg.svg new file mode 100644 index 0000000000..267d479837 --- /dev/null +++ b/assets/color-palettes/00QLfPj2trTnyJHAg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00QLfPkuNx1jE7sMm.svg b/assets/color-palettes/00QLfPkuNx1jE7sMm.svg new file mode 100644 index 0000000000..5baa44fa9a --- /dev/null +++ b/assets/color-palettes/00QLfPkuNx1jE7sMm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00QLfPm4UfkMiaicq.svg b/assets/color-palettes/00QLfPm4UfkMiaicq.svg new file mode 100644 index 0000000000..5e51ab0e01 --- /dev/null +++ b/assets/color-palettes/00QLfPm4UfkMiaicq.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00QLj3Yj1pUNnTKVY.svg b/assets/color-palettes/00QLj3Yj1pUNnTKVY.svg new file mode 100644 index 0000000000..e099bdfd7f --- /dev/null +++ b/assets/color-palettes/00QLj3Yj1pUNnTKVY.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00QLj3fsFErIl5W0b.svg b/assets/color-palettes/00QLj3fsFErIl5W0b.svg new file mode 100644 index 0000000000..46251335b4 --- /dev/null +++ b/assets/color-palettes/00QLj3fsFErIl5W0b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00QLn7G59JhKtuUs0.svg b/assets/color-palettes/00QLn7G59JhKtuUs0.svg new file mode 100644 index 0000000000..e16f03f362 --- /dev/null +++ b/assets/color-palettes/00QLn7G59JhKtuUs0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00QLn7Lr9V98YD0zY.svg b/assets/color-palettes/00QLn7Lr9V98YD0zY.svg new file mode 100644 index 0000000000..c86922c39a --- /dev/null +++ b/assets/color-palettes/00QLn7Lr9V98YD0zY.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00QLn7XfPKvMKCrzO.svg b/assets/color-palettes/00QLn7XfPKvMKCrzO.svg new file mode 100644 index 0000000000..4b6e42800f --- /dev/null +++ b/assets/color-palettes/00QLn7XfPKvMKCrzO.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00QLqYQ3HE1oy3ByI.svg b/assets/color-palettes/00QLqYQ3HE1oy3ByI.svg new file mode 100644 index 0000000000..28498221fc --- /dev/null +++ b/assets/color-palettes/00QLqYQ3HE1oy3ByI.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00QLqYS2ZOgkMeMAE.svg b/assets/color-palettes/00QLqYS2ZOgkMeMAE.svg new file mode 100644 index 0000000000..490b732965 --- /dev/null +++ b/assets/color-palettes/00QLqYS2ZOgkMeMAE.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00QLslJAGNA8YREKh.svg b/assets/color-palettes/00QLslJAGNA8YREKh.svg new file mode 100644 index 0000000000..df3b238a0c --- /dev/null +++ b/assets/color-palettes/00QLslJAGNA8YREKh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00QMA8RhpXdgwPtLn.svg b/assets/color-palettes/00QMA8RhpXdgwPtLn.svg new file mode 100644 index 0000000000..20b421faca --- /dev/null +++ b/assets/color-palettes/00QMA8RhpXdgwPtLn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00QMA8SkIwjW5KEch.svg b/assets/color-palettes/00QMA8SkIwjW5KEch.svg new file mode 100644 index 0000000000..e3be63dfd5 --- /dev/null +++ b/assets/color-palettes/00QMA8SkIwjW5KEch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00QMA8h2BH69zyEk0.svg b/assets/color-palettes/00QMA8h2BH69zyEk0.svg new file mode 100644 index 0000000000..8eae6d49ff --- /dev/null +++ b/assets/color-palettes/00QMA8h2BH69zyEk0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00QMA8tedClukB7IL.svg b/assets/color-palettes/00QMA8tedClukB7IL.svg new file mode 100644 index 0000000000..a683e8f1ed --- /dev/null +++ b/assets/color-palettes/00QMA8tedClukB7IL.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00QMEZVdDC6dMYpjp.svg b/assets/color-palettes/00QMEZVdDC6dMYpjp.svg new file mode 100644 index 0000000000..b361a99760 --- /dev/null +++ b/assets/color-palettes/00QMEZVdDC6dMYpjp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00QMEZazmZG85DaWw.svg b/assets/color-palettes/00QMEZazmZG85DaWw.svg new file mode 100644 index 0000000000..cf8335dec3 --- /dev/null +++ b/assets/color-palettes/00QMEZazmZG85DaWw.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00QMEZb0EorAC0k7y.svg b/assets/color-palettes/00QMEZb0EorAC0k7y.svg new file mode 100644 index 0000000000..edfbdf4c61 --- /dev/null +++ b/assets/color-palettes/00QMEZb0EorAC0k7y.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00QMEZgMsSVZavaNd.svg b/assets/color-palettes/00QMEZgMsSVZavaNd.svg new file mode 100644 index 0000000000..8fa022f3ca --- /dev/null +++ b/assets/color-palettes/00QMEZgMsSVZavaNd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00QMEZl7ulP3f2WaX.svg b/assets/color-palettes/00QMEZl7ulP3f2WaX.svg new file mode 100644 index 0000000000..c975a5e60c --- /dev/null +++ b/assets/color-palettes/00QMEZl7ulP3f2WaX.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00QMEZzTrk06iVgaK.svg b/assets/color-palettes/00QMEZzTrk06iVgaK.svg new file mode 100644 index 0000000000..99ce337dae --- /dev/null +++ b/assets/color-palettes/00QMEZzTrk06iVgaK.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00QMKP9yh8XlJYcgM.svg b/assets/color-palettes/00QMKP9yh8XlJYcgM.svg new file mode 100644 index 0000000000..8ae0d03fc5 --- /dev/null +++ b/assets/color-palettes/00QMKP9yh8XlJYcgM.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00QMSRoDq0SDYprak.svg b/assets/color-palettes/00QMSRoDq0SDYprak.svg new file mode 100644 index 0000000000..439035a394 --- /dev/null +++ b/assets/color-palettes/00QMSRoDq0SDYprak.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00QMSRqFlj9B8ayZW.svg b/assets/color-palettes/00QMSRqFlj9B8ayZW.svg new file mode 100644 index 0000000000..0374313706 --- /dev/null +++ b/assets/color-palettes/00QMSRqFlj9B8ayZW.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00QMSSCjsJpojbpYz.svg b/assets/color-palettes/00QMSSCjsJpojbpYz.svg new file mode 100644 index 0000000000..e9424d34e1 --- /dev/null +++ b/assets/color-palettes/00QMSSCjsJpojbpYz.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00QMSSEJXJOUdMoSj.svg b/assets/color-palettes/00QMSSEJXJOUdMoSj.svg new file mode 100644 index 0000000000..0ef3170dc4 --- /dev/null +++ b/assets/color-palettes/00QMSSEJXJOUdMoSj.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00QMxescYuh8eYT39.svg b/assets/color-palettes/00QMxescYuh8eYT39.svg new file mode 100644 index 0000000000..f36801cbda --- /dev/null +++ b/assets/color-palettes/00QMxescYuh8eYT39.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00QN31G5AB2FTftCe.svg b/assets/color-palettes/00QN31G5AB2FTftCe.svg new file mode 100644 index 0000000000..c4589aa2fe --- /dev/null +++ b/assets/color-palettes/00QN31G5AB2FTftCe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00QN49h9BAkHHyKJh.svg b/assets/color-palettes/00QN49h9BAkHHyKJh.svg new file mode 100644 index 0000000000..358ae5ef78 --- /dev/null +++ b/assets/color-palettes/00QN49h9BAkHHyKJh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00RB4I684QFqc2HAM.svg b/assets/color-palettes/00RB4I684QFqc2HAM.svg new file mode 100644 index 0000000000..0663d250cc --- /dev/null +++ b/assets/color-palettes/00RB4I684QFqc2HAM.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00RB4I6NRn6CF3oS0.svg b/assets/color-palettes/00RB4I6NRn6CF3oS0.svg new file mode 100644 index 0000000000..c8b2d1b7bd --- /dev/null +++ b/assets/color-palettes/00RB4I6NRn6CF3oS0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00RB4I89XiwNSlobH.svg b/assets/color-palettes/00RB4I89XiwNSlobH.svg new file mode 100644 index 0000000000..fe92406017 --- /dev/null +++ b/assets/color-palettes/00RB4I89XiwNSlobH.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00RB4IFxoIYII3Cqi.svg b/assets/color-palettes/00RB4IFxoIYII3Cqi.svg new file mode 100644 index 0000000000..f912cddcd9 --- /dev/null +++ b/assets/color-palettes/00RB4IFxoIYII3Cqi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00RGly9mkWt6i3suL-2.svg b/assets/color-palettes/00RGly9mkWt6i3suL-2.svg new file mode 100644 index 0000000000..29200b82a7 --- /dev/null +++ b/assets/color-palettes/00RGly9mkWt6i3suL-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00RGly9mkWt6i3suL.svg b/assets/color-palettes/00RGly9mkWt6i3suL.svg new file mode 100644 index 0000000000..dc0a3818b0 --- /dev/null +++ b/assets/color-palettes/00RGly9mkWt6i3suL.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00RGly9mkWt6i3suLa.svg b/assets/color-palettes/00RGly9mkWt6i3suLa.svg new file mode 100644 index 0000000000..29200b82a7 --- /dev/null +++ b/assets/color-palettes/00RGly9mkWt6i3suLa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00RGlyFVinQl5cj21.svg b/assets/color-palettes/00RGlyFVinQl5cj21.svg new file mode 100644 index 0000000000..3f2d2daae2 --- /dev/null +++ b/assets/color-palettes/00RGlyFVinQl5cj21.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00RGlyJwY9q4Sh0tQ.svg b/assets/color-palettes/00RGlyJwY9q4Sh0tQ.svg new file mode 100644 index 0000000000..bc68192a45 --- /dev/null +++ b/assets/color-palettes/00RGlyJwY9q4Sh0tQ.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00RGlyLkqOmPmbuX6.svg b/assets/color-palettes/00RGlyLkqOmPmbuX6.svg new file mode 100644 index 0000000000..e13f5953f4 --- /dev/null +++ b/assets/color-palettes/00RGlyLkqOmPmbuX6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00RTRDAqmTEarmyeR.svg b/assets/color-palettes/00RTRDAqmTEarmyeR.svg new file mode 100644 index 0000000000..70e7363f81 --- /dev/null +++ b/assets/color-palettes/00RTRDAqmTEarmyeR.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00RTRDIRDbnErAXHV.svg b/assets/color-palettes/00RTRDIRDbnErAXHV.svg new file mode 100644 index 0000000000..de325a84f1 --- /dev/null +++ b/assets/color-palettes/00RTRDIRDbnErAXHV.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00RTRDIzyUse2qJ9N.svg b/assets/color-palettes/00RTRDIzyUse2qJ9N.svg new file mode 100644 index 0000000000..7d2281b95f --- /dev/null +++ b/assets/color-palettes/00RTRDIzyUse2qJ9N.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00RTRDNL7MjHkDys4.svg b/assets/color-palettes/00RTRDNL7MjHkDys4.svg new file mode 100644 index 0000000000..7e2a8c17b9 --- /dev/null +++ b/assets/color-palettes/00RTRDNL7MjHkDys4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00RTRDOtbFF8KFNH9.svg b/assets/color-palettes/00RTRDOtbFF8KFNH9.svg new file mode 100644 index 0000000000..bf40a5a207 --- /dev/null +++ b/assets/color-palettes/00RTRDOtbFF8KFNH9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00RYyJ25i8zFwOJGh.svg b/assets/color-palettes/00RYyJ25i8zFwOJGh.svg new file mode 100644 index 0000000000..8f5a22b4c8 --- /dev/null +++ b/assets/color-palettes/00RYyJ25i8zFwOJGh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00RYyJ4jHYfMF6yfy.svg b/assets/color-palettes/00RYyJ4jHYfMF6yfy.svg new file mode 100644 index 0000000000..714bf6e6f2 --- /dev/null +++ b/assets/color-palettes/00RYyJ4jHYfMF6yfy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00RYyJDsTKzsBBgCO.svg b/assets/color-palettes/00RYyJDsTKzsBBgCO.svg new file mode 100644 index 0000000000..b761e4f4fb --- /dev/null +++ b/assets/color-palettes/00RYyJDsTKzsBBgCO.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00RlTJrw94KFOF3zL.svg b/assets/color-palettes/00RlTJrw94KFOF3zL.svg new file mode 100644 index 0000000000..fa7254eeea --- /dev/null +++ b/assets/color-palettes/00RlTJrw94KFOF3zL.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00RlTJxJZ16ivgKBw.svg b/assets/color-palettes/00RlTJxJZ16ivgKBw.svg new file mode 100644 index 0000000000..fd729e2344 --- /dev/null +++ b/assets/color-palettes/00RlTJxJZ16ivgKBw.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00RnZfzWN7Ewml76I.svg b/assets/color-palettes/00RnZfzWN7Ewml76I.svg new file mode 100644 index 0000000000..22bc9ed5b4 --- /dev/null +++ b/assets/color-palettes/00RnZfzWN7Ewml76I.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00T2A6qx5VScIQ9bU.svg b/assets/color-palettes/00T2A6qx5VScIQ9bU.svg new file mode 100644 index 0000000000..4a29be60de --- /dev/null +++ b/assets/color-palettes/00T2A6qx5VScIQ9bU.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00UWNvEkTsOF0aQHh.svg b/assets/color-palettes/00UWNvEkTsOF0aQHh.svg new file mode 100644 index 0000000000..f287a29a28 --- /dev/null +++ b/assets/color-palettes/00UWNvEkTsOF0aQHh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00bYah8QOLZNgszuV.svg b/assets/color-palettes/00bYah8QOLZNgszuV.svg new file mode 100644 index 0000000000..10760cbcbc --- /dev/null +++ b/assets/color-palettes/00bYah8QOLZNgszuV.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00bYahDYU6E7wDJwL.svg b/assets/color-palettes/00bYahDYU6E7wDJwL.svg new file mode 100644 index 0000000000..b3067f7105 --- /dev/null +++ b/assets/color-palettes/00bYahDYU6E7wDJwL.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00bYcivY8Jqx8nsiR.svg b/assets/color-palettes/00bYcivY8Jqx8nsiR.svg new file mode 100644 index 0000000000..a7d677616f --- /dev/null +++ b/assets/color-palettes/00bYcivY8Jqx8nsiR.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00bYcixZkofJhLJ8w.svg b/assets/color-palettes/00bYcixZkofJhLJ8w.svg new file mode 100644 index 0000000000..033caeda03 --- /dev/null +++ b/assets/color-palettes/00bYcixZkofJhLJ8w.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00bYcj4uvi0NIlqyw.svg b/assets/color-palettes/00bYcj4uvi0NIlqyw.svg new file mode 100644 index 0000000000..8d4a308956 --- /dev/null +++ b/assets/color-palettes/00bYcj4uvi0NIlqyw.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00bYcjDCylnf3k1aB.svg b/assets/color-palettes/00bYcjDCylnf3k1aB.svg new file mode 100644 index 0000000000..68c987feed --- /dev/null +++ b/assets/color-palettes/00bYcjDCylnf3k1aB.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00g3JvJ0ZydpXXvEC.svg b/assets/color-palettes/00g3JvJ0ZydpXXvEC.svg new file mode 100644 index 0000000000..3e8622ffc1 --- /dev/null +++ b/assets/color-palettes/00g3JvJ0ZydpXXvEC.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/color-palettes/LICENSE b/packages/color-palettes/LICENSE new file mode 100644 index 0000000000..8dada3edaf --- /dev/null +++ b/packages/color-palettes/LICENSE @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/packages/color-palettes/README.md b/packages/color-palettes/README.md new file mode 100644 index 0000000000..ad6e2057a8 --- /dev/null +++ b/packages/color-palettes/README.md @@ -0,0 +1,158 @@ + + +# ![color-palettes](https://media.thi.ng/umbrella/banners/thing-color-palettes.svg?e1314250) + +[![npm version](https://img.shields.io/npm/v/@thi.ng/color-palettes.svg)](https://www.npmjs.com/package/@thi.ng/color-palettes) +![npm downloads](https://img.shields.io/npm/dm/@thi.ng/color-palettes.svg) +[![Twitter Follow](https://img.shields.io/twitter/follow/thing_umbrella.svg?style=flat-square&label=twitter)](https://twitter.com/thing_umbrella) + +This project is part of the +[@thi.ng/umbrella](https://github.com/thi-ng/umbrella/) monorepo. + +- [About](#about) + - [Status](#status) +- [Installation](#installation) +- [Dependencies](#dependencies) +- [Available palettes](#available-palettes) +- [Soft](#soft) +- [Medium](#medium) +- [Strong](#strong) +- [Authors](#authors) +- [License](#license) + +## About + +Collection of image based color palettes. This is a support package for [@thi.ng/color](https://github.com/thi-ng/umbrella/tree/develop/packages/color). + +### Status + +**ALPHA** - bleeding edge / work-in-progress + +[Search or submit any issues for this package](https://github.com/thi-ng/umbrella/issues?q=%5Bcolor-palettes%5D+in%3Atitle) + +## Installation + +```bash +yarn add @thi.ng/color-palettes +``` + +```html +// ES module + + +// UMD + +``` + +Package sizes (gzipped, pre-treeshake): ESM: 4.86 KB / CJS: 4.99 KB / UMD: 5.03 KB + +## Dependencies + +None + +## Available palettes + +```ts +import { THEMES } from "@thi.ng/color-palettes"; + +const theme = THEMES["00bYahDYU6E7wDJwL"]; +``` + +Also see the [swatch generator](https://github.com/thi-ng/umbrella/blob/develop/packages/color-palettes/tools/index.ts) as usage example... + +## Soft + +| Preset | Swatches | +|---------------------|------------------------------------------------------------------------------------------------------------| +| `00QLfPkuNx1jE7sMm` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLfPkuNx1jE7sMm.svg) | +| `00QN31G5AB2FTftCe` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QN31G5AB2FTftCe.svg) | +| `00QMEZazmZG85DaWw` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMEZazmZG85DaWw.svg) | +| `00RB4I684QFqc2HAM` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RB4I684QFqc2HAM.svg) | +| `00QMA8RhpXdgwPtLn` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMA8RhpXdgwPtLn.svg) | +| `00g3JvJ0ZydpXXvEC` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00g3JvJ0ZydpXXvEC.svg) | +| `00RB4I89XiwNSlobH` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RB4I89XiwNSlobH.svg) | +| `00RnZfzWN7Ewml76I` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RnZfzWN7Ewml76I.svg) | +| `00RGlyLkqOmPmbuX6` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RGlyLkqOmPmbuX6.svg) | +| `00QLslJAGNA8YREKh` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLslJAGNA8YREKh.svg) | +| `00RTRDIzyUse2qJ9N` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RTRDIzyUse2qJ9N.svg) | +| `00QLfPj2trTnyJHAg` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLfPj2trTnyJHAg.svg) | +| `00QLj3Yj1pUNnTKVY` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLj3Yj1pUNnTKVY.svg) | +| `00QMKP9yh8XlJYcgM` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMKP9yh8XlJYcgM.svg) | +| `00bYahDYU6E7wDJwL` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYahDYU6E7wDJwL.svg) | +| `00QLNIKFhjs5rJCjr` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLNIKFhjs5rJCjr.svg) | +| `00QMEZzTrk06iVgaK` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMEZzTrk06iVgaK.svg) | +| `00QMA8SkIwjW5KEch` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMA8SkIwjW5KEch.svg) | + +## Medium + +| Preset | Swatches | +|---------------------|------------------------------------------------------------------------------------------------------------| +| `00QLqYS2ZOgkMeMAE` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLqYS2ZOgkMeMAE.svg) | +| `00QMEZgMsSVZavaNd` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMEZgMsSVZavaNd.svg) | +| `00RB4I6NRn6CF3oS0` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RB4I6NRn6CF3oS0.svg) | +| `00RTRDAqmTEarmyeR` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RTRDAqmTEarmyeR.svg) | +| `00bYcj4uvi0NIlqyw` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYcj4uvi0NIlqyw.svg) | +| `00RB4IFxoIYII3Cqi` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RB4IFxoIYII3Cqi.svg) | +| `00ORLwKeosxtEeZxq` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00ORLwKeosxtEeZxq.svg) | +| `00RGlyJwY9q4Sh0tQ` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RGlyJwY9q4Sh0tQ.svg) | +| `00RGlyFVinQl5cj21` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RGlyFVinQl5cj21.svg) | +| `00RlTJxJZ16ivgKBw` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RlTJxJZ16ivgKBw.svg) | +| `00bYcivY8Jqx8nsiR` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYcivY8Jqx8nsiR.svg) | +| `00RYyJ4jHYfMF6yfy` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RYyJ4jHYfMF6yfy.svg) | +| `00QMSSEJXJOUdMoSj` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMSSEJXJOUdMoSj.svg) | +| `00QMA8tedClukB7IL` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMA8tedClukB7IL.svg) | +| `00RTRDOtbFF8KFNH9` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RTRDOtbFF8KFNH9.svg) | +| `00bYcixZkofJhLJ8w` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYcixZkofJhLJ8w.svg) | +| `00RYyJ25i8zFwOJGh` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RYyJ25i8zFwOJGh.svg) | +| `00bYah8QOLZNgszuV` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYah8QOLZNgszuV.svg) | +| `00QMSRoDq0SDYprak` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMSRoDq0SDYprak.svg) | + +## Strong + +| Preset | Swatches | +|----------------------|-------------------------------------------------------------------------------------------------------------| +| `00RGly9mkWt6i3suL` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RGly9mkWt6i3suL.svg) | +| `00RTRDNL7MjHkDys4` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RTRDNL7MjHkDys4.svg) | +| `00RTRDIRDbnErAXHV` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RTRDIRDbnErAXHV.svg) | +| `00PhEgF9AlI5PTrLB` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00PhEgF9AlI5PTrLB.svg) | +| `00QMxescYuh8eYT39` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMxescYuh8eYT39.svg) | +| `00RGly9mkWt6i3suLa` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RGly9mkWt6i3suLa.svg) | +| `00RlTJrw94KFOF3zL` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RlTJrw94KFOF3zL.svg) | +| `00PhGSfzpeU5Bkh47a` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00PhGSfzpeU5Bkh47a.svg) | +| `00QLcP0k2fPAz0KHR` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLcP0k2fPAz0KHR.svg) | +| `00QLfPm4UfkMiaicq` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLfPm4UfkMiaicq.svg) | +| `00QMSSCjsJpojbpYz` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMSSCjsJpojbpYz.svg) | +| `00UWNvEkTsOF0aQHh` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00UWNvEkTsOF0aQHh.svg) | +| `00QLqYQ3HE1oy3ByI` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLqYQ3HE1oy3ByI.svg) | +| `00RYyJDsTKzsBBgCO` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RYyJDsTKzsBBgCO.svg) | +| `00QMEZb0EorAC0k7y` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMEZb0EorAC0k7y.svg) | +| `00T2A6qx5VScIQ9bU` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00T2A6qx5VScIQ9bU.svg) | +| `00QMEZVdDC6dMYpjp` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMEZVdDC6dMYpjp.svg) | +| `00bYcjDCylnf3k1aB` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYcjDCylnf3k1aB.svg) | +| `00QMEZl7ulP3f2WaX` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMEZl7ulP3f2WaX.svg) | +| `00QLn7XfPKvMKCrzO` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLn7XfPKvMKCrzO.svg) | +| `00QLn7Lr9V98YD0zY` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLn7Lr9V98YD0zY.svg) | +| `00QMSRqFlj9B8ayZW` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMSRqFlj9B8ayZW.svg) | +| `00QN49h9BAkHHyKJh` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QN49h9BAkHHyKJh.svg) | +| `00QLj3fsFErIl5W0b` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLj3fsFErIl5W0b.svg) | +| `00QLn7G59JhKtuUs0` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLn7G59JhKtuUs0.svg) | +| `00QMA8h2BH69zyEk0` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMA8h2BH69zyEk0.svg) | + +## Authors + +Karsten Schmidt + +If this project contributes to an academic publication, please cite it as: + +```bibtex +@misc{thing-color-palettes, + title = "@thi.ng/color-palettes", + author = "Karsten Schmidt", + note = "https://thi.ng/color-palettes", + year = 2019 +} +``` + +## License + +© 2019 - 2021 Karsten Schmidt // Apache Software License 2.0 diff --git a/packages/color-palettes/api-extractor.json b/packages/color-palettes/api-extractor.json new file mode 100644 index 0000000000..94972e6bed --- /dev/null +++ b/packages/color-palettes/api-extractor.json @@ -0,0 +1,3 @@ +{ + "extends": "../../api-extractor.json" +} diff --git a/packages/color-palettes/package.json b/packages/color-palettes/package.json new file mode 100644 index 0000000000..83de737136 --- /dev/null +++ b/packages/color-palettes/package.json @@ -0,0 +1,66 @@ +{ + "name": "@thi.ng/color-palettes", + "version": "0.0.1", + "description": "Collection of image based color palettes", + "module": "./index.js", + "main": "./lib/index.js", + "umd:main": "./lib/index.umd.js", + "typings": "./index.d.ts", + "repository": { + "type": "git", + "url": "https://github.com/thi-ng/umbrella.git" + }, + "homepage": "https://github.com/thi-ng/umbrella/tree/master/packages/color-palettes#readme", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/postspectacular" + }, + { + "type": "patreon", + "url": "https://patreon.com/thing_umbrella" + } + ], + "author": "Karsten Schmidt ", + "license": "Apache-2.0", + "scripts": { + "build": "yarn clean && yarn build:es6 && node ../../scripts/bundle-module", + "build:release": "yarn clean && yarn build:es6 && node ../../scripts/bundle-module all", + "build:es6": "tsc --declaration", + "build:test": "rimraf build && tsc -p test/tsconfig.json", + "build:check": "tsc --isolatedModules --noEmit", + "test": "mocha test", + "cover": "nyc mocha test && nyc report --reporter=lcov", + "clean": "rimraf *.js *.d.ts *.map .nyc_output build coverage doc lib", + "doc:readme": "ts-node -P ../../tools/tsconfig.json ../../tools/src/readme.ts", + "doc:ae": "mkdir -p .ae/doc .ae/temp && node_modules/.bin/api-extractor run --local --verbose", + "doc": "typedoc --excludePrivate --out doc --theme ../../tools/doc/typedoc-theme src/index.ts", + "pub": "yarn build:release && yarn publish --access public", + "tool:swatches": "ts-node -P tools/tsconfig.json tools/index.ts" + }, + "dependencies": {}, + "files": [ + "*.js", + "*.d.ts", + "lib" + ], + "keywords": [ + "css", + "color", + "dominant", + "image", + "palette", + "rgb", + "theme", + "typescript" + ], + "publishConfig": { + "access": "public" + }, + "sideEffects": false, + "thi.ng": { + "parent": "@thi.ng/color", + "status": "alpha", + "year": 2019 + } +} diff --git a/packages/color-palettes/src/index.ts b/packages/color-palettes/src/index.ts new file mode 100644 index 0000000000..fb6abf0027 --- /dev/null +++ b/packages/color-palettes/src/index.ts @@ -0,0 +1,506 @@ +export const THEMES = { + "00RB4I89XiwNSlobH": [ + "#c2936c", + "#795d45", + "#463524", + "#587479", + "#6c848c", + "#bed0de", + ], + "00RTRDIzyUse2qJ9N": [ + "#a0293c", + "#3c1e18", + "#88675f", + "#61392d", + "#5e788c", + "#a4a4a4", + ], + "00RGlyFVinQl5cj21": [ + "#461b10", + "#95573a", + "#dfb79b", + "#75b5c7", + "#33748f", + "#0a2c42", + ], + "00RTRDIRDbnErAXHV": [ + "#381c1a", + "#793b21", + "#b7673d", + "#e8aa7c", + "#47a0ce", + "#186086", + ], + "00RB4IFxoIYII3Cqi": [ + "#556087", + "#6e78aa", + "#adb1e6", + "#9c5d78", + "#f1a7c0", + "#c97a8e", + ], + "00RGlyLkqOmPmbuX6": [ + "#3c1b18", + "#5d2328", + "#922849", + "#685256", + "#918289", + "#b2b1bd", + ], + "00RTRDAqmTEarmyeR": [ + "#0c0b37", + "#241644", + "#7e4743", + "#9a614f", + "#b78265", + "#d5a584", + ], + "00RTRDOtbFF8KFNH9": [ + "#4c2a2b", + "#85503b", + "#a47c63", + "#c57929", + "#ceb38d", + "#e2e8c6", + ], + "00RTRDNL7MjHkDys4": [ + "#5e1b11", + "#8a4b26", + "#036a65", + "#336d50", + "#17849b", + "#b79944", + ], + "00RYyJ25i8zFwOJGh": [ + "#47210d", + "#724621", + "#4d6e80", + "#9c7857", + "#c47619", + "#d5b48a", + ], + "00RGly9mkWt6i3suL": [ + "#160e0a", + "#573014", + "#9f6135", + "#cf935c", + "#ecc18c", + "#f9eada", + ], + "00RGly9mkWt6i3suLa": [ + "#8d4a09", + "#a85f31", + "#c3764a", + "#c1861f", + "#e6ae42", + "#f9d267", + ], + "00PhEgF9AlI5PTrLB": [ + "#150a23", + "#3c0f3f", + "#591962", + "#493b92", + "#5465af", + "#6175b8", + ], + "00ORLwKeosxtEeZxq": [ + "#100914", + "#1c1735", + "#422a57", + "#7e5b96", + "#dca1c7", + "#f8c8cc", + ], + "00QN31G5AB2FTftCe": [ + "#0e2222", + "#244c4f", + "#56888b", + "#84afb3", + "#aacbcc", + "#c8dfe0", + ], + "00PhGSfzpeU5Bkh47a": [ + "#440807", + "#6c0f0b", + "#910711", + "#8c4c2a", + "#b87d4e", + "#d9b995", + ], + "00RB4I684QFqc2HAM": [ + "#453f38", + "#746b5d", + "#b39777", + "#c1c2b2", + "#e3dccf", + "#f1ede7", + ], + "00RB4I6NRn6CF3oS0": [ + "#4e3427", + "#7f5a47", + "#b68d73", + "#e3ccb7", + "#064857", + "#077d95", + ], + "00RYyJ4jHYfMF6yfy": [ + "#33341f", + "#61532f", + "#9b6230", + "#cc8646", + "#b3a68a", + "#f0f5f3", + ], + "00RYyJDsTKzsBBgCO": [ + "#b07314", + "#845a14", + "#d69527", + "#f4c03b", + "#758734", + "#406010", + ], + "00RGlyJwY9q4Sh0tQ": [ + "#182d4f", + "#2e629a", + "#78a9d4", + "#8a8c99", + "#bac0cd", + "#f2f2f3", + ], + "00RlTJrw94KFOF3zL": [ + "#231927", + "#323445", + "#610d21", + "#97061d", + "#d56a76", + "#eebcb2", + ], + "00RlTJxJZ16ivgKBw": [ + "#2b340e", + "#615022", + "#9b6f3c", + "#c49560", + "#e2bb8b", + "#f3dbb6", + ], + "00RnZfzWN7Ewml76I": [ + "#563063", + "#905c70", + "#b17e84", + "#c89896", + "#d1bbb6", + "#ebe1d8", + ], + "00T2A6qx5VScIQ9bU": [ + "#341740", + "#67415f", + "#a52e45", + "#da3549", + "#d4796c", + "#ebd0b6", + ], + "00UWNvEkTsOF0aQHh": [ + "#874416", + "#b56f49", + "#e69f29", + "#f3d28a", + "#c5cda5", + "#549cba", + ], + "00bYah8QOLZNgszuV": [ + "#6b6c56", + "#888c81", + "#b3bab9", + "#3f8aac", + "#f19028", + "#f6b661", + ], + "00bYahDYU6E7wDJwL": [ + "#cf4e23", + "#8a6b56", + "#af9682", + "#dfd5bd", + "#79a199", + "#40555a", + ], + "00QLcP0k2fPAz0KHR": [ + "#814232", + "#b87931", + "#dfa531", + "#e3d1be", + "#d7b776", + "#a69e85", + ], + "00bYcjDCylnf3k1aB": [ + "#322324", + "#92462f", + "#c56928", + "#eb5e44", + "#f49669", + "#f5aa2f", + ], + "00bYcivY8Jqx8nsiR": [ + "#3f2615", + "#67492d", + "#b7954b", + "#e0e2a1", + "#2f5f4f", + "#5c8c89", + ], + "00bYcj4uvi0NIlqyw": [ + "#072d29", + "#045049", + "#077667", + "#5c9d74", + "#a8ce9e", + "#effacd", + ], + "00g3JvJ0ZydpXXvEC": [ + "#9f7374", + "#d3ac98", + "#edd2bd", + "#c4ddf0", + "#9aadcf", + "#354372", + ], + "00bYcixZkofJhLJ8w": [ + "#1f4d7b", + "#2f1013", + "#660f09", + "#a13d10", + "#684640", + "#b0947f", + ], + "00QMEZl7ulP3f2WaX": [ + "#adda3d", + "#d0f4a9", + "#f0f5f9", + "#6db6e8", + "#2296dc", + "#0b73d1", + ], + "00QMEZVdDC6dMYpjp": [ + "#df4341", + "#e8817e", + "#b1a789", + "#d6d1ba", + "#b1b828", + "#c1ed7f", + ], + "00QMA8tedClukB7IL": [ + "#6f402c", + "#ac3038", + "#ad796b", + "#c9b4a2", + "#cbcbc2", + "#ebe3d8", + ], + "00QMA8SkIwjW5KEch": [ + "#f0181f", + "#b51c1c", + "#b4a8a2", + "#dcd4db", + "#75787a", + "#3c373b", + ], + "00QMA8RhpXdgwPtLn": [ + "#4d3621", + "#806b52", + "#9b9685", + "#acb8af", + "#bfd4d0", + "#60acb2", + ], + "00QLqYQ3HE1oy3ByI": [ + "#97867e", + "#894e29", + "#d7a31a", + "#f2d95b", + "#dcdedb", + "#92b1cb", + ], + "00QLn7XfPKvMKCrzO": [ + "#73272f", + "#e65633", + "#e5af98", + "#f2dfcd", + "#43b6ad", + "#181240", + ], + "00QLj3fsFErIl5W0b": [ + "#763a20", + "#c78f67", + "#f27f14", + "#86949b", + "#37516c", + "#1c222f", + ], + "00QLNIKFhjs5rJCjr": [ + "#f77908", + "#ba9623", + "#c6a489", + "#bbc3bb", + "#9dc9be", + "#668c92", + ], + "00QLfPj2trTnyJHAg": [ + "#15253c", + "#552f34", + "#8f1f21", + "#7a6574", + "#b0a0b3", + "#d1e6ed", + ], + "00QLfPm4UfkMiaicq": [ + "#3e3e25", + "#664d1c", + "#a2510d", + "#ce881d", + "#f6cb53", + "#fefce8", + ], + "00QLfPkuNx1jE7sMm": [ + "#1c161c", + "#413a42", + "#6f6166", + "#9f8b8c", + "#d7c4c3", + "#fbeae4", + ], + "00QLj3Yj1pUNnTKVY": [ + "#7c7575", + "#743d28", + "#e88b46", + "#caa78d", + "#acd4d4", + "#1d2544", + ], + "00QMKP9yh8XlJYcgM": [ + "#857564", + "#aaa198", + "#cfccc9", + "#584d36", + "#bbb40f", + "#f3f777", + ], + "00QMxescYuh8eYT39": [ + "#12182f", + "#4f2431", + "#844036", + "#b1663e", + "#de9548", + "#d1c6b5", + ], + "00QMSRoDq0SDYprak": [ + "#2d1e22", + "#a90f0c", + "#ee1d2b", + "#ba8476", + "#dacbc6", + "#f7f3f7", + ], + "00QMEZzTrk06iVgaK": [ + "#e2361c", + "#f36958", + "#cdd2df", + "#a6a4af", + "#807377", + "#41372f", + ], + "00QN49h9BAkHHyKJh": [ + "#ab312c", + "#d57f1c", + "#f4d42b", + "#3199cc", + "#c4c9e0", + "#1c284b", + ], + "00QMSSCjsJpojbpYz": [ + "#a7333a", + "#ea723e", + "#f1aa74", + "#aae39b", + "#5da773", + "#42cfbb", + ], + "00QMSSEJXJOUdMoSj": [ + "#ed9d5f", + "#e7caac", + "#4da1c2", + "#3c3664", + "#6c5c82", + "#ad7a8d", + ], + "00QMSRqFlj9B8ayZW": [ + "#db4a55", + "#f5c625", + "#408aa3", + "#b0cadb", + "#163b64", + "#744881", + ], + "00QMEZgMsSVZavaNd": [ + "#ddf0c3", + "#b3eed4", + "#94e6da", + "#78d1e7", + "#a3d5ed", + "#c8c3ec", + ], + "00QMEZb0EorAC0k7y": [ + "#2f112d", + "#520330", + "#7f0233", + "#c52b3e", + "#fc714b", + "#fedac0", + ], + "00QMEZazmZG85DaWw": [ + "#1b2434", + "#47423d", + "#6a614a", + "#8b8262", + "#d9d3c7", + "#fae7dc", + ], + "00QMA8h2BH69zyEk0": [ + "#0a0320", + "#260d6c", + "#613dda", + "#b4b6ac", + "#f6e019", + "#eef5fa", + ], + "00QLslJAGNA8YREKh": [ + "#ffd8d2", + "#fbc6b7", + "#fd9b79", + "#ece8e8", + "#c2bab6", + "#888078", + ], + "00QLn7Lr9V98YD0zY": [ + "#ab3051", + "#e31f4b", + "#c68575", + "#f3bda5", + "#652b55", + "#834270", + ], + "00QLn7G59JhKtuUs0": [ + "#0a0e40", + "#715589", + "#c7264b", + "#3fa1cc", + "#fa7b0e", + "#e8b7ac", + ], + "00QLqYS2ZOgkMeMAE": [ + "#3b4227", + "#255c50", + "#2d7663", + "#788664", + "#b3ad81", + "#e3d6ad", + ], +}; diff --git a/packages/color-palettes/test/index.ts b/packages/color-palettes/test/index.ts new file mode 100644 index 0000000000..b5373654ee --- /dev/null +++ b/packages/color-palettes/test/index.ts @@ -0,0 +1,6 @@ +// import * as assert from "assert"; +// import { } from "../src"; + +describe("palettes", () => { + it("tests pending"); +}); diff --git a/packages/color-palettes/test/tsconfig.json b/packages/color-palettes/test/tsconfig.json new file mode 100644 index 0000000000..f6e63560dd --- /dev/null +++ b/packages/color-palettes/test/tsconfig.json @@ -0,0 +1,11 @@ +{ + "extends": "../../../tsconfig.json", + "compilerOptions": { + "outDir": "../build", + "module": "commonjs" + }, + "include": [ + "./**/*.ts", + "../src/**/*.ts" + ] +} diff --git a/packages/color-palettes/tools/index.ts b/packages/color-palettes/tools/index.ts new file mode 100644 index 0000000000..e3bcb83b86 --- /dev/null +++ b/packages/color-palettes/tools/index.ts @@ -0,0 +1,125 @@ +import { dotsH, lch } from "@thi.ng/color"; +import { compareByKey } from "@thi.ng/compare"; +import { serialize } from "@thi.ng/hiccup"; +import { svg } from "@thi.ng/hiccup-svg"; +import { padRight, repeat } from "@thi.ng/strings"; +import { + assocObj, + groupByMap, + map, + mapIndexed, + minMax, + pairs, + pluck, + range2d, + transduce, + vals, +} from "@thi.ng/transducers"; +import { writeFileSync } from "fs"; +import { THEMES } from "../src"; + +const BASE_URL = + "https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes"; +// const BASE_URL = "."; + +const R = 24; +const D = R * 2; +const GAP = 5; +const width = 6 * (D + 5); +const cellW = (width - 2 * GAP) / 3; +const yOff = D + GAP; + +const DOTS = [ + [0.3, 0.25, 0.2], + [0.6, 0.45, 0.3], + [0.35, 0.7, 0.25], + [0.7, 0.7, 0.2], + [0.6, 0.5, 0.125], +]; + +const col = (theme: string[], i: number) => theme[i % theme.length]; + +const composition = (theme: string[], i: number) => [ + ["rect", { fill: theme[i] }, [0, 0], cellW, cellW], + ...DOTS.map(([x, y, r], j) => [ + "circle", + { fill: col(theme, i + j + 1) }, + [x * cellW, y * cellW], + r * cellW, + ]), +]; + +const makeTable = (rows: string[][]) => { + const [w1, w2] = rows.reduce( + (acc, [a, b]) => [ + Math.max(acc[0], a.length), + Math.max(acc[1], b.length), + ], + [0, 0] + ); + + const p1 = padRight(w1); + const p2 = padRight(w2); + const table = rows.map(([a, b]) => `| ${p1(a)} | ${p2(b)} |`); + table.splice(1, 0, `|${repeat("-", w1 + 2)}|${repeat("-", w2 + 2)}|`); + return table.join("\n"); +}; + +type ThemeStat = { id: string; sortKey: number; key: number; theme: string[] }; + +const themeStats = transduce( + map(([id, theme]) => { + const lchTheme = THEMES[id].map((x) => lch(x)); + const [minC, maxC] = transduce(pluck("c"), minMax(), lchTheme); + // const meanC = transduce(pluck("c"), mean(), lchTheme); + // const hue = transduce(pluck("h"), mean(), lchTheme); + const median = [...pluck("c", lchTheme)].sort()[3]; + const key = median < 0.22 ? 0 : median < 0.33 ? 1 : 2; + return [id, { id, key, sortKey: maxC, theme }]; + }), + assocObj(), + pairs(THEMES) +); + +const grouped: Map = groupByMap( + { + key: ({ key }: ThemeStat) => key, + }, + vals(themeStats) +); + +const sections: string[] = []; + +for (let gid of [...grouped.keys()].sort()) { + sections.push(`## ${["Soft", "Medium", "Strong"][gid]}`); + const rows = [["Preset", "Swatches", "Stats"]]; + const themes = grouped.get(gid)!.sort(compareByKey("sortKey")); + for (let { id, theme, sortKey } of themes) { + console.log(id); + const doc = serialize( + svg( + { convert: true, width, height: yOff + cellW * 2 + GAP }, + dotsH(theme, R, GAP, { translate: [R, R] }), + ...mapIndexed( + (i, [x, y]) => [ + "g", + { + translate: [ + (cellW + GAP) * x, + yOff + (cellW + GAP) * y, + ], + }, + composition(theme, i), + ], + range2d(3, 2) + ) + ) + ); + writeFileSync(`export/${id}.svg`, doc); + + rows.push([`\`${id}\``, `![](${BASE_URL}/${id}.svg)`]); + } + sections.push(makeTable(rows)); +} + +writeFileSync(`export/table.md`, sections.join("\n\n")); diff --git a/packages/color-palettes/tools/tsconfig.json b/packages/color-palettes/tools/tsconfig.json new file mode 100644 index 0000000000..9655cbea10 --- /dev/null +++ b/packages/color-palettes/tools/tsconfig.json @@ -0,0 +1,10 @@ +{ + "extends": "../../../tsconfig.json", + "compilerOptions": { + "outDir": "../build", + "module": "commonjs", + "noUnusedLocals": false, + "noUnusedParameters": false + }, + "include": ["./**/*.ts", "../src/**/*.ts"] +} diff --git a/packages/color-palettes/tpl.readme.md b/packages/color-palettes/tpl.readme.md new file mode 100644 index 0000000000..ef96ed5d86 --- /dev/null +++ b/packages/color-palettes/tpl.readme.md @@ -0,0 +1,132 @@ +# ${pkg.banner} + +[![npm version](https://img.shields.io/npm/v/${pkg.name}.svg)](https://www.npmjs.com/package/${pkg.name}) +![npm downloads](https://img.shields.io/npm/dm/${pkg.name}.svg) +[![Twitter Follow](https://img.shields.io/twitter/follow/thing_umbrella.svg?style=flat-square&label=twitter)](https://twitter.com/thing_umbrella) + +This project is part of the +[@thi.ng/umbrella](https://github.com/thi-ng/umbrella/) monorepo. + + + +## About + +${pkg.description} + +${status} + +${supportPackages} + +${relatedPackages} + +${blogPosts} + +## Installation + +${pkg.install} + +${pkg.size} + +## Dependencies + +${pkg.deps} + +${examples} + +## Available palettes + +```ts +import { THEMES } from "@thi.ng/color-palettes"; + +const theme = THEMES["00bYahDYU6E7wDJwL"]; +``` + +Also see the [swatch generator](https://github.com/thi-ng/umbrella/blob/develop/packages/color-palettes/tools/index.ts) as usage example... + +## Soft + +| Preset | Swatches | +|---------------------|------------------------------------------------------------------------------------------------------------| +| `00QLfPkuNx1jE7sMm` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLfPkuNx1jE7sMm.svg) | +| `00QN31G5AB2FTftCe` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QN31G5AB2FTftCe.svg) | +| `00QMEZazmZG85DaWw` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMEZazmZG85DaWw.svg) | +| `00RB4I684QFqc2HAM` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RB4I684QFqc2HAM.svg) | +| `00QMA8RhpXdgwPtLn` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMA8RhpXdgwPtLn.svg) | +| `00g3JvJ0ZydpXXvEC` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00g3JvJ0ZydpXXvEC.svg) | +| `00RB4I89XiwNSlobH` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RB4I89XiwNSlobH.svg) | +| `00RnZfzWN7Ewml76I` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RnZfzWN7Ewml76I.svg) | +| `00RGlyLkqOmPmbuX6` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RGlyLkqOmPmbuX6.svg) | +| `00QLslJAGNA8YREKh` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLslJAGNA8YREKh.svg) | +| `00RTRDIzyUse2qJ9N` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RTRDIzyUse2qJ9N.svg) | +| `00QLfPj2trTnyJHAg` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLfPj2trTnyJHAg.svg) | +| `00QLj3Yj1pUNnTKVY` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLj3Yj1pUNnTKVY.svg) | +| `00QMKP9yh8XlJYcgM` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMKP9yh8XlJYcgM.svg) | +| `00bYahDYU6E7wDJwL` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYahDYU6E7wDJwL.svg) | +| `00QLNIKFhjs5rJCjr` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLNIKFhjs5rJCjr.svg) | +| `00QMEZzTrk06iVgaK` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMEZzTrk06iVgaK.svg) | +| `00QMA8SkIwjW5KEch` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMA8SkIwjW5KEch.svg) | + +## Medium + +| Preset | Swatches | +|---------------------|------------------------------------------------------------------------------------------------------------| +| `00QLqYS2ZOgkMeMAE` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLqYS2ZOgkMeMAE.svg) | +| `00QMEZgMsSVZavaNd` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMEZgMsSVZavaNd.svg) | +| `00RB4I6NRn6CF3oS0` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RB4I6NRn6CF3oS0.svg) | +| `00RTRDAqmTEarmyeR` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RTRDAqmTEarmyeR.svg) | +| `00bYcj4uvi0NIlqyw` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYcj4uvi0NIlqyw.svg) | +| `00RB4IFxoIYII3Cqi` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RB4IFxoIYII3Cqi.svg) | +| `00ORLwKeosxtEeZxq` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00ORLwKeosxtEeZxq.svg) | +| `00RGlyJwY9q4Sh0tQ` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RGlyJwY9q4Sh0tQ.svg) | +| `00RGlyFVinQl5cj21` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RGlyFVinQl5cj21.svg) | +| `00RlTJxJZ16ivgKBw` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RlTJxJZ16ivgKBw.svg) | +| `00bYcivY8Jqx8nsiR` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYcivY8Jqx8nsiR.svg) | +| `00RYyJ4jHYfMF6yfy` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RYyJ4jHYfMF6yfy.svg) | +| `00QMSSEJXJOUdMoSj` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMSSEJXJOUdMoSj.svg) | +| `00QMA8tedClukB7IL` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMA8tedClukB7IL.svg) | +| `00RTRDOtbFF8KFNH9` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RTRDOtbFF8KFNH9.svg) | +| `00bYcixZkofJhLJ8w` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYcixZkofJhLJ8w.svg) | +| `00RYyJ25i8zFwOJGh` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RYyJ25i8zFwOJGh.svg) | +| `00bYah8QOLZNgszuV` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYah8QOLZNgszuV.svg) | +| `00QMSRoDq0SDYprak` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMSRoDq0SDYprak.svg) | + +## Strong + +| Preset | Swatches | +|----------------------|-------------------------------------------------------------------------------------------------------------| +| `00RGly9mkWt6i3suL` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RGly9mkWt6i3suL.svg) | +| `00RTRDNL7MjHkDys4` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RTRDNL7MjHkDys4.svg) | +| `00RTRDIRDbnErAXHV` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RTRDIRDbnErAXHV.svg) | +| `00PhEgF9AlI5PTrLB` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00PhEgF9AlI5PTrLB.svg) | +| `00QMxescYuh8eYT39` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMxescYuh8eYT39.svg) | +| `00RGly9mkWt6i3suLa` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RGly9mkWt6i3suLa.svg) | +| `00RlTJrw94KFOF3zL` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RlTJrw94KFOF3zL.svg) | +| `00PhGSfzpeU5Bkh47a` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00PhGSfzpeU5Bkh47a.svg) | +| `00QLcP0k2fPAz0KHR` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLcP0k2fPAz0KHR.svg) | +| `00QLfPm4UfkMiaicq` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLfPm4UfkMiaicq.svg) | +| `00QMSSCjsJpojbpYz` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMSSCjsJpojbpYz.svg) | +| `00UWNvEkTsOF0aQHh` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00UWNvEkTsOF0aQHh.svg) | +| `00QLqYQ3HE1oy3ByI` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLqYQ3HE1oy3ByI.svg) | +| `00RYyJDsTKzsBBgCO` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RYyJDsTKzsBBgCO.svg) | +| `00QMEZb0EorAC0k7y` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMEZb0EorAC0k7y.svg) | +| `00T2A6qx5VScIQ9bU` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00T2A6qx5VScIQ9bU.svg) | +| `00QMEZVdDC6dMYpjp` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMEZVdDC6dMYpjp.svg) | +| `00bYcjDCylnf3k1aB` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYcjDCylnf3k1aB.svg) | +| `00QMEZl7ulP3f2WaX` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMEZl7ulP3f2WaX.svg) | +| `00QLn7XfPKvMKCrzO` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLn7XfPKvMKCrzO.svg) | +| `00QLn7Lr9V98YD0zY` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLn7Lr9V98YD0zY.svg) | +| `00QMSRqFlj9B8ayZW` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMSRqFlj9B8ayZW.svg) | +| `00QN49h9BAkHHyKJh` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QN49h9BAkHHyKJh.svg) | +| `00QLj3fsFErIl5W0b` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLj3fsFErIl5W0b.svg) | +| `00QLn7G59JhKtuUs0` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLn7G59JhKtuUs0.svg) | +| `00QMA8h2BH69zyEk0` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMA8h2BH69zyEk0.svg) | + +## Authors + +${authors} + +${pkg.cite} + +## License + +© ${copyright} // ${license} diff --git a/packages/color-palettes/tsconfig.json b/packages/color-palettes/tsconfig.json new file mode 100644 index 0000000000..bd6481a5a6 --- /dev/null +++ b/packages/color-palettes/tsconfig.json @@ -0,0 +1,9 @@ +{ + "extends": "../../tsconfig.json", + "compilerOptions": { + "outDir": "." + }, + "include": [ + "./src/**/*.ts" + ] +} From eefa760dcfc7b7e1eb948b8c987072b0e1017e86 Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Sat, 21 Aug 2021 15:41:27 +0200 Subject: [PATCH 15/76] docs(color-palettes): update pkg meta, readme --- packages/color-palettes/README.md | 8 ++++---- packages/color-palettes/package.json | 5 ++--- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/packages/color-palettes/README.md b/packages/color-palettes/README.md index ad6e2057a8..4dd98d8ed9 100644 --- a/packages/color-palettes/README.md +++ b/packages/color-palettes/README.md @@ -22,11 +22,11 @@ This project is part of the ## About -Collection of image based color palettes. This is a support package for [@thi.ng/color](https://github.com/thi-ng/umbrella/tree/develop/packages/color). +Collection of 64 image based color palettes. This is a support package for [@thi.ng/color](https://github.com/thi-ng/umbrella/tree/develop/packages/color). ### Status -**ALPHA** - bleeding edge / work-in-progress +**STABLE** - used in production [Search or submit any issues for this package](https://github.com/thi-ng/umbrella/issues?q=%5Bcolor-palettes%5D+in%3Atitle) @@ -149,10 +149,10 @@ If this project contributes to an academic publication, please cite it as: title = "@thi.ng/color-palettes", author = "Karsten Schmidt", note = "https://thi.ng/color-palettes", - year = 2019 + year = 2021 } ``` ## License -© 2019 - 2021 Karsten Schmidt // Apache Software License 2.0 +© 2021 Karsten Schmidt // Apache Software License 2.0 diff --git a/packages/color-palettes/package.json b/packages/color-palettes/package.json index 83de737136..984bb32370 100644 --- a/packages/color-palettes/package.json +++ b/packages/color-palettes/package.json @@ -1,7 +1,7 @@ { "name": "@thi.ng/color-palettes", "version": "0.0.1", - "description": "Collection of image based color palettes", + "description": "Collection of 64 image based color palettes", "module": "./index.js", "main": "./lib/index.js", "umd:main": "./lib/index.umd.js", @@ -60,7 +60,6 @@ "sideEffects": false, "thi.ng": { "parent": "@thi.ng/color", - "status": "alpha", - "year": 2019 + "year": 2021 } } From 1d66f8257e9d260308e2e5d5e5d63eef94592155 Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Sat, 21 Aug 2021 15:42:47 +0200 Subject: [PATCH 16/76] Publish - @thi.ng/color-palettes@0.1.0 --- packages/color-palettes/CHANGELOG.md | 11 +++++++++++ packages/color-palettes/package.json | 3 +-- 2 files changed, 12 insertions(+), 2 deletions(-) create mode 100644 packages/color-palettes/CHANGELOG.md diff --git a/packages/color-palettes/CHANGELOG.md b/packages/color-palettes/CHANGELOG.md new file mode 100644 index 0000000000..2b105f754e --- /dev/null +++ b/packages/color-palettes/CHANGELOG.md @@ -0,0 +1,11 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# 0.1.0 (2021-08-21) + + +### Features + +* **color-palettes:** add as new pkg, add assets & swatch gen ([9d1bb17](https://github.com/thi-ng/umbrella/commit/9d1bb17b4373a0cbe43705a41a4cbce353999c7e)) diff --git a/packages/color-palettes/package.json b/packages/color-palettes/package.json index 984bb32370..62f51399ec 100644 --- a/packages/color-palettes/package.json +++ b/packages/color-palettes/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/color-palettes", - "version": "0.0.1", + "version": "0.1.0", "description": "Collection of 64 image based color palettes", "module": "./index.js", "main": "./lib/index.js", @@ -38,7 +38,6 @@ "pub": "yarn build:release && yarn publish --access public", "tool:swatches": "ts-node -P tools/tsconfig.json tools/index.ts" }, - "dependencies": {}, "files": [ "*.js", "*.d.ts", From a785aecabb411e6acd8e816c343e5f1161df0735 Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Sat, 21 Aug 2021 17:24:44 +0200 Subject: [PATCH 17/76] docs(color): update readme (links) --- packages/color/README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/packages/color/README.md b/packages/color/README.md index f74de8ce46..23985503f1 100644 --- a/packages/color/README.md +++ b/packages/color/README.md @@ -23,6 +23,7 @@ For the Clojure version, please visit: [thi.ng/color-clj](https://thi.ng/color-c - [Cosine gradients](#cosine-gradients) - [RGB color transformations](#rgb-color-transformations) - [Status](#status) + - [Support packages](#support-packages) - [Related packages](#related-packages) - [Installation](#installation) - [Dependencies](#dependencies) @@ -568,6 +569,10 @@ concatenation (see `concat()`) for more efficient application. [Search or submit any issues for this package](https://github.com/thi-ng/umbrella/issues?q=%5Bcolor%5D+in%3Atitle) +### Support packages + +- [@thi.ng/color-palettes](https://github.com/thi-ng/umbrella/tree/develop/packages/color-palettes) - Collection of 64 image based color palettes + ### Related packages - [@thi.ng/pixel](https://github.com/thi-ng/umbrella/tree/develop/packages/pixel) - Typedarray integer & float pixel buffers w/ customizable formats, blitting, dithering, convolution From 6a55d11ef9b307a22da82559b74a6d8bec1786ec Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Sat, 21 Aug 2021 19:31:54 +0200 Subject: [PATCH 18/76] docs: update main readme --- README.md | 38 ++++++++++++++++++++++---------------- 1 file changed, 22 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index bcceb314b6..2bd7bdbfbb 100644 --- a/README.md +++ b/README.md @@ -16,9 +16,9 @@ **Please visit [thi.ng](https://thi.ng) for additional information & topic based search of packages relevant to your use cases...** -Mono-repository for 151+ thi.ng TypeScript/ES6 projects, a wide -collection of largely data transformation oriented packages and building -blocks for (non-exhaustive list of topics): +Mono-repository for 152+ thi.ng TypeScript/ES6 projects, a wide collection of +largely data transformation oriented packages and building blocks for +(non-exhaustive list of topics): - Functional programming (composition, memoization, transducers, multi-methods) - Data structures & data transformations for wide range of use cases (list, @@ -132,19 +132,24 @@ for other project-wide information, tidbits, useful snippets etc. feature or `develop` branches) --> -### Latest additions / updates (since 04/2021) - -| Project | Version | Changelog | Description | -|-------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------|--------------------------------------------------|------------------------------------------------| -| [`@thi.ng/date`](./packages/date) | [![version](https://img.shields.io/npm/v/@thi.ng/date.svg)](https://www.npmjs.com/package/@thi.ng/date) | [changelog](./packages/date/CHANGELOG.md) | Date/time iterators, formatters, rounding | -| [`@thi.ng/distance`](./packages/distance) | [![version](https://img.shields.io/npm/v/@thi.ng/distance.svg)](https://www.npmjs.com/package/@thi.ng/distance) | [changelog](./packages/distance/CHANGELOG.md) | n-D distance metrics & K-nearest neighborhoods | -| [`@thi.ng/k-means`](./packages/k-means) | [![version](https://img.shields.io/npm/v/@thi.ng/k-means.svg)](https://www.npmjs.com/package/@thi.ng/k-means) | [changelog](./packages/k-means/CHANGELOG.md) | K-means clustering of n-D data | -| [`@thi.ng/lowdisc`](./packages/lowdisc) | [![version](https://img.shields.io/npm/v/@thi.ng/lowdisc.svg)](https://www.npmjs.com/package/@thi.ng/lowdisc) | [changelog](./packages/lowdisc/CHANGELOG.md) | n-D Low discrepancy sequence generators | -| [`@thi.ng/math`](./packages/math) | [![version](https://img.shields.io/npm/v/@thi.ng/math.svg)](https://www.npmjs.com/package/@thi.ng/math) | [changelog](./packages/math/CHANGELOG.md) | Assorted common math functions & utilities | -| [`@thi.ng/mime`](./packages/mime) | [![version](https://img.shields.io/npm/v/@thi.ng/mime.svg)](https://www.npmjs.com/package/@thi.ng/mime) | [changelog](./packages/mime/CHANGELOG.md) | File extension to MIME type mappings | -| [`@thi.ng/pixel`](./packages/pixel) | [![version](https://img.shields.io/npm/v/@thi.ng/pixel.svg)](https://www.npmjs.com/package/@thi.ng/pixel) | [changelog](./packages/pixel/CHANGELOG.md) | Multi-format pixel buffers | -| [`@thi.ng/transducers`](./packages/transducers) | [![version](https://img.shields.io/npm/v/@thi.ng/transducers.svg)](https://www.npmjs.com/package/@thi.ng/transducers) | [changelog](./packages/transducers/CHANGELOG.md) | Composable data transformations | -| [`@thi.ng/vectors`](./packages/vectors) | [![version](https://img.shields.io/npm/v/@thi.ng/vectors.svg)](https://www.npmjs.com/package/@thi.ng/vectors) | [changelog](./packages/vectors/CHANGELOG.md) | Fixed & arbitrary-length vector ops | +### Latest additions / updates (since 08/2021) + +| Project | Version | Changelog | Description | +|-------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------|--------------------------------------------------------| +| [`@thi.ng/args`](./packages/args) | [![version](https://img.shields.io/npm/v/@thi.ng/args.svg)](https://www.npmjs.com/package/@thi.ng/args) | [changelog](./packages/args/CHANGELOG.md) | Declarative & functional CLI arg parsing & coercions | +| [`@thi.ng/atom`](./packages/atom) | [![version](https://img.shields.io/npm/v/@thi.ng/atom.svg)](https://www.npmjs.com/package/@thi.ng/atom) | [changelog](./packages/atom/CHANGELOG.md) | Immutable value wrappers, views, history | +| [`@thi.ng/color-palettes`](./packages/color-palettes) | [![version](https://img.shields.io/npm/v/@thi.ng/color-palettes.svg)](https://www.npmjs.com/package/@thi.ng/color-palettes) | [changelog](./packages/color-palettes/CHANGELOG.md) | Collection of color palettes | +| [`@thi.ng/date`](./packages/date) | [![version](https://img.shields.io/npm/v/@thi.ng/date.svg)](https://www.npmjs.com/package/@thi.ng/date) | [changelog](./packages/date/CHANGELOG.md) | Date/time iterators, formatters, rounding | +| [`@thi.ng/heaps`](./packages/heaps) | [![version](https://img.shields.io/npm/v/@thi.ng/heaps.svg)](https://www.npmjs.com/package/@thi.ng/heaps) | [changelog](./packages/heaps/CHANGELOG.md) | Binary & d-ary heap impls | +| [`@thi.ng/geom-isoline`](./packages/geom-isoline) | [![version](https://img.shields.io/npm/v/@thi.ng/geom-isoline.svg)](https://www.npmjs.com/package/@thi.ng/geom-isoline) | [changelog](./packages/geom-isoline/CHANGELOG.md) | 2D contour line extraction | +| [`@thi.ng/k-means`](./packages/k-means) | [![version](https://img.shields.io/npm/v/@thi.ng/k-means.svg)](https://www.npmjs.com/package/@thi.ng/k-means) | [changelog](./packages/k-means/CHANGELOG.md) | K-means clustering of n-D data | +| [`@thi.ng/ksuid`](./packages/ksuid) | [![version](https://img.shields.io/npm/v/@thi.ng/ksuid.svg)](https://www.npmjs.com/package/@thi.ng/ksuid) | [changelog](./packages/ksuid/CHANGELOG.md) | K-sortable unique identifiers, binary & base-N encoded | +| [`@thi.ng/pixel`](./packages/pixel) | [![version](https://img.shields.io/npm/v/@thi.ng/pixel.svg)](https://www.npmjs.com/package/@thi.ng/pixel) | [changelog](./packages/pixel/CHANGELOG.md) | Multi-format pixel buffers | +| [`@thi.ng/rdom`](./packages/rdom) | [![version](https://img.shields.io/npm/v/@thi.ng/rdom.svg)](https://www.npmjs.com/package/@thi.ng/rdom) | [changelog](./packages/rdom/CHANGELOG.md) | Reactive, diff-less, async UI components | +| [`@thi.ng/rdom-components`](./packages/rdom-components) | [![version](https://img.shields.io/npm/v/@thi.ng/rdom-components.svg)](https://www.npmjs.com/package/@thi.ng/rdom-components) | [changelog](./packages/rdom-components/CHANGELOG.md) | Unstyled, customizable component collection | +| [`@thi.ng/shader-ast`](./packages/shader-ast) | [![version](https://img.shields.io/npm/v/@thi.ng/shader-ast.svg)](https://www.npmjs.com/package/@thi.ng/shader-ast) | [changelog](./packages/shader-ast/CHANGELOG.md) | AST DSL for x-platform shader code | +| [`@thi.ng/shader-ast-stdlib`](./packages/shader-ast-stdlib) | [![version](https://img.shields.io/npm/v/@thi.ng/shader-ast-stdlib.svg)](https://www.npmjs.com/package/@thi.ng/shader-ast-stdlib) | [changelog](./packages/shader-ast-stdlib/CHANGELOG.md) | 100+ useful AST shader functions | +| [`@thi.ng/transducers`](./packages/transducers) | [![version](https://img.shields.io/npm/v/@thi.ng/transducers.svg)](https://www.npmjs.com/package/@thi.ng/transducers) | [changelog](./packages/transducers/CHANGELOG.md) | Composable data transformations | ### Fundamentals @@ -291,6 +296,7 @@ feature or `develop` branches) | Project | Version | Changelog | Description | |---------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------|-----------------------------------------------------| | [`@thi.ng/color`](./packages/color) | [![version](https://img.shields.io/npm/v/@thi.ng/color.svg)](https://www.npmjs.com/package/@thi.ng/color) | [changelog](./packages/color/CHANGELOG.md) | Color conversions, gradients | +| [`@thi.ng/color-palettes`](./packages/color-palettes) | [![version](https://img.shields.io/npm/v/@thi.ng/color-palettes.svg)](https://www.npmjs.com/package/@thi.ng/color-palettes) | [changelog](./packages/color-palettes/CHANGELOG.md) | Collection of color palettes | | [`@thi.ng/dgraph-dot`](./packages/dgraph-dot) | [![version](https://img.shields.io/npm/v/@thi.ng/dgraph-dot.svg)](https://www.npmjs.com/package/@thi.ng/dgraph-dot) | [changelog](./packages/dgraph-dot/CHANGELOG.md) | Dependency graph -> Graphviz | | [`@thi.ng/fuzzy-viz`](./packages/fuzzy-viz) | [![version](https://img.shields.io/npm/v/@thi.ng/fuzzy-viz.svg)](https://www.npmjs.com/package/@thi.ng/fuzzy-viz) | [changelog](./packages/fuzzy-viz/CHANGELOG.md) | Visualization, instrumentation for @thi.ng/fuzzy | | [`@thi.ng/geom`](./packages/geom) | [![version](https://img.shields.io/npm/v/@thi.ng/geom.svg)](https://www.npmjs.com/package/@thi.ng/geom) | [changelog](./packages/geom/CHANGELOG.md) | 2D only geometry types & ops | From d6cb9929d274c83e89670e9140bba1cb172a0deb Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Sun, 22 Aug 2021 02:15:49 +0200 Subject: [PATCH 19/76] feat(hiccup-svg): add numericAttribs(), fix svg() - update svg() to format some attribs using ff() --- packages/hiccup-svg/src/format.ts | 44 ++++++++++++++++++++----------- packages/hiccup-svg/src/svg.ts | 21 ++++++++++----- 2 files changed, 43 insertions(+), 22 deletions(-) diff --git a/packages/hiccup-svg/src/format.ts b/packages/hiccup-svg/src/format.ts index 9eda85b5a6..aba9aec484 100644 --- a/packages/hiccup-svg/src/format.ts +++ b/packages/hiccup-svg/src/format.ts @@ -16,32 +16,46 @@ export const fpoint = (p: Vec2Like) => ff(p[0]) + "," + ff(p[1]); export const fpoints = (pts: Vec2Like[], sep = " ") => pts ? pts.map(fpoint).join(sep) : ""; +/** + * Takes an attributes object and a number of attrib IDs whose values should be + * formatted using {@link ff}. Mutates and returns `attribs` object. + * + * @param attribs + * @param ids + */ +export const numericAttribs = (attribs: any, ...ids: string[]) => { + let v: any; + for (let id of ids) { + (v = attribs[id]) != null && (attribs[id] = ff(v)); + } + return attribs; +}; + /** * Takes an attributes object and converts any `fill`, `stroke` or - * transformation attributes, i.e. `transform`, `rotate`, `scale`, - * `translate`. If the element has a `transform` attrib, conversion of - * the other attribs will be skipped, else the values are assumed to be - * either strings or: + * transformation attributes, i.e. `transform`, `rotate`, `scale`, `translate`. + * + * @remarks + * If the element has a `transform` attrib, conversion of the other attribs will + * be skipped, else the values are assumed to be either strings or: * * - `transform`: 6-element numeric array (mat23) * - `translate`: 2-element array * - `rotate`: number (angle in radians) * - `scale`: number (uniform scale) or 2-elem array * - * If no `transform` is given, the resulting transformation order will - * always be TRS. Any string values given will be used as-is and - * therefore need to be complete, e.g. `{ rotate: "rotate(60)" }` + * If no `transform` is given, the resulting transformation order will always be + * TRS. Any string values given will be used as-is and therefore need to be + * complete, e.g. `{ rotate: "rotate(60)" }` * - * For color related attribs (`fill`, `stroke`), if given value is - * array-like, a number or an {@link @thi.ng/color#IColor} instance, it - * will be converted into a CSS color string using - * {@link @thi.ng/color#asCSS}. + * For color related attribs (`fill`, `stroke`), if given value is array-like, a + * number or an {@link @thi.ng/color#IColor} instance, it will be converted into + * a CSS color string using {@link @thi.ng/color#asCSS}. * - * String color attribs prefixed with `$` are replaced with `url(#...)` - * refs (used for referencing gradients). + * String color attribs prefixed with `$` are replaced with `url(#...)` refs + * (used for referencing gradients). * - * Returns updated attribs or `undefined` if `attribs` itself is - * null-ish. + * Returns updated attribs or `undefined` if `attribs` itself is null-ish. * * @param attribs - attributes object * diff --git a/packages/hiccup-svg/src/svg.ts b/packages/hiccup-svg/src/svg.ts index dc2a803150..a570d8dbb5 100644 --- a/packages/hiccup-svg/src/svg.ts +++ b/packages/hiccup-svg/src/svg.ts @@ -1,6 +1,6 @@ import { XML_SVG, XML_XLINK } from "@thi.ng/prefixes"; import { convertTree } from "./convert"; -import { fattribs } from "./format"; +import { fattribs, numericAttribs } from "./format"; /** * Defines an root element with default XML namespaces. By default @@ -16,12 +16,19 @@ import { fattribs } from "./format"; * @param body - shape primitives */ export const svg = (attribs: any, ...body: any[]): any[] => { - attribs = fattribs({ - version: "1.1", - xmlns: XML_SVG, - "xmlns:xlink": XML_XLINK, - ...attribs, - }); + attribs = fattribs( + numericAttribs( + { + version: "1.1", + xmlns: XML_SVG, + "xmlns:xlink": XML_XLINK, + ...attribs, + }, + "width", + "height", + "stroke-width" + ) + ); if (attribs.convert) { delete attribs.convert; body = body.map(convertTree); From 8ef41711d2fb9e9ade78cd4b40bc95c7e2543607 Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Sun, 22 Aug 2021 02:16:39 +0200 Subject: [PATCH 20/76] chore(associative): remove obsolete test/dummy code --- packages/associative/src/join.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/associative/src/join.ts b/packages/associative/src/join.ts index 4017f79340..04920989d1 100644 --- a/packages/associative/src/join.ts +++ b/packages/associative/src/join.ts @@ -123,5 +123,3 @@ export const joinWith = ( } return empty(a, Set); }; - -joinWith(new Set([{ a: 1, b: 2 }]), new Set([{ id: 1, c: 2 }]), { a: "id" }); From ba4057c4f1bfe4d093674c953080ae84fd92a531 Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Sun, 22 Aug 2021 02:20:13 +0200 Subject: [PATCH 21/76] feat(color-palettes): add more palettes, update gen - add more themes from various collections - sort all themes by their KSUID - minor refactor swatch gen --- assets/color-palettes/00ORLwKeosxtEeZxq.svg | 2 +- assets/color-palettes/00OkEXVdMQmQ1oQTp.svg | 1 + assets/color-palettes/00OqoPfvP6y1EmXZQ.svg | 1 + assets/color-palettes/00OwGARqASN2zngyg.svg | 1 + assets/color-palettes/00PBWZvgJvi4gdxGj.svg | 1 + assets/color-palettes/00PhEgF9AlI5PTrLB.svg | 2 +- assets/color-palettes/00PhGSfzpeU5Bkh47a.svg | 2 +- assets/color-palettes/00Q9Yxm7DrZXqTkyS.svg | 1 + assets/color-palettes/00QLNHv6JW1bL031O.svg | 1 + assets/color-palettes/00QLNIKFhjs5rJCjr.svg | 2 +- assets/color-palettes/00QLNIQXmbJgghRXg.svg | 1 + assets/color-palettes/00QLNIVe1AkurVqYj.svg | 1 + assets/color-palettes/00QLcP0k2fPAz0KHR.svg | 2 +- assets/color-palettes/00QLfPj2trTnyJHAg.svg | 2 +- assets/color-palettes/00QLfPkuNx1jE7sMm.svg | 2 +- assets/color-palettes/00QLfPm4UfkMiaicq.svg | 2 +- assets/color-palettes/00QLfPtu33OAdSN4Y.svg | 1 + assets/color-palettes/00QLfPusSpy3uFOpb.svg | 1 + assets/color-palettes/00QLj3F8heV6QT4YG.svg | 1 + assets/color-palettes/00QLj3PylHkh8qY2R.svg | 1 + assets/color-palettes/00QLj3Yj1pUNnTKVY.svg | 2 +- assets/color-palettes/00QLj3dmHiT8Ep1Un.svg | 1 + assets/color-palettes/00QLj3fsFErIl5W0b.svg | 2 +- assets/color-palettes/00QLn7BH2doQfh4Yw.svg | 1 + assets/color-palettes/00QLn7C4NpA33i7Ew.svg | 1 + assets/color-palettes/00QLn7G59JhKtuUs0.svg | 2 +- assets/color-palettes/00QLn7Lr9V98YD0zY.svg | 2 +- assets/color-palettes/00QLn7XfPKvMKCrzO.svg | 2 +- assets/color-palettes/00QLn7oETUQZKKr34.svg | 1 + assets/color-palettes/00QLqYLjs4H7kdHrp.svg | 1 + assets/color-palettes/00QLqYQ3HE1oy3ByI.svg | 2 +- assets/color-palettes/00QLqYS2ZOgkMeMAE.svg | 2 +- assets/color-palettes/00QLslJAGNA8YREKh.svg | 2 +- assets/color-palettes/00QMA8RhpXdgwPtLn.svg | 2 +- assets/color-palettes/00QMA8SkIwjW5KEch.svg | 2 +- assets/color-palettes/00QMA8h2BH69zyEk0.svg | 2 +- assets/color-palettes/00QMA8tedClukB7IL.svg | 2 +- assets/color-palettes/00QMEZVdDC6dMYpjp.svg | 2 +- assets/color-palettes/00QMEZazmZG85DaWw.svg | 2 +- assets/color-palettes/00QMEZb0EorAC0k7y.svg | 2 +- assets/color-palettes/00QMEZgMsSVZavaNd.svg | 2 +- assets/color-palettes/00QMEZl7ulP3f2WaX.svg | 2 +- assets/color-palettes/00QMEZzTrk06iVgaK.svg | 2 +- assets/color-palettes/00QMKP9yh8XlJYcgM.svg | 2 +- assets/color-palettes/00QMSRoDq0SDYprak.svg | 2 +- assets/color-palettes/00QMSRqFlj9B8ayZW.svg | 2 +- assets/color-palettes/00QMSSCjsJpojbpYz.svg | 2 +- assets/color-palettes/00QMSSCjsJpojbpYza.svg | 1 + assets/color-palettes/00QMSSEJXJOUdMoSj.svg | 2 +- assets/color-palettes/00QMSSK2AEOwErS5M.svg | 1 + assets/color-palettes/00QMSSK2AEOwErS5Ma.svg | 1 + assets/color-palettes/00QMSSK2AEOwErS5Mb.svg | 1 + assets/color-palettes/00QMxescYuh8eYT39.svg | 2 +- assets/color-palettes/00QMxexuJYMe6enbZ.svg | 1 + assets/color-palettes/00QN31G5AB2FTftCe.svg | 2 +- assets/color-palettes/00QN49h9BAkHHyKJh.svg | 2 +- assets/color-palettes/00RB4I684QFqc2HAM.svg | 2 +- assets/color-palettes/00RB4I6NRn6CF3oS0.svg | 2 +- assets/color-palettes/00RB4I89XiwNSlobH.svg | 2 +- assets/color-palettes/00RB4IFxoIYII3Cqi.svg | 2 +- assets/color-palettes/00RGly9mkWt6i3suL.svg | 2 +- assets/color-palettes/00RGly9mkWt6i3suLa.svg | 2 +- assets/color-palettes/00RGlyFVinQl5cj21.svg | 2 +- assets/color-palettes/00RGlyJwY9q4Sh0tQ.svg | 2 +- assets/color-palettes/00RGlyLkqOmPmbuX6.svg | 2 +- assets/color-palettes/00RTRDAqmTEarmyeR.svg | 2 +- assets/color-palettes/00RTRDIRDbnErAXHV.svg | 2 +- assets/color-palettes/00RTRDIzyUse2qJ9N.svg | 2 +- assets/color-palettes/00RTRDNL7MjHkDys4.svg | 2 +- assets/color-palettes/00RTRDOtbFF8KFNH9.svg | 2 +- assets/color-palettes/00RYyJ25i8zFwOJGh.svg | 2 +- assets/color-palettes/00RYyJ4jHYfMF6yfy.svg | 2 +- assets/color-palettes/00RYyJDsTKzsBBgCO.svg | 2 +- assets/color-palettes/00RlTJrw94KFOF3zL.svg | 2 +- assets/color-palettes/00RlTJxJZ16ivgKBw.svg | 2 +- assets/color-palettes/00RnZfzWN7Ewml76I.svg | 2 +- assets/color-palettes/00T2A6qx5VScIQ9bU.svg | 2 +- assets/color-palettes/00UWNvBioJ6ZSjDix.svg | 1 + assets/color-palettes/00UWNvEkTsOF0aQHh.svg | 2 +- assets/color-palettes/00UWNvPqOf9t4PZFb.svg | 1 + assets/color-palettes/00Yi9btvr8RY4NROm.svg | 1 + assets/color-palettes/00Yi9c5ifk9eXO5XX.svg | 1 + assets/color-palettes/00YxFeFYOuMCD0qWe.svg | 1 + assets/color-palettes/00b7Az8pDWEjBLMHs.svg | 1 + assets/color-palettes/00bYah8QOLZNgszuV.svg | 2 +- assets/color-palettes/00bYahDYU6E7wDJwL.svg | 2 +- assets/color-palettes/00bYahKZ8LbVgx54y.svg | 1 + assets/color-palettes/00bYcivY8Jqx8nsiR.svg | 2 +- assets/color-palettes/00bYcixZkofJhLJ8w.svg | 2 +- assets/color-palettes/00bYcj0VC9wmmKNm5.svg | 1 + assets/color-palettes/00bYcj4uvi0NIlqyw.svg | 2 +- assets/color-palettes/00bYcjDCylnf3k1aB.svg | 2 +- assets/color-palettes/00bYiYyzA6ODPIC8V.svg | 1 + assets/color-palettes/00bYiZ8YHLsLMA7j3.svg | 1 + assets/color-palettes/00f5whlJFUwx7AaEe.svg | 1 + assets/color-palettes/00g3Jv9zydyJs2QlX.svg | 1 + assets/color-palettes/00g3JvJ0ZydpXXvEC.svg | 2 +- assets/color-palettes/00gSFutQrW4MxihX7.svg | 1 + assets/color-palettes/00i0fT276sz5H8vMy.svg | 1 + assets/color-palettes/00i0iHNQPUpX6Jzsb.svg | 1 + assets/color-palettes/00i0iHUSVMHOENQof.svg | 1 + assets/color-palettes/00i0iHWHzzEoacpfQ.svg | 1 + assets/color-palettes/00i0iHXq6xPzf1pt0.svg | 1 + packages/color-palettes/README.md | 100 +- packages/color-palettes/package.json | 2 +- packages/color-palettes/src/index.ts | 1114 +++++++++++------- packages/color-palettes/tools/index.ts | 12 +- packages/color-palettes/tpl.readme.md | 89 +- 108 files changed, 950 insertions(+), 533 deletions(-) create mode 100644 assets/color-palettes/00OkEXVdMQmQ1oQTp.svg create mode 100644 assets/color-palettes/00OqoPfvP6y1EmXZQ.svg create mode 100644 assets/color-palettes/00OwGARqASN2zngyg.svg create mode 100644 assets/color-palettes/00PBWZvgJvi4gdxGj.svg create mode 100644 assets/color-palettes/00Q9Yxm7DrZXqTkyS.svg create mode 100644 assets/color-palettes/00QLNHv6JW1bL031O.svg create mode 100644 assets/color-palettes/00QLNIQXmbJgghRXg.svg create mode 100644 assets/color-palettes/00QLNIVe1AkurVqYj.svg create mode 100644 assets/color-palettes/00QLfPtu33OAdSN4Y.svg create mode 100644 assets/color-palettes/00QLfPusSpy3uFOpb.svg create mode 100644 assets/color-palettes/00QLj3F8heV6QT4YG.svg create mode 100644 assets/color-palettes/00QLj3PylHkh8qY2R.svg create mode 100644 assets/color-palettes/00QLj3dmHiT8Ep1Un.svg create mode 100644 assets/color-palettes/00QLn7BH2doQfh4Yw.svg create mode 100644 assets/color-palettes/00QLn7C4NpA33i7Ew.svg create mode 100644 assets/color-palettes/00QLn7oETUQZKKr34.svg create mode 100644 assets/color-palettes/00QLqYLjs4H7kdHrp.svg create mode 100644 assets/color-palettes/00QMSSCjsJpojbpYza.svg create mode 100644 assets/color-palettes/00QMSSK2AEOwErS5M.svg create mode 100644 assets/color-palettes/00QMSSK2AEOwErS5Ma.svg create mode 100644 assets/color-palettes/00QMSSK2AEOwErS5Mb.svg create mode 100644 assets/color-palettes/00QMxexuJYMe6enbZ.svg create mode 100644 assets/color-palettes/00UWNvBioJ6ZSjDix.svg create mode 100644 assets/color-palettes/00UWNvPqOf9t4PZFb.svg create mode 100644 assets/color-palettes/00Yi9btvr8RY4NROm.svg create mode 100644 assets/color-palettes/00Yi9c5ifk9eXO5XX.svg create mode 100644 assets/color-palettes/00YxFeFYOuMCD0qWe.svg create mode 100644 assets/color-palettes/00b7Az8pDWEjBLMHs.svg create mode 100644 assets/color-palettes/00bYahKZ8LbVgx54y.svg create mode 100644 assets/color-palettes/00bYcj0VC9wmmKNm5.svg create mode 100644 assets/color-palettes/00bYiYyzA6ODPIC8V.svg create mode 100644 assets/color-palettes/00bYiZ8YHLsLMA7j3.svg create mode 100644 assets/color-palettes/00f5whlJFUwx7AaEe.svg create mode 100644 assets/color-palettes/00g3Jv9zydyJs2QlX.svg create mode 100644 assets/color-palettes/00gSFutQrW4MxihX7.svg create mode 100644 assets/color-palettes/00i0fT276sz5H8vMy.svg create mode 100644 assets/color-palettes/00i0iHNQPUpX6Jzsb.svg create mode 100644 assets/color-palettes/00i0iHUSVMHOENQof.svg create mode 100644 assets/color-palettes/00i0iHWHzzEoacpfQ.svg create mode 100644 assets/color-palettes/00i0iHXq6xPzf1pt0.svg diff --git a/assets/color-palettes/00ORLwKeosxtEeZxq.svg b/assets/color-palettes/00ORLwKeosxtEeZxq.svg index b647a732e7..1493d341cf 100644 --- a/assets/color-palettes/00ORLwKeosxtEeZxq.svg +++ b/assets/color-palettes/00ORLwKeosxtEeZxq.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00OkEXVdMQmQ1oQTp.svg b/assets/color-palettes/00OkEXVdMQmQ1oQTp.svg new file mode 100644 index 0000000000..b93fdabc55 --- /dev/null +++ b/assets/color-palettes/00OkEXVdMQmQ1oQTp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00OqoPfvP6y1EmXZQ.svg b/assets/color-palettes/00OqoPfvP6y1EmXZQ.svg new file mode 100644 index 0000000000..49cd8e653b --- /dev/null +++ b/assets/color-palettes/00OqoPfvP6y1EmXZQ.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00OwGARqASN2zngyg.svg b/assets/color-palettes/00OwGARqASN2zngyg.svg new file mode 100644 index 0000000000..d1a81c12f6 --- /dev/null +++ b/assets/color-palettes/00OwGARqASN2zngyg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00PBWZvgJvi4gdxGj.svg b/assets/color-palettes/00PBWZvgJvi4gdxGj.svg new file mode 100644 index 0000000000..d4239cbcb7 --- /dev/null +++ b/assets/color-palettes/00PBWZvgJvi4gdxGj.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00PhEgF9AlI5PTrLB.svg b/assets/color-palettes/00PhEgF9AlI5PTrLB.svg index 7309966431..97bf02c716 100644 --- a/assets/color-palettes/00PhEgF9AlI5PTrLB.svg +++ b/assets/color-palettes/00PhEgF9AlI5PTrLB.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00PhGSfzpeU5Bkh47a.svg b/assets/color-palettes/00PhGSfzpeU5Bkh47a.svg index 248b92df1c..fcf5d20857 100644 --- a/assets/color-palettes/00PhGSfzpeU5Bkh47a.svg +++ b/assets/color-palettes/00PhGSfzpeU5Bkh47a.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00Q9Yxm7DrZXqTkyS.svg b/assets/color-palettes/00Q9Yxm7DrZXqTkyS.svg new file mode 100644 index 0000000000..7bd2411bf7 --- /dev/null +++ b/assets/color-palettes/00Q9Yxm7DrZXqTkyS.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00QLNHv6JW1bL031O.svg b/assets/color-palettes/00QLNHv6JW1bL031O.svg new file mode 100644 index 0000000000..a244c94eb1 --- /dev/null +++ b/assets/color-palettes/00QLNHv6JW1bL031O.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00QLNIKFhjs5rJCjr.svg b/assets/color-palettes/00QLNIKFhjs5rJCjr.svg index 391a0b9fc7..013ada720b 100644 --- a/assets/color-palettes/00QLNIKFhjs5rJCjr.svg +++ b/assets/color-palettes/00QLNIKFhjs5rJCjr.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00QLNIQXmbJgghRXg.svg b/assets/color-palettes/00QLNIQXmbJgghRXg.svg new file mode 100644 index 0000000000..46f3c18a1e --- /dev/null +++ b/assets/color-palettes/00QLNIQXmbJgghRXg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00QLNIVe1AkurVqYj.svg b/assets/color-palettes/00QLNIVe1AkurVqYj.svg new file mode 100644 index 0000000000..86185ae365 --- /dev/null +++ b/assets/color-palettes/00QLNIVe1AkurVqYj.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00QLcP0k2fPAz0KHR.svg b/assets/color-palettes/00QLcP0k2fPAz0KHR.svg index 0056e2eb3a..7cdecaecc0 100644 --- a/assets/color-palettes/00QLcP0k2fPAz0KHR.svg +++ b/assets/color-palettes/00QLcP0k2fPAz0KHR.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00QLfPj2trTnyJHAg.svg b/assets/color-palettes/00QLfPj2trTnyJHAg.svg index 267d479837..06583c00e7 100644 --- a/assets/color-palettes/00QLfPj2trTnyJHAg.svg +++ b/assets/color-palettes/00QLfPj2trTnyJHAg.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00QLfPkuNx1jE7sMm.svg b/assets/color-palettes/00QLfPkuNx1jE7sMm.svg index 5baa44fa9a..9fc329b4a6 100644 --- a/assets/color-palettes/00QLfPkuNx1jE7sMm.svg +++ b/assets/color-palettes/00QLfPkuNx1jE7sMm.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00QLfPm4UfkMiaicq.svg b/assets/color-palettes/00QLfPm4UfkMiaicq.svg index 5e51ab0e01..671beb2a29 100644 --- a/assets/color-palettes/00QLfPm4UfkMiaicq.svg +++ b/assets/color-palettes/00QLfPm4UfkMiaicq.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00QLfPtu33OAdSN4Y.svg b/assets/color-palettes/00QLfPtu33OAdSN4Y.svg new file mode 100644 index 0000000000..9165358b3e --- /dev/null +++ b/assets/color-palettes/00QLfPtu33OAdSN4Y.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00QLfPusSpy3uFOpb.svg b/assets/color-palettes/00QLfPusSpy3uFOpb.svg new file mode 100644 index 0000000000..8356e19f9d --- /dev/null +++ b/assets/color-palettes/00QLfPusSpy3uFOpb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00QLj3F8heV6QT4YG.svg b/assets/color-palettes/00QLj3F8heV6QT4YG.svg new file mode 100644 index 0000000000..7041577c53 --- /dev/null +++ b/assets/color-palettes/00QLj3F8heV6QT4YG.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00QLj3PylHkh8qY2R.svg b/assets/color-palettes/00QLj3PylHkh8qY2R.svg new file mode 100644 index 0000000000..3c66cd4098 --- /dev/null +++ b/assets/color-palettes/00QLj3PylHkh8qY2R.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00QLj3Yj1pUNnTKVY.svg b/assets/color-palettes/00QLj3Yj1pUNnTKVY.svg index e099bdfd7f..a78454c4eb 100644 --- a/assets/color-palettes/00QLj3Yj1pUNnTKVY.svg +++ b/assets/color-palettes/00QLj3Yj1pUNnTKVY.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00QLj3dmHiT8Ep1Un.svg b/assets/color-palettes/00QLj3dmHiT8Ep1Un.svg new file mode 100644 index 0000000000..ad3790dae2 --- /dev/null +++ b/assets/color-palettes/00QLj3dmHiT8Ep1Un.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00QLj3fsFErIl5W0b.svg b/assets/color-palettes/00QLj3fsFErIl5W0b.svg index 46251335b4..2718088882 100644 --- a/assets/color-palettes/00QLj3fsFErIl5W0b.svg +++ b/assets/color-palettes/00QLj3fsFErIl5W0b.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00QLn7BH2doQfh4Yw.svg b/assets/color-palettes/00QLn7BH2doQfh4Yw.svg new file mode 100644 index 0000000000..d117f3832f --- /dev/null +++ b/assets/color-palettes/00QLn7BH2doQfh4Yw.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00QLn7C4NpA33i7Ew.svg b/assets/color-palettes/00QLn7C4NpA33i7Ew.svg new file mode 100644 index 0000000000..d7968cfd49 --- /dev/null +++ b/assets/color-palettes/00QLn7C4NpA33i7Ew.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00QLn7G59JhKtuUs0.svg b/assets/color-palettes/00QLn7G59JhKtuUs0.svg index e16f03f362..11e2446e80 100644 --- a/assets/color-palettes/00QLn7G59JhKtuUs0.svg +++ b/assets/color-palettes/00QLn7G59JhKtuUs0.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00QLn7Lr9V98YD0zY.svg b/assets/color-palettes/00QLn7Lr9V98YD0zY.svg index c86922c39a..8753d3b0e4 100644 --- a/assets/color-palettes/00QLn7Lr9V98YD0zY.svg +++ b/assets/color-palettes/00QLn7Lr9V98YD0zY.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00QLn7XfPKvMKCrzO.svg b/assets/color-palettes/00QLn7XfPKvMKCrzO.svg index 4b6e42800f..f2f2396041 100644 --- a/assets/color-palettes/00QLn7XfPKvMKCrzO.svg +++ b/assets/color-palettes/00QLn7XfPKvMKCrzO.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00QLn7oETUQZKKr34.svg b/assets/color-palettes/00QLn7oETUQZKKr34.svg new file mode 100644 index 0000000000..8ac82ca687 --- /dev/null +++ b/assets/color-palettes/00QLn7oETUQZKKr34.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00QLqYLjs4H7kdHrp.svg b/assets/color-palettes/00QLqYLjs4H7kdHrp.svg new file mode 100644 index 0000000000..408f9c612f --- /dev/null +++ b/assets/color-palettes/00QLqYLjs4H7kdHrp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00QLqYQ3HE1oy3ByI.svg b/assets/color-palettes/00QLqYQ3HE1oy3ByI.svg index 28498221fc..d0675e6d56 100644 --- a/assets/color-palettes/00QLqYQ3HE1oy3ByI.svg +++ b/assets/color-palettes/00QLqYQ3HE1oy3ByI.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00QLqYS2ZOgkMeMAE.svg b/assets/color-palettes/00QLqYS2ZOgkMeMAE.svg index 490b732965..92de11a230 100644 --- a/assets/color-palettes/00QLqYS2ZOgkMeMAE.svg +++ b/assets/color-palettes/00QLqYS2ZOgkMeMAE.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00QLslJAGNA8YREKh.svg b/assets/color-palettes/00QLslJAGNA8YREKh.svg index df3b238a0c..e4d4dca439 100644 --- a/assets/color-palettes/00QLslJAGNA8YREKh.svg +++ b/assets/color-palettes/00QLslJAGNA8YREKh.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00QMA8RhpXdgwPtLn.svg b/assets/color-palettes/00QMA8RhpXdgwPtLn.svg index 20b421faca..7346505d9d 100644 --- a/assets/color-palettes/00QMA8RhpXdgwPtLn.svg +++ b/assets/color-palettes/00QMA8RhpXdgwPtLn.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00QMA8SkIwjW5KEch.svg b/assets/color-palettes/00QMA8SkIwjW5KEch.svg index e3be63dfd5..5a7639d5e0 100644 --- a/assets/color-palettes/00QMA8SkIwjW5KEch.svg +++ b/assets/color-palettes/00QMA8SkIwjW5KEch.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00QMA8h2BH69zyEk0.svg b/assets/color-palettes/00QMA8h2BH69zyEk0.svg index 8eae6d49ff..090216e978 100644 --- a/assets/color-palettes/00QMA8h2BH69zyEk0.svg +++ b/assets/color-palettes/00QMA8h2BH69zyEk0.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00QMA8tedClukB7IL.svg b/assets/color-palettes/00QMA8tedClukB7IL.svg index a683e8f1ed..856e3121d0 100644 --- a/assets/color-palettes/00QMA8tedClukB7IL.svg +++ b/assets/color-palettes/00QMA8tedClukB7IL.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00QMEZVdDC6dMYpjp.svg b/assets/color-palettes/00QMEZVdDC6dMYpjp.svg index b361a99760..a5fc0e1a05 100644 --- a/assets/color-palettes/00QMEZVdDC6dMYpjp.svg +++ b/assets/color-palettes/00QMEZVdDC6dMYpjp.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00QMEZazmZG85DaWw.svg b/assets/color-palettes/00QMEZazmZG85DaWw.svg index cf8335dec3..f9d1d05408 100644 --- a/assets/color-palettes/00QMEZazmZG85DaWw.svg +++ b/assets/color-palettes/00QMEZazmZG85DaWw.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00QMEZb0EorAC0k7y.svg b/assets/color-palettes/00QMEZb0EorAC0k7y.svg index edfbdf4c61..4f98281911 100644 --- a/assets/color-palettes/00QMEZb0EorAC0k7y.svg +++ b/assets/color-palettes/00QMEZb0EorAC0k7y.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00QMEZgMsSVZavaNd.svg b/assets/color-palettes/00QMEZgMsSVZavaNd.svg index 8fa022f3ca..02c42e4851 100644 --- a/assets/color-palettes/00QMEZgMsSVZavaNd.svg +++ b/assets/color-palettes/00QMEZgMsSVZavaNd.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00QMEZl7ulP3f2WaX.svg b/assets/color-palettes/00QMEZl7ulP3f2WaX.svg index c975a5e60c..088fb286fb 100644 --- a/assets/color-palettes/00QMEZl7ulP3f2WaX.svg +++ b/assets/color-palettes/00QMEZl7ulP3f2WaX.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00QMEZzTrk06iVgaK.svg b/assets/color-palettes/00QMEZzTrk06iVgaK.svg index 99ce337dae..377990b974 100644 --- a/assets/color-palettes/00QMEZzTrk06iVgaK.svg +++ b/assets/color-palettes/00QMEZzTrk06iVgaK.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00QMKP9yh8XlJYcgM.svg b/assets/color-palettes/00QMKP9yh8XlJYcgM.svg index 8ae0d03fc5..de1d579bd2 100644 --- a/assets/color-palettes/00QMKP9yh8XlJYcgM.svg +++ b/assets/color-palettes/00QMKP9yh8XlJYcgM.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00QMSRoDq0SDYprak.svg b/assets/color-palettes/00QMSRoDq0SDYprak.svg index 439035a394..d22bcf986b 100644 --- a/assets/color-palettes/00QMSRoDq0SDYprak.svg +++ b/assets/color-palettes/00QMSRoDq0SDYprak.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00QMSRqFlj9B8ayZW.svg b/assets/color-palettes/00QMSRqFlj9B8ayZW.svg index 0374313706..8c1cdb2628 100644 --- a/assets/color-palettes/00QMSRqFlj9B8ayZW.svg +++ b/assets/color-palettes/00QMSRqFlj9B8ayZW.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00QMSSCjsJpojbpYz.svg b/assets/color-palettes/00QMSSCjsJpojbpYz.svg index e9424d34e1..e90287d73e 100644 --- a/assets/color-palettes/00QMSSCjsJpojbpYz.svg +++ b/assets/color-palettes/00QMSSCjsJpojbpYz.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00QMSSCjsJpojbpYza.svg b/assets/color-palettes/00QMSSCjsJpojbpYza.svg new file mode 100644 index 0000000000..669b327c65 --- /dev/null +++ b/assets/color-palettes/00QMSSCjsJpojbpYza.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00QMSSEJXJOUdMoSj.svg b/assets/color-palettes/00QMSSEJXJOUdMoSj.svg index 0ef3170dc4..a5d09cab3f 100644 --- a/assets/color-palettes/00QMSSEJXJOUdMoSj.svg +++ b/assets/color-palettes/00QMSSEJXJOUdMoSj.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00QMSSK2AEOwErS5M.svg b/assets/color-palettes/00QMSSK2AEOwErS5M.svg new file mode 100644 index 0000000000..70d1470951 --- /dev/null +++ b/assets/color-palettes/00QMSSK2AEOwErS5M.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00QMSSK2AEOwErS5Ma.svg b/assets/color-palettes/00QMSSK2AEOwErS5Ma.svg new file mode 100644 index 0000000000..8da1c0481d --- /dev/null +++ b/assets/color-palettes/00QMSSK2AEOwErS5Ma.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00QMSSK2AEOwErS5Mb.svg b/assets/color-palettes/00QMSSK2AEOwErS5Mb.svg new file mode 100644 index 0000000000..d895426d7f --- /dev/null +++ b/assets/color-palettes/00QMSSK2AEOwErS5Mb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00QMxescYuh8eYT39.svg b/assets/color-palettes/00QMxescYuh8eYT39.svg index f36801cbda..c905652556 100644 --- a/assets/color-palettes/00QMxescYuh8eYT39.svg +++ b/assets/color-palettes/00QMxescYuh8eYT39.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00QMxexuJYMe6enbZ.svg b/assets/color-palettes/00QMxexuJYMe6enbZ.svg new file mode 100644 index 0000000000..61e23d3159 --- /dev/null +++ b/assets/color-palettes/00QMxexuJYMe6enbZ.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00QN31G5AB2FTftCe.svg b/assets/color-palettes/00QN31G5AB2FTftCe.svg index c4589aa2fe..df7654e8da 100644 --- a/assets/color-palettes/00QN31G5AB2FTftCe.svg +++ b/assets/color-palettes/00QN31G5AB2FTftCe.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00QN49h9BAkHHyKJh.svg b/assets/color-palettes/00QN49h9BAkHHyKJh.svg index 358ae5ef78..94678f3531 100644 --- a/assets/color-palettes/00QN49h9BAkHHyKJh.svg +++ b/assets/color-palettes/00QN49h9BAkHHyKJh.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00RB4I684QFqc2HAM.svg b/assets/color-palettes/00RB4I684QFqc2HAM.svg index 0663d250cc..663241d73b 100644 --- a/assets/color-palettes/00RB4I684QFqc2HAM.svg +++ b/assets/color-palettes/00RB4I684QFqc2HAM.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00RB4I6NRn6CF3oS0.svg b/assets/color-palettes/00RB4I6NRn6CF3oS0.svg index c8b2d1b7bd..52cd26b24e 100644 --- a/assets/color-palettes/00RB4I6NRn6CF3oS0.svg +++ b/assets/color-palettes/00RB4I6NRn6CF3oS0.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00RB4I89XiwNSlobH.svg b/assets/color-palettes/00RB4I89XiwNSlobH.svg index fe92406017..36f37f04d3 100644 --- a/assets/color-palettes/00RB4I89XiwNSlobH.svg +++ b/assets/color-palettes/00RB4I89XiwNSlobH.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00RB4IFxoIYII3Cqi.svg b/assets/color-palettes/00RB4IFxoIYII3Cqi.svg index f912cddcd9..ac4340b1ab 100644 --- a/assets/color-palettes/00RB4IFxoIYII3Cqi.svg +++ b/assets/color-palettes/00RB4IFxoIYII3Cqi.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00RGly9mkWt6i3suL.svg b/assets/color-palettes/00RGly9mkWt6i3suL.svg index dc0a3818b0..1204de2a7f 100644 --- a/assets/color-palettes/00RGly9mkWt6i3suL.svg +++ b/assets/color-palettes/00RGly9mkWt6i3suL.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00RGly9mkWt6i3suLa.svg b/assets/color-palettes/00RGly9mkWt6i3suLa.svg index 29200b82a7..59de53bfca 100644 --- a/assets/color-palettes/00RGly9mkWt6i3suLa.svg +++ b/assets/color-palettes/00RGly9mkWt6i3suLa.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00RGlyFVinQl5cj21.svg b/assets/color-palettes/00RGlyFVinQl5cj21.svg index 3f2d2daae2..972c0a0e2b 100644 --- a/assets/color-palettes/00RGlyFVinQl5cj21.svg +++ b/assets/color-palettes/00RGlyFVinQl5cj21.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00RGlyJwY9q4Sh0tQ.svg b/assets/color-palettes/00RGlyJwY9q4Sh0tQ.svg index bc68192a45..80a1d58092 100644 --- a/assets/color-palettes/00RGlyJwY9q4Sh0tQ.svg +++ b/assets/color-palettes/00RGlyJwY9q4Sh0tQ.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00RGlyLkqOmPmbuX6.svg b/assets/color-palettes/00RGlyLkqOmPmbuX6.svg index e13f5953f4..d3f959d36a 100644 --- a/assets/color-palettes/00RGlyLkqOmPmbuX6.svg +++ b/assets/color-palettes/00RGlyLkqOmPmbuX6.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00RTRDAqmTEarmyeR.svg b/assets/color-palettes/00RTRDAqmTEarmyeR.svg index 70e7363f81..a10d8761bd 100644 --- a/assets/color-palettes/00RTRDAqmTEarmyeR.svg +++ b/assets/color-palettes/00RTRDAqmTEarmyeR.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00RTRDIRDbnErAXHV.svg b/assets/color-palettes/00RTRDIRDbnErAXHV.svg index de325a84f1..600380f357 100644 --- a/assets/color-palettes/00RTRDIRDbnErAXHV.svg +++ b/assets/color-palettes/00RTRDIRDbnErAXHV.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00RTRDIzyUse2qJ9N.svg b/assets/color-palettes/00RTRDIzyUse2qJ9N.svg index 7d2281b95f..014e901128 100644 --- a/assets/color-palettes/00RTRDIzyUse2qJ9N.svg +++ b/assets/color-palettes/00RTRDIzyUse2qJ9N.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00RTRDNL7MjHkDys4.svg b/assets/color-palettes/00RTRDNL7MjHkDys4.svg index 7e2a8c17b9..5763f2a825 100644 --- a/assets/color-palettes/00RTRDNL7MjHkDys4.svg +++ b/assets/color-palettes/00RTRDNL7MjHkDys4.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00RTRDOtbFF8KFNH9.svg b/assets/color-palettes/00RTRDOtbFF8KFNH9.svg index bf40a5a207..8cd6afb070 100644 --- a/assets/color-palettes/00RTRDOtbFF8KFNH9.svg +++ b/assets/color-palettes/00RTRDOtbFF8KFNH9.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00RYyJ25i8zFwOJGh.svg b/assets/color-palettes/00RYyJ25i8zFwOJGh.svg index 8f5a22b4c8..4ffe705d81 100644 --- a/assets/color-palettes/00RYyJ25i8zFwOJGh.svg +++ b/assets/color-palettes/00RYyJ25i8zFwOJGh.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00RYyJ4jHYfMF6yfy.svg b/assets/color-palettes/00RYyJ4jHYfMF6yfy.svg index 714bf6e6f2..59535614c7 100644 --- a/assets/color-palettes/00RYyJ4jHYfMF6yfy.svg +++ b/assets/color-palettes/00RYyJ4jHYfMF6yfy.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00RYyJDsTKzsBBgCO.svg b/assets/color-palettes/00RYyJDsTKzsBBgCO.svg index b761e4f4fb..aebf50d1da 100644 --- a/assets/color-palettes/00RYyJDsTKzsBBgCO.svg +++ b/assets/color-palettes/00RYyJDsTKzsBBgCO.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00RlTJrw94KFOF3zL.svg b/assets/color-palettes/00RlTJrw94KFOF3zL.svg index fa7254eeea..53431d720f 100644 --- a/assets/color-palettes/00RlTJrw94KFOF3zL.svg +++ b/assets/color-palettes/00RlTJrw94KFOF3zL.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00RlTJxJZ16ivgKBw.svg b/assets/color-palettes/00RlTJxJZ16ivgKBw.svg index fd729e2344..31142b964a 100644 --- a/assets/color-palettes/00RlTJxJZ16ivgKBw.svg +++ b/assets/color-palettes/00RlTJxJZ16ivgKBw.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00RnZfzWN7Ewml76I.svg b/assets/color-palettes/00RnZfzWN7Ewml76I.svg index 22bc9ed5b4..f04bbc18c0 100644 --- a/assets/color-palettes/00RnZfzWN7Ewml76I.svg +++ b/assets/color-palettes/00RnZfzWN7Ewml76I.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00T2A6qx5VScIQ9bU.svg b/assets/color-palettes/00T2A6qx5VScIQ9bU.svg index 4a29be60de..07c521c2f2 100644 --- a/assets/color-palettes/00T2A6qx5VScIQ9bU.svg +++ b/assets/color-palettes/00T2A6qx5VScIQ9bU.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00UWNvBioJ6ZSjDix.svg b/assets/color-palettes/00UWNvBioJ6ZSjDix.svg new file mode 100644 index 0000000000..98bc98176c --- /dev/null +++ b/assets/color-palettes/00UWNvBioJ6ZSjDix.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00UWNvEkTsOF0aQHh.svg b/assets/color-palettes/00UWNvEkTsOF0aQHh.svg index f287a29a28..2ee28e9921 100644 --- a/assets/color-palettes/00UWNvEkTsOF0aQHh.svg +++ b/assets/color-palettes/00UWNvEkTsOF0aQHh.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00UWNvPqOf9t4PZFb.svg b/assets/color-palettes/00UWNvPqOf9t4PZFb.svg new file mode 100644 index 0000000000..1c4c5b1c9a --- /dev/null +++ b/assets/color-palettes/00UWNvPqOf9t4PZFb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00Yi9btvr8RY4NROm.svg b/assets/color-palettes/00Yi9btvr8RY4NROm.svg new file mode 100644 index 0000000000..364215b11a --- /dev/null +++ b/assets/color-palettes/00Yi9btvr8RY4NROm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00Yi9c5ifk9eXO5XX.svg b/assets/color-palettes/00Yi9c5ifk9eXO5XX.svg new file mode 100644 index 0000000000..95d45ead33 --- /dev/null +++ b/assets/color-palettes/00Yi9c5ifk9eXO5XX.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00YxFeFYOuMCD0qWe.svg b/assets/color-palettes/00YxFeFYOuMCD0qWe.svg new file mode 100644 index 0000000000..f3f63f532f --- /dev/null +++ b/assets/color-palettes/00YxFeFYOuMCD0qWe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00b7Az8pDWEjBLMHs.svg b/assets/color-palettes/00b7Az8pDWEjBLMHs.svg new file mode 100644 index 0000000000..fd00333b76 --- /dev/null +++ b/assets/color-palettes/00b7Az8pDWEjBLMHs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00bYah8QOLZNgszuV.svg b/assets/color-palettes/00bYah8QOLZNgszuV.svg index 10760cbcbc..df5a3a3164 100644 --- a/assets/color-palettes/00bYah8QOLZNgszuV.svg +++ b/assets/color-palettes/00bYah8QOLZNgszuV.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00bYahDYU6E7wDJwL.svg b/assets/color-palettes/00bYahDYU6E7wDJwL.svg index b3067f7105..a38bce49e2 100644 --- a/assets/color-palettes/00bYahDYU6E7wDJwL.svg +++ b/assets/color-palettes/00bYahDYU6E7wDJwL.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00bYahKZ8LbVgx54y.svg b/assets/color-palettes/00bYahKZ8LbVgx54y.svg new file mode 100644 index 0000000000..759de7e6c4 --- /dev/null +++ b/assets/color-palettes/00bYahKZ8LbVgx54y.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00bYcivY8Jqx8nsiR.svg b/assets/color-palettes/00bYcivY8Jqx8nsiR.svg index a7d677616f..4917459f94 100644 --- a/assets/color-palettes/00bYcivY8Jqx8nsiR.svg +++ b/assets/color-palettes/00bYcivY8Jqx8nsiR.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00bYcixZkofJhLJ8w.svg b/assets/color-palettes/00bYcixZkofJhLJ8w.svg index 033caeda03..de82c99300 100644 --- a/assets/color-palettes/00bYcixZkofJhLJ8w.svg +++ b/assets/color-palettes/00bYcixZkofJhLJ8w.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00bYcj0VC9wmmKNm5.svg b/assets/color-palettes/00bYcj0VC9wmmKNm5.svg new file mode 100644 index 0000000000..0417141e60 --- /dev/null +++ b/assets/color-palettes/00bYcj0VC9wmmKNm5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00bYcj4uvi0NIlqyw.svg b/assets/color-palettes/00bYcj4uvi0NIlqyw.svg index 8d4a308956..714e172e0e 100644 --- a/assets/color-palettes/00bYcj4uvi0NIlqyw.svg +++ b/assets/color-palettes/00bYcj4uvi0NIlqyw.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00bYcjDCylnf3k1aB.svg b/assets/color-palettes/00bYcjDCylnf3k1aB.svg index 68c987feed..63878cd900 100644 --- a/assets/color-palettes/00bYcjDCylnf3k1aB.svg +++ b/assets/color-palettes/00bYcjDCylnf3k1aB.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00bYiYyzA6ODPIC8V.svg b/assets/color-palettes/00bYiYyzA6ODPIC8V.svg new file mode 100644 index 0000000000..9432432162 --- /dev/null +++ b/assets/color-palettes/00bYiYyzA6ODPIC8V.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00bYiZ8YHLsLMA7j3.svg b/assets/color-palettes/00bYiZ8YHLsLMA7j3.svg new file mode 100644 index 0000000000..8e69d9b1f2 --- /dev/null +++ b/assets/color-palettes/00bYiZ8YHLsLMA7j3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00f5whlJFUwx7AaEe.svg b/assets/color-palettes/00f5whlJFUwx7AaEe.svg new file mode 100644 index 0000000000..c4d5ef9625 --- /dev/null +++ b/assets/color-palettes/00f5whlJFUwx7AaEe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00g3Jv9zydyJs2QlX.svg b/assets/color-palettes/00g3Jv9zydyJs2QlX.svg new file mode 100644 index 0000000000..5221d59374 --- /dev/null +++ b/assets/color-palettes/00g3Jv9zydyJs2QlX.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00g3JvJ0ZydpXXvEC.svg b/assets/color-palettes/00g3JvJ0ZydpXXvEC.svg index 3e8622ffc1..7c90f794ac 100644 --- a/assets/color-palettes/00g3JvJ0ZydpXXvEC.svg +++ b/assets/color-palettes/00g3JvJ0ZydpXXvEC.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/color-palettes/00gSFutQrW4MxihX7.svg b/assets/color-palettes/00gSFutQrW4MxihX7.svg new file mode 100644 index 0000000000..a123dd6159 --- /dev/null +++ b/assets/color-palettes/00gSFutQrW4MxihX7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00i0fT276sz5H8vMy.svg b/assets/color-palettes/00i0fT276sz5H8vMy.svg new file mode 100644 index 0000000000..d820270d30 --- /dev/null +++ b/assets/color-palettes/00i0fT276sz5H8vMy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00i0iHNQPUpX6Jzsb.svg b/assets/color-palettes/00i0iHNQPUpX6Jzsb.svg new file mode 100644 index 0000000000..a7fb2be671 --- /dev/null +++ b/assets/color-palettes/00i0iHNQPUpX6Jzsb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00i0iHUSVMHOENQof.svg b/assets/color-palettes/00i0iHUSVMHOENQof.svg new file mode 100644 index 0000000000..2e4013e592 --- /dev/null +++ b/assets/color-palettes/00i0iHUSVMHOENQof.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00i0iHWHzzEoacpfQ.svg b/assets/color-palettes/00i0iHWHzzEoacpfQ.svg new file mode 100644 index 0000000000..019851d56e --- /dev/null +++ b/assets/color-palettes/00i0iHWHzzEoacpfQ.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00i0iHXq6xPzf1pt0.svg b/assets/color-palettes/00i0iHXq6xPzf1pt0.svg new file mode 100644 index 0000000000..3975abfb56 --- /dev/null +++ b/assets/color-palettes/00i0iHXq6xPzf1pt0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/color-palettes/README.md b/packages/color-palettes/README.md index 4dd98d8ed9..059897a6aa 100644 --- a/packages/color-palettes/README.md +++ b/packages/color-palettes/README.md @@ -14,15 +14,16 @@ This project is part of the - [Installation](#installation) - [Dependencies](#dependencies) - [Available palettes](#available-palettes) -- [Soft](#soft) -- [Medium](#medium) -- [Strong](#strong) + - [Usage](#usage) + - [Soft](#soft) + - [Medium](#medium) + - [Strong](#strong) - [Authors](#authors) - [License](#license) ## About -Collection of 64 image based color palettes. This is a support package for [@thi.ng/color](https://github.com/thi-ng/umbrella/tree/develop/packages/color). +Collection of 100 image based color palettes. This is a support package for [@thi.ng/color](https://github.com/thi-ng/umbrella/tree/develop/packages/color). ### Status @@ -44,7 +45,7 @@ yarn add @thi.ng/color-palettes ``` -Package sizes (gzipped, pre-treeshake): ESM: 4.86 KB / CJS: 4.99 KB / UMD: 5.03 KB +Package sizes (gzipped, pre-treeshake): ESM: 4.03 KB / CJS: 4.10 KB / UMD: 4.25 KB ## Dependencies @@ -52,6 +53,8 @@ None ## Available palettes +### Usage + ```ts import { THEMES } from "@thi.ng/color-palettes"; @@ -60,62 +63,95 @@ const theme = THEMES["00bYahDYU6E7wDJwL"]; Also see the [swatch generator](https://github.com/thi-ng/umbrella/blob/develop/packages/color-palettes/tools/index.ts) as usage example... -## Soft +Below the color themes are shown **sorted by median LCH chromacity**: -| Preset | Swatches | -|---------------------|------------------------------------------------------------------------------------------------------------| -| `00QLfPkuNx1jE7sMm` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLfPkuNx1jE7sMm.svg) | -| `00QN31G5AB2FTftCe` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QN31G5AB2FTftCe.svg) | -| `00QMEZazmZG85DaWw` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMEZazmZG85DaWw.svg) | -| `00RB4I684QFqc2HAM` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RB4I684QFqc2HAM.svg) | -| `00QMA8RhpXdgwPtLn` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMA8RhpXdgwPtLn.svg) | -| `00g3JvJ0ZydpXXvEC` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00g3JvJ0ZydpXXvEC.svg) | -| `00RB4I89XiwNSlobH` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RB4I89XiwNSlobH.svg) | -| `00RnZfzWN7Ewml76I` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RnZfzWN7Ewml76I.svg) | -| `00RGlyLkqOmPmbuX6` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RGlyLkqOmPmbuX6.svg) | -| `00QLslJAGNA8YREKh` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLslJAGNA8YREKh.svg) | -| `00RTRDIzyUse2qJ9N` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RTRDIzyUse2qJ9N.svg) | -| `00QLfPj2trTnyJHAg` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLfPj2trTnyJHAg.svg) | -| `00QLj3Yj1pUNnTKVY` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLj3Yj1pUNnTKVY.svg) | -| `00QMKP9yh8XlJYcgM` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMKP9yh8XlJYcgM.svg) | -| `00bYahDYU6E7wDJwL` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYahDYU6E7wDJwL.svg) | -| `00QLNIKFhjs5rJCjr` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLNIKFhjs5rJCjr.svg) | -| `00QMEZzTrk06iVgaK` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMEZzTrk06iVgaK.svg) | -| `00QMA8SkIwjW5KEch` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMA8SkIwjW5KEch.svg) | - -## Medium +### Soft + +| Preset | Swatches | +|----------------------|-------------------------------------------------------------------------------------------------------------| +| `00QLfPkuNx1jE7sMm` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLfPkuNx1jE7sMm.svg) | +| `00QN31G5AB2FTftCe` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QN31G5AB2FTftCe.svg) | +| `00QMEZazmZG85DaWw` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMEZazmZG85DaWw.svg) | +| `00f5whlJFUwx7AaEe` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00f5whlJFUwx7AaEe.svg) | +| `00YxFeFYOuMCD0qWe` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00YxFeFYOuMCD0qWe.svg) | +| `00RB4I684QFqc2HAM` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RB4I684QFqc2HAM.svg) | +| `00QMA8RhpXdgwPtLn` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMA8RhpXdgwPtLn.svg) | +| `00gSFutQrW4MxihX7` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00gSFutQrW4MxihX7.svg) | +| `00g3JvJ0ZydpXXvEC` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00g3JvJ0ZydpXXvEC.svg) | +| `00RB4I89XiwNSlobH` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RB4I89XiwNSlobH.svg) | +| `00PBWZvgJvi4gdxGj` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00PBWZvgJvi4gdxGj.svg) | +| `00RnZfzWN7Ewml76I` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RnZfzWN7Ewml76I.svg) | +| `00i0fT276sz5H8vMy` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00i0fT276sz5H8vMy.svg) | +| `00QLj3F8heV6QT4YG` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLj3F8heV6QT4YG.svg) | +| `00g3Jv9zydyJs2QlX` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00g3Jv9zydyJs2QlX.svg) | +| `00RGlyLkqOmPmbuX6` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RGlyLkqOmPmbuX6.svg) | +| `00QLslJAGNA8YREKh` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLslJAGNA8YREKh.svg) | +| `00QMSSCjsJpojbpYza` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMSSCjsJpojbpYza.svg) | +| `00QLn7oETUQZKKr34` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLn7oETUQZKKr34.svg) | +| `00RTRDIzyUse2qJ9N` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RTRDIzyUse2qJ9N.svg) | +| `00QLfPj2trTnyJHAg` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLfPj2trTnyJHAg.svg) | +| `00QLj3Yj1pUNnTKVY` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLj3Yj1pUNnTKVY.svg) | +| `00QMKP9yh8XlJYcgM` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMKP9yh8XlJYcgM.svg) | +| `00bYahDYU6E7wDJwL` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYahDYU6E7wDJwL.svg) | +| `00bYiYyzA6ODPIC8V` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYiYyzA6ODPIC8V.svg) | +| `00bYcj0VC9wmmKNm5` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYcj0VC9wmmKNm5.svg) | +| `00QLj3PylHkh8qY2R` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLj3PylHkh8qY2R.svg) | +| `00QLNIKFhjs5rJCjr` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLNIKFhjs5rJCjr.svg) | +| `00QMEZzTrk06iVgaK` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMEZzTrk06iVgaK.svg) | +| `00QMA8SkIwjW5KEch` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMA8SkIwjW5KEch.svg) | + +### Medium | Preset | Swatches | |---------------------|------------------------------------------------------------------------------------------------------------| | `00QLqYS2ZOgkMeMAE` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLqYS2ZOgkMeMAE.svg) | | `00QMEZgMsSVZavaNd` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMEZgMsSVZavaNd.svg) | +| `00QLqYLjs4H7kdHrp` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLqYLjs4H7kdHrp.svg) | | `00RB4I6NRn6CF3oS0` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RB4I6NRn6CF3oS0.svg) | | `00RTRDAqmTEarmyeR` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RTRDAqmTEarmyeR.svg) | +| `00Yi9btvr8RY4NROm` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00Yi9btvr8RY4NROm.svg) | | `00bYcj4uvi0NIlqyw` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYcj4uvi0NIlqyw.svg) | +| `00Yi9c5ifk9eXO5XX` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00Yi9c5ifk9eXO5XX.svg) | +| `00UWNvBioJ6ZSjDix` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00UWNvBioJ6ZSjDix.svg) | | `00RB4IFxoIYII3Cqi` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RB4IFxoIYII3Cqi.svg) | +| `00OwGARqASN2zngyg` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00OwGARqASN2zngyg.svg) | +| `00b7Az8pDWEjBLMHs` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00b7Az8pDWEjBLMHs.svg) | | `00ORLwKeosxtEeZxq` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00ORLwKeosxtEeZxq.svg) | | `00RGlyJwY9q4Sh0tQ` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RGlyJwY9q4Sh0tQ.svg) | | `00RGlyFVinQl5cj21` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RGlyFVinQl5cj21.svg) | | `00RlTJxJZ16ivgKBw` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RlTJxJZ16ivgKBw.svg) | +| `00i0iHUSVMHOENQof` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00i0iHUSVMHOENQof.svg) | +| `00OkEXVdMQmQ1oQTp` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00OkEXVdMQmQ1oQTp.svg) | | `00bYcivY8Jqx8nsiR` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYcivY8Jqx8nsiR.svg) | +| `00bYiZ8YHLsLMA7j3` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYiZ8YHLsLMA7j3.svg) | +| `00QMSSK2AEOwErS5M` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMSSK2AEOwErS5M.svg) | | `00RYyJ4jHYfMF6yfy` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RYyJ4jHYfMF6yfy.svg) | | `00QMSSEJXJOUdMoSj` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMSSEJXJOUdMoSj.svg) | | `00QMA8tedClukB7IL` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMA8tedClukB7IL.svg) | | `00RTRDOtbFF8KFNH9` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RTRDOtbFF8KFNH9.svg) | | `00bYcixZkofJhLJ8w` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYcixZkofJhLJ8w.svg) | +| `00QLn7BH2doQfh4Yw` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLn7BH2doQfh4Yw.svg) | | `00RYyJ25i8zFwOJGh` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RYyJ25i8zFwOJGh.svg) | +| `00i0iHXq6xPzf1pt0` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00i0iHXq6xPzf1pt0.svg) | | `00bYah8QOLZNgszuV` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYah8QOLZNgszuV.svg) | +| `00QLfPusSpy3uFOpb` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLfPusSpy3uFOpb.svg) | | `00QMSRoDq0SDYprak` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMSRoDq0SDYprak.svg) | -## Strong +### Strong | Preset | Swatches | |----------------------|-------------------------------------------------------------------------------------------------------------| | `00RGly9mkWt6i3suL` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RGly9mkWt6i3suL.svg) | | `00RTRDNL7MjHkDys4` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RTRDNL7MjHkDys4.svg) | | `00RTRDIRDbnErAXHV` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RTRDIRDbnErAXHV.svg) | +| `00i0iHNQPUpX6Jzsb` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00i0iHNQPUpX6Jzsb.svg) | +| `00QMSSK2AEOwErS5Ma` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMSSK2AEOwErS5Ma.svg) | | `00PhEgF9AlI5PTrLB` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00PhEgF9AlI5PTrLB.svg) | +| `00OqoPfvP6y1EmXZQ` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00OqoPfvP6y1EmXZQ.svg) | | `00QMxescYuh8eYT39` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMxescYuh8eYT39.svg) | +| `00QLj3dmHiT8Ep1Un` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLj3dmHiT8Ep1Un.svg) | +| `00QMxexuJYMe6enbZ` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMxexuJYMe6enbZ.svg) | +| `00bYahKZ8LbVgx54y` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYahKZ8LbVgx54y.svg) | | `00RGly9mkWt6i3suLa` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RGly9mkWt6i3suLa.svg) | | `00RlTJrw94KFOF3zL` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RlTJrw94KFOF3zL.svg) | | `00PhGSfzpeU5Bkh47a` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00PhGSfzpeU5Bkh47a.svg) | @@ -131,12 +167,18 @@ Also see the [swatch generator](https://github.com/thi-ng/umbrella/blob/develop/ | `00bYcjDCylnf3k1aB` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYcjDCylnf3k1aB.svg) | | `00QMEZl7ulP3f2WaX` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMEZl7ulP3f2WaX.svg) | | `00QLn7XfPKvMKCrzO` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLn7XfPKvMKCrzO.svg) | +| `00QLNIVe1AkurVqYj` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLNIVe1AkurVqYj.svg) | +| `00i0iHWHzzEoacpfQ` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00i0iHWHzzEoacpfQ.svg) | | `00QLn7Lr9V98YD0zY` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLn7Lr9V98YD0zY.svg) | | `00QMSRqFlj9B8ayZW` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMSRqFlj9B8ayZW.svg) | +| `00QLfPtu33OAdSN4Y` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLfPtu33OAdSN4Y.svg) | | `00QN49h9BAkHHyKJh` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QN49h9BAkHHyKJh.svg) | | `00QLj3fsFErIl5W0b` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLj3fsFErIl5W0b.svg) | +| `00QLNHv6JW1bL031O` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLNHv6JW1bL031O.svg) | +| `00QLNIQXmbJgghRXg` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLNIQXmbJgghRXg.svg) | | `00QLn7G59JhKtuUs0` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLn7G59JhKtuUs0.svg) | | `00QMA8h2BH69zyEk0` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMA8h2BH69zyEk0.svg) | +| `00Q9Yxm7DrZXqTkyS` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00Q9Yxm7DrZXqTkyS.svg) | ## Authors diff --git a/packages/color-palettes/package.json b/packages/color-palettes/package.json index 62f51399ec..ab2a6cb9d2 100644 --- a/packages/color-palettes/package.json +++ b/packages/color-palettes/package.json @@ -1,7 +1,7 @@ { "name": "@thi.ng/color-palettes", "version": "0.1.0", - "description": "Collection of 64 image based color palettes", + "description": "Collection of 100 image based color palettes", "module": "./index.js", "main": "./lib/index.js", "umd:main": "./lib/index.umd.js", diff --git a/packages/color-palettes/src/index.ts b/packages/color-palettes/src/index.ts index fb6abf0027..06c40469c2 100644 --- a/packages/color-palettes/src/index.ts +++ b/packages/color-palettes/src/index.ts @@ -1,99 +1,43 @@ export const THEMES = { - "00RB4I89XiwNSlobH": [ - "#c2936c", - "#795d45", - "#463524", - "#587479", - "#6c848c", - "#bed0de", - ], - "00RTRDIzyUse2qJ9N": [ - "#a0293c", - "#3c1e18", - "#88675f", - "#61392d", - "#5e788c", - "#a4a4a4", - ], - "00RGlyFVinQl5cj21": [ - "#461b10", - "#95573a", - "#dfb79b", - "#75b5c7", - "#33748f", - "#0a2c42", - ], - "00RTRDIRDbnErAXHV": [ - "#381c1a", - "#793b21", - "#b7673d", - "#e8aa7c", - "#47a0ce", - "#186086", - ], - "00RB4IFxoIYII3Cqi": [ - "#556087", - "#6e78aa", - "#adb1e6", - "#9c5d78", - "#f1a7c0", - "#c97a8e", - ], - "00RGlyLkqOmPmbuX6": [ - "#3c1b18", - "#5d2328", - "#922849", - "#685256", - "#918289", - "#b2b1bd", - ], - "00RTRDAqmTEarmyeR": [ - "#0c0b37", - "#241644", - "#7e4743", - "#9a614f", - "#b78265", - "#d5a584", - ], - "00RTRDOtbFF8KFNH9": [ - "#4c2a2b", - "#85503b", - "#a47c63", - "#c57929", - "#ceb38d", - "#e2e8c6", - ], - "00RTRDNL7MjHkDys4": [ - "#5e1b11", - "#8a4b26", - "#036a65", - "#336d50", - "#17849b", - "#b79944", - ], - "00RYyJ25i8zFwOJGh": [ - "#47210d", - "#724621", - "#4d6e80", - "#9c7857", - "#c47619", - "#d5b48a", - ], - "00RGly9mkWt6i3suL": [ - "#160e0a", - "#573014", - "#9f6135", - "#cf935c", - "#ecc18c", - "#f9eada", - ], - "00RGly9mkWt6i3suLa": [ - "#8d4a09", - "#a85f31", - "#c3764a", - "#c1861f", - "#e6ae42", - "#f9d267", + "00ORLwKeosxtEeZxq": [ + "#18132c", + "#492f5e", + "#775692", + "#bf89bb", + "#ecb1d0", + "#fbd0c8", + ], + "00OkEXVdMQmQ1oQTp": [ + "#dbb98e", + "#9e8f52", + "#607630", + "#2c4c1c", + "#0d6176", + "#589cb4", + ], + "00OqoPfvP6y1EmXZQ": [ + "#0d1e63", + "#4e49a7", + "#1890cc", + "#9a8a94", + "#c6c3d2", + "#efeef4", + ], + "00OwGARqASN2zngyg": [ + "#4e351d", + "#6c5133", + "#896a46", + "#b18959", + "#c9bca8", + "#f7efe4", + ], + "00PBWZvgJvi4gdxGj": [ + "#070b04", + "#2e3911", + "#646e32", + "#949d85", + "#b2baac", + "#d9ddd9", ], "00PhEgF9AlI5PTrLB": [ "#150a23", @@ -103,22 +47,6 @@ export const THEMES = { "#5465af", "#6175b8", ], - "00ORLwKeosxtEeZxq": [ - "#100914", - "#1c1735", - "#422a57", - "#7e5b96", - "#dca1c7", - "#f8c8cc", - ], - "00QN31G5AB2FTftCe": [ - "#0e2222", - "#244c4f", - "#56888b", - "#84afb3", - "#aacbcc", - "#c8dfe0", - ], "00PhGSfzpeU5Bkh47a": [ "#440807", "#6c0f0b", @@ -127,101 +55,45 @@ export const THEMES = { "#b87d4e", "#d9b995", ], - "00RB4I684QFqc2HAM": [ - "#453f38", - "#746b5d", - "#b39777", - "#c1c2b2", - "#e3dccf", - "#f1ede7", - ], - "00RB4I6NRn6CF3oS0": [ - "#4e3427", - "#7f5a47", - "#b68d73", - "#e3ccb7", - "#064857", - "#077d95", - ], - "00RYyJ4jHYfMF6yfy": [ - "#33341f", - "#61532f", - "#9b6230", - "#cc8646", - "#b3a68a", - "#f0f5f3", - ], - "00RYyJDsTKzsBBgCO": [ - "#b07314", - "#845a14", - "#d69527", - "#f4c03b", - "#758734", - "#406010", - ], - "00RGlyJwY9q4Sh0tQ": [ - "#182d4f", - "#2e629a", - "#78a9d4", - "#8a8c99", - "#bac0cd", - "#f2f2f3", - ], - "00RlTJrw94KFOF3zL": [ - "#231927", - "#323445", - "#610d21", - "#97061d", - "#d56a76", - "#eebcb2", - ], - "00RlTJxJZ16ivgKBw": [ - "#2b340e", - "#615022", - "#9b6f3c", - "#c49560", - "#e2bb8b", - "#f3dbb6", - ], - "00RnZfzWN7Ewml76I": [ - "#563063", - "#905c70", - "#b17e84", - "#c89896", - "#d1bbb6", - "#ebe1d8", - ], - "00T2A6qx5VScIQ9bU": [ - "#341740", - "#67415f", - "#a52e45", - "#da3549", - "#d4796c", - "#ebd0b6", - ], - "00UWNvEkTsOF0aQHh": [ - "#874416", - "#b56f49", - "#e69f29", - "#f3d28a", - "#c5cda5", - "#549cba", + "00Q9Yxm7DrZXqTkyS": [ + "#2f1864", + "#e40302", + "#f25c22", + "#d987bd", + "#44b6e7", + "#e3dadd", + ], + "00QLNHv6JW1bL031O": [ + "#d03835", + "#fc4340", + "#c2756a", + "#cf998d", + "#f2c7b9", + "#f2dcd5", ], - "00bYah8QOLZNgszuV": [ - "#6b6c56", - "#888c81", - "#b3bab9", - "#3f8aac", - "#f19028", - "#f6b661", + "00QLNIKFhjs5rJCjr": [ + "#f77908", + "#ba9623", + "#c6a489", + "#bbc3bb", + "#9dc9be", + "#668c92", ], - "00bYahDYU6E7wDJwL": [ - "#cf4e23", - "#8a6b56", - "#af9682", - "#dfd5bd", - "#79a199", - "#40555a", + "00QLNIQXmbJgghRXg": [ + "#502527", + "#366974", + "#d93d0f", + "#fc8b1e", + "#efa481", + "#f2ebe5", + ], + "00QLNIVe1AkurVqYj": [ + "#4f4c63", + "#7288a5", + "#91a5be", + "#c36b7e", + "#f34452", + "#b5172a", ], "00QLcP0k2fPAz0KHR": [ "#814232", @@ -231,85 +103,133 @@ export const THEMES = { "#d7b776", "#a69e85", ], - "00bYcjDCylnf3k1aB": [ - "#322324", - "#92462f", - "#c56928", - "#eb5e44", - "#f49669", - "#f5aa2f", + "00QLfPj2trTnyJHAg": [ + "#15253c", + "#552f34", + "#8f1f21", + "#7a6574", + "#b0a0b3", + "#d1e6ed", ], - "00bYcivY8Jqx8nsiR": [ - "#3f2615", - "#67492d", - "#b7954b", - "#e0e2a1", - "#2f5f4f", - "#5c8c89", + "00QLfPkuNx1jE7sMm": [ + "#1c161c", + "#413a42", + "#6f6166", + "#9f8b8c", + "#d7c4c3", + "#fbeae4", ], - "00bYcj4uvi0NIlqyw": [ - "#072d29", - "#045049", - "#077667", - "#5c9d74", - "#a8ce9e", - "#effacd", + "00QLfPm4UfkMiaicq": [ + "#3e3e25", + "#664d1c", + "#a2510d", + "#ce881d", + "#f6cb53", + "#fefce8", ], - "00g3JvJ0ZydpXXvEC": [ - "#9f7374", - "#d3ac98", - "#edd2bd", - "#c4ddf0", - "#9aadcf", - "#354372", + "00QLfPtu33OAdSN4Y": [ + "#60281b", + "#a34236", + "#f1612f", + "#cb9876", + "#ebd8be", + "#788e26", + ], + "00QLfPusSpy3uFOpb": [ + "#282819", + "#4e572f", + "#787972", + "#aaaba7", + "#b4e614", + "#d5ff3f", + ], + "00QLj3F8heV6QT4YG": [ + "#b5704e", + "#5a4940", + "#282820", + "#0fac9d", + "#badcd7", + "#6d8484", + ], + "00QLj3PylHkh8qY2R": [ + "#411c20", + "#b71022", + "#f63a3a", + "#c1c3d1", + "#8a858e", + "#5c555d", ], - "00bYcixZkofJhLJ8w": [ - "#1f4d7b", - "#2f1013", - "#660f09", - "#a13d10", - "#684640", - "#b0947f", + "00QLj3Yj1pUNnTKVY": [ + "#7c7575", + "#743d28", + "#e88b46", + "#caa78d", + "#acd4d4", + "#1d2544", ], - "00QMEZl7ulP3f2WaX": [ - "#adda3d", - "#d0f4a9", - "#f0f5f9", - "#6db6e8", - "#2296dc", - "#0b73d1", + "00QLj3dmHiT8Ep1Un": [ + "#1a51aa", + "#167418", + "#5d8937", + "#95a566", + "#b9b296", + "#e0dab5", ], - "00QMEZVdDC6dMYpjp": [ - "#df4341", - "#e8817e", - "#b1a789", - "#d6d1ba", - "#b1b828", - "#c1ed7f", + "00QLj3fsFErIl5W0b": [ + "#763a20", + "#c78f67", + "#f27f14", + "#86949b", + "#37516c", + "#1c222f", ], - "00QMA8tedClukB7IL": [ - "#6f402c", - "#ac3038", - "#ad796b", - "#c9b4a2", - "#cbcbc2", - "#ebe3d8", + "00QLn7BH2doQfh4Yw": [ + "#401918", + "#9f1d1f", + "#ab6868", + "#d1d3d3", + "#39b7b6", + "#336b6b", ], - "00QMA8SkIwjW5KEch": [ - "#f0181f", - "#b51c1c", - "#b4a8a2", - "#dcd4db", - "#75787a", - "#3c373b", + "00QLn7G59JhKtuUs0": [ + "#0a0e40", + "#715589", + "#c7264b", + "#3fa1cc", + "#fa7b0e", + "#e8b7ac", ], - "00QMA8RhpXdgwPtLn": [ - "#4d3621", - "#806b52", - "#9b9685", - "#acb8af", - "#bfd4d0", - "#60acb2", + "00QLn7Lr9V98YD0zY": [ + "#ab3051", + "#e31f4b", + "#c68575", + "#f3bda5", + "#652b55", + "#834270", + ], + "00QLn7XfPKvMKCrzO": [ + "#73272f", + "#e65633", + "#e5af98", + "#f2dfcd", + "#43b6ad", + "#181240", + ], + "00QLn7oETUQZKKr34": [ + "#392325", + "#504d54", + "#89462c", + "#da5c74", + "#908a92", + "#e6cbce", + ], + "00QLqYLjs4H7kdHrp": [ + "#3d4d20", + "#73854d", + "#aeb87f", + "#6e9db5", + "#4c6f8e", + "#1c4861", ], "00QLqYQ3HE1oy3ByI": [ "#97867e", @@ -319,61 +239,101 @@ export const THEMES = { "#dcdedb", "#92b1cb", ], - "00QLn7XfPKvMKCrzO": [ - "#73272f", - "#e65633", - "#e5af98", - "#f2dfcd", - "#43b6ad", - "#181240", + "00QLqYS2ZOgkMeMAE": [ + "#3b4227", + "#255c50", + "#2d7663", + "#788664", + "#b3ad81", + "#e3d6ad", ], - "00QLj3fsFErIl5W0b": [ - "#763a20", - "#c78f67", - "#f27f14", - "#86949b", - "#37516c", - "#1c222f", + "00QLslJAGNA8YREKh": [ + "#ffd8d2", + "#fbc6b7", + "#fd9b79", + "#ece8e8", + "#c2bab6", + "#888078", ], - "00QLNIKFhjs5rJCjr": [ - "#f77908", - "#ba9623", - "#c6a489", - "#bbc3bb", - "#9dc9be", - "#668c92", + "00QMA8RhpXdgwPtLn": [ + "#4d3621", + "#806b52", + "#9b9685", + "#acb8af", + "#bfd4d0", + "#60acb2", ], - "00QLfPj2trTnyJHAg": [ - "#15253c", - "#552f34", - "#8f1f21", - "#7a6574", - "#b0a0b3", - "#d1e6ed", + "00QMA8SkIwjW5KEch": [ + "#f0181f", + "#b51c1c", + "#b4a8a2", + "#dcd4db", + "#75787a", + "#3c373b", ], - "00QLfPm4UfkMiaicq": [ - "#3e3e25", - "#664d1c", - "#a2510d", - "#ce881d", - "#f6cb53", - "#fefce8", + "00QMA8h2BH69zyEk0": [ + "#0a0320", + "#260d6c", + "#613dda", + "#b4b6ac", + "#f6e019", + "#eef5fa", ], - "00QLfPkuNx1jE7sMm": [ - "#1c161c", - "#413a42", - "#6f6166", - "#9f8b8c", - "#d7c4c3", - "#fbeae4", + "00QMA8tedClukB7IL": [ + "#6f402c", + "#ac3038", + "#ad796b", + "#c9b4a2", + "#cbcbc2", + "#ebe3d8", ], - "00QLj3Yj1pUNnTKVY": [ - "#7c7575", - "#743d28", - "#e88b46", - "#caa78d", - "#acd4d4", - "#1d2544", + "00QMEZVdDC6dMYpjp": [ + "#df4341", + "#e8817e", + "#b1a789", + "#d6d1ba", + "#b1b828", + "#c1ed7f", + ], + "00QMEZazmZG85DaWw": [ + "#1b2434", + "#47423d", + "#6a614a", + "#8b8262", + "#d9d3c7", + "#fae7dc", + ], + "00QMEZb0EorAC0k7y": [ + "#2f112d", + "#520330", + "#7f0233", + "#c52b3e", + "#fc714b", + "#fedac0", + ], + "00QMEZgMsSVZavaNd": [ + "#ddf0c3", + "#b3eed4", + "#94e6da", + "#78d1e7", + "#a3d5ed", + "#c8c3ec", + ], + "00QMEZl7ulP3f2WaX": [ + "#adda3d", + "#d0f4a9", + "#f0f5f9", + "#6db6e8", + "#2296dc", + "#0b73d1", + ], + "00QMEZzTrk06iVgaK": [ + "#e2361c", + "#f36958", + "#cdd2df", + "#a6a4af", + "#807377", + "#41372f", ], "00QMKP9yh8XlJYcgM": [ "#857564", @@ -383,14 +343,6 @@ export const THEMES = { "#bbb40f", "#f3f777", ], - "00QMxescYuh8eYT39": [ - "#12182f", - "#4f2431", - "#844036", - "#b1663e", - "#de9548", - "#d1c6b5", - ], "00QMSRoDq0SDYprak": [ "#2d1e22", "#a90f0c", @@ -399,21 +351,13 @@ export const THEMES = { "#dacbc6", "#f7f3f7", ], - "00QMEZzTrk06iVgaK": [ - "#e2361c", - "#f36958", - "#cdd2df", - "#a6a4af", - "#807377", - "#41372f", - ], - "00QN49h9BAkHHyKJh": [ - "#ab312c", - "#d57f1c", - "#f4d42b", - "#3199cc", - "#c4c9e0", - "#1c284b", + "00QMSRqFlj9B8ayZW": [ + "#db4a55", + "#f5c625", + "#408aa3", + "#b0cadb", + "#163b64", + "#744881", ], "00QMSSCjsJpojbpYz": [ "#a7333a", @@ -423,6 +367,14 @@ export const THEMES = { "#5da773", "#42cfbb", ], + "00QMSSCjsJpojbpYza": [ + "#3f322f", + "#d06f4c", + "#d4b588", + "#bbe3d5", + "#71a99a", + "#4d7370", + ], "00QMSSEJXJOUdMoSj": [ "#ed9d5f", "#e7caac", @@ -431,76 +383,420 @@ export const THEMES = { "#6c5c82", "#ad7a8d", ], - "00QMSRqFlj9B8ayZW": [ - "#db4a55", - "#f5c625", - "#408aa3", - "#b0cadb", - "#163b64", - "#744881", + "00QMSSK2AEOwErS5M": [ + "#e1a895", + "#eb946b", + "#7db5d9", + "#1d4480", + "#edadcb", + "#a17588", + ], + "00QMSSK2AEOwErS5Ma": [ + "#c4575f", + "#f5976d", + "#0ba4d7", + "#0e3077", + "#f38db2", + "#746fb9", ], - "00QMEZgMsSVZavaNd": [ - "#ddf0c3", - "#b3eed4", - "#94e6da", - "#78d1e7", - "#a3d5ed", - "#c8c3ec", + "00QMxescYuh8eYT39": [ + "#12182f", + "#4f2431", + "#844036", + "#b1663e", + "#de9548", + "#d1c6b5", ], - "00QMEZb0EorAC0k7y": [ - "#2f112d", - "#520330", - "#7f0233", - "#c52b3e", - "#fc714b", - "#fedac0", + "00QMxexuJYMe6enbZ": [ + "#0a122f", + "#3d2233", + "#73383a", + "#ac5541", + "#e5804f", + "#f8b778", ], - "00QMEZazmZG85DaWw": [ - "#1b2434", - "#47423d", - "#6a614a", - "#8b8262", - "#d9d3c7", - "#fae7dc", + "00QN31G5AB2FTftCe": [ + "#0e2222", + "#244c4f", + "#56888b", + "#84afb3", + "#aacbcc", + "#c8dfe0", ], - "00QMA8h2BH69zyEk0": [ - "#0a0320", - "#260d6c", - "#613dda", - "#b4b6ac", - "#f6e019", - "#eef5fa", + "00QN49h9BAkHHyKJh": [ + "#ab312c", + "#d57f1c", + "#f4d42b", + "#3199cc", + "#c4c9e0", + "#1c284b", ], - "00QLslJAGNA8YREKh": [ - "#ffd8d2", - "#fbc6b7", - "#fd9b79", - "#ece8e8", - "#c2bab6", - "#888078", + "00RB4I684QFqc2HAM": [ + "#453f38", + "#746b5d", + "#b39777", + "#c1c2b2", + "#e3dccf", + "#f1ede7", ], - "00QLn7Lr9V98YD0zY": [ - "#ab3051", - "#e31f4b", - "#c68575", - "#f3bda5", - "#652b55", - "#834270", + "00RB4I6NRn6CF3oS0": [ + "#4e3427", + "#7f5a47", + "#b68d73", + "#e3ccb7", + "#064857", + "#077d95", ], - "00QLn7G59JhKtuUs0": [ - "#0a0e40", - "#715589", - "#c7264b", - "#3fa1cc", - "#fa7b0e", - "#e8b7ac", + "00RB4I89XiwNSlobH": [ + "#c2936c", + "#795d45", + "#463524", + "#587479", + "#6c848c", + "#bed0de", ], - "00QLqYS2ZOgkMeMAE": [ - "#3b4227", - "#255c50", - "#2d7663", - "#788664", - "#b3ad81", - "#e3d6ad", + "00RB4IFxoIYII3Cqi": [ + "#556087", + "#6e78aa", + "#adb1e6", + "#9c5d78", + "#f1a7c0", + "#c97a8e", + ], + "00RGly9mkWt6i3suL": [ + "#160e0a", + "#573014", + "#9f6135", + "#cf935c", + "#ecc18c", + "#f9eada", + ], + "00RGly9mkWt6i3suLa": [ + "#8d4a09", + "#a85f31", + "#c3764a", + "#c1861f", + "#e6ae42", + "#f9d267", + ], + "00RGlyFVinQl5cj21": [ + "#461b10", + "#95573a", + "#dfb79b", + "#75b5c7", + "#33748f", + "#0a2c42", + ], + "00RGlyJwY9q4Sh0tQ": [ + "#182d4f", + "#2e629a", + "#78a9d4", + "#8a8c99", + "#bac0cd", + "#f2f2f3", + ], + "00RGlyLkqOmPmbuX6": [ + "#3c1b18", + "#5d2328", + "#922849", + "#685256", + "#918289", + "#b2b1bd", + ], + "00RTRDAqmTEarmyeR": [ + "#241644", + "#7e4743", + "#9a614f", + "#b78265", + "#d5a584", + "#eddbd4", + ], + "00RTRDIRDbnErAXHV": [ + "#381c1a", + "#793b21", + "#b7673d", + "#e8aa7c", + "#47a0ce", + "#186086", + ], + "00RTRDIzyUse2qJ9N": [ + "#a0293c", + "#3c1e18", + "#88675f", + "#61392d", + "#5e788c", + "#a4a4a4", + ], + "00RTRDNL7MjHkDys4": [ + "#5e1b11", + "#8a4b26", + "#036a65", + "#336d50", + "#17849b", + "#b79944", + ], + "00RTRDOtbFF8KFNH9": [ + "#4c2a2b", + "#85503b", + "#a47c63", + "#c57929", + "#ceb38d", + "#e2e8c6", + ], + "00RYyJ25i8zFwOJGh": [ + "#47210d", + "#724621", + "#4d6e80", + "#9c7857", + "#c47619", + "#d5b48a", + ], + "00RYyJ4jHYfMF6yfy": [ + "#33341f", + "#61532f", + "#9b6230", + "#cc8646", + "#b3a68a", + "#f0f5f3", + ], + "00RYyJDsTKzsBBgCO": [ + "#845a14", + "#b07314", + "#d69527", + "#f4c03b", + "#758734", + "#406010", + ], + "00RlTJrw94KFOF3zL": [ + "#231927", + "#323445", + "#610d21", + "#97061d", + "#d56a76", + "#eebcb2", + ], + "00RlTJxJZ16ivgKBw": [ + "#2b340e", + "#615022", + "#9b6f3c", + "#c49560", + "#e2bb8b", + "#f3dbb6", + ], + "00RnZfzWN7Ewml76I": [ + "#563063", + "#905c70", + "#b17e84", + "#c89896", + "#d1bbb6", + "#ebe1d8", + ], + "00T2A6qx5VScIQ9bU": [ + "#341740", + "#67415f", + "#a52e45", + "#da3549", + "#d4796c", + "#ebd0b6", + ], + "00UWNvBioJ6ZSjDix": [ + "#0c0b0a", + "#482518", + "#835132", + "#a47855", + "#c4a58a", + "#efd0bc", + ], + "00UWNvEkTsOF0aQHh": [ + "#874416", + "#b56f49", + "#e69f29", + "#f3d28a", + "#c5cda5", + "#549cba", + ], + "00Yi9btvr8RY4NROm": [ + "#1c2e5e", + "#52506d", + "#9f6771", + "#d28c80", + "#c3b39d", + "#eec6a0", + ], + "00Yi9c5ifk9eXO5XX": [ + "#291e0a", + "#424127", + "#565f44", + "#765c2b", + "#988552", + "#e1c790", + ], + "00YxFeFYOuMCD0qWe": [ + "#13102b", + "#67493b", + "#887757", + "#9fa785", + "#9bc1af", + "#779a8d", + ], + "00b7Az8pDWEjBLMHs": [ + "#583824", + "#95643f", + "#bb9369", + "#5a9179", + "#85c0b1", + "#b4dfde", + ], + "00bYah8QOLZNgszuV": [ + "#6b6c56", + "#888c81", + "#b3bab9", + "#3f8aac", + "#f19028", + "#f6b661", + ], + "00bYahDYU6E7wDJwL": [ + "#cf4e23", + "#8a6b56", + "#af9682", + "#dfd5bd", + "#79a199", + "#40555a", + ], + "00bYahKZ8LbVgx54y": [ + "#88390a", + "#a9571b", + "#c77932", + "#bba333", + "#9f8b16", + "#837609", + ], + "00bYcivY8Jqx8nsiR": [ + "#3f2615", + "#67492d", + "#b7954b", + "#e0e2a1", + "#2f5f4f", + "#5c8c89", + ], + "00bYcixZkofJhLJ8w": [ + "#1f4d7b", + "#2f1013", + "#660f09", + "#a13d10", + "#684640", + "#b0947f", + ], + "00bYcj0VC9wmmKNm5": [ + "#798931", + "#e3cc1c", + "#cac7a4", + "#838da6", + "#475b7a", + "#1d3143", + ], + "00bYcj4uvi0NIlqyw": [ + "#072d29", + "#045049", + "#077667", + "#5c9d74", + "#a8ce9e", + "#effacd", + ], + "00bYcjDCylnf3k1aB": [ + "#322324", + "#92462f", + "#c56928", + "#eb5e44", + "#f49669", + "#f5aa2f", + ], + "00bYiYyzA6ODPIC8V": [ + "#322930", + "#0e6c9a", + "#e56227", + "#8998a0", + "#c9d1d5", + "#ebf1f5", + ], + "00bYiZ8YHLsLMA7j3": [ + "#372a2b", + "#ca8a51", + "#b8c9d0", + "#7ea0c5", + "#6786ac", + "#555f6f", + ], + "00f5whlJFUwx7AaEe": [ + "#50302b", + "#805a54", + "#9d776a", + "#bc9f89", + "#d7d7c1", + "#f0f2d8", + ], + "00g3Jv9zydyJs2QlX": [ + "#171214", + "#061844", + "#062460", + "#493127", + "#675e58", + "#e5ddd9", + ], + "00g3JvJ0ZydpXXvEC": [ + "#9f7374", + "#d3ac98", + "#edd2bd", + "#c4ddf0", + "#9aadcf", + "#354372", + ], + "00gSFutQrW4MxihX7": [ + "#284c5a", + "#3e5c64", + "#714a37", + "#976950", + "#a19081", + "#b2aea5", + ], + "00i0fT276sz5H8vMy": [ + "#806364", + "#c48f81", + "#f1bbb8", + "#607f3c", + "#355337", + "#052b36", + ], + "00i0iHNQPUpX6Jzsb": [ + "#686565", + "#888986", + "#56110d", + "#92342a", + "#d87f6e", + "#f4cbb0", + ], + "00i0iHUSVMHOENQof": [ + "#d5e9f6", + "#91bedb", + "#5299c4", + "#166ea4", + "#2a4866", + "#1b232e", + ], + "00i0iHWHzzEoacpfQ": [ + "#e76274", + "#d71440", + "#033a73", + "#051f41", + "#bfa2ba", + "#90497f", + ], + "00i0iHXq6xPzf1pt0": [ + "#2e361c", + "#707814", + "#ada713", + "#c1d2cd", + "#7ba7b5", + "#3c758f", ], }; diff --git a/packages/color-palettes/tools/index.ts b/packages/color-palettes/tools/index.ts index e3bcb83b86..ab7d8a182a 100644 --- a/packages/color-palettes/tools/index.ts +++ b/packages/color-palettes/tools/index.ts @@ -25,7 +25,7 @@ const BASE_URL = const R = 24; const D = R * 2; const GAP = 5; -const width = 6 * (D + 5); +const width = 6 * (D + GAP); const cellW = (width - 2 * GAP) / 3; const yOff = D + GAP; @@ -91,10 +91,11 @@ const grouped: Map = groupByMap( const sections: string[] = []; for (let gid of [...grouped.keys()].sort()) { - sections.push(`## ${["Soft", "Medium", "Strong"][gid]}`); + sections.push(`### ${["Soft", "Medium", "Strong"][gid]}`); const rows = [["Preset", "Swatches", "Stats"]]; const themes = grouped.get(gid)!.sort(compareByKey("sortKey")); - for (let { id, theme, sortKey } of themes) { + const cw = cellW + GAP; + for (let { id, theme } of themes) { console.log(id); const doc = serialize( svg( @@ -104,10 +105,7 @@ for (let gid of [...grouped.keys()].sort()) { (i, [x, y]) => [ "g", { - translate: [ - (cellW + GAP) * x, - yOff + (cellW + GAP) * y, - ], + translate: [cw * x, yOff + cw * y], }, composition(theme, i), ], diff --git a/packages/color-palettes/tpl.readme.md b/packages/color-palettes/tpl.readme.md index ef96ed5d86..829c1825c2 100644 --- a/packages/color-palettes/tpl.readme.md +++ b/packages/color-palettes/tpl.readme.md @@ -35,6 +35,8 @@ ${examples} ## Available palettes +### Usage + ```ts import { THEMES } from "@thi.ng/color-palettes"; @@ -43,62 +45,95 @@ const theme = THEMES["00bYahDYU6E7wDJwL"]; Also see the [swatch generator](https://github.com/thi-ng/umbrella/blob/develop/packages/color-palettes/tools/index.ts) as usage example... -## Soft +Below the color themes are shown **sorted by median LCH chromacity**: -| Preset | Swatches | -|---------------------|------------------------------------------------------------------------------------------------------------| -| `00QLfPkuNx1jE7sMm` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLfPkuNx1jE7sMm.svg) | -| `00QN31G5AB2FTftCe` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QN31G5AB2FTftCe.svg) | -| `00QMEZazmZG85DaWw` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMEZazmZG85DaWw.svg) | -| `00RB4I684QFqc2HAM` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RB4I684QFqc2HAM.svg) | -| `00QMA8RhpXdgwPtLn` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMA8RhpXdgwPtLn.svg) | -| `00g3JvJ0ZydpXXvEC` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00g3JvJ0ZydpXXvEC.svg) | -| `00RB4I89XiwNSlobH` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RB4I89XiwNSlobH.svg) | -| `00RnZfzWN7Ewml76I` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RnZfzWN7Ewml76I.svg) | -| `00RGlyLkqOmPmbuX6` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RGlyLkqOmPmbuX6.svg) | -| `00QLslJAGNA8YREKh` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLslJAGNA8YREKh.svg) | -| `00RTRDIzyUse2qJ9N` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RTRDIzyUse2qJ9N.svg) | -| `00QLfPj2trTnyJHAg` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLfPj2trTnyJHAg.svg) | -| `00QLj3Yj1pUNnTKVY` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLj3Yj1pUNnTKVY.svg) | -| `00QMKP9yh8XlJYcgM` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMKP9yh8XlJYcgM.svg) | -| `00bYahDYU6E7wDJwL` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYahDYU6E7wDJwL.svg) | -| `00QLNIKFhjs5rJCjr` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLNIKFhjs5rJCjr.svg) | -| `00QMEZzTrk06iVgaK` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMEZzTrk06iVgaK.svg) | -| `00QMA8SkIwjW5KEch` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMA8SkIwjW5KEch.svg) | - -## Medium +### Soft + +| Preset | Swatches | +|----------------------|-------------------------------------------------------------------------------------------------------------| +| `00QLfPkuNx1jE7sMm` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLfPkuNx1jE7sMm.svg) | +| `00QN31G5AB2FTftCe` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QN31G5AB2FTftCe.svg) | +| `00QMEZazmZG85DaWw` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMEZazmZG85DaWw.svg) | +| `00f5whlJFUwx7AaEe` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00f5whlJFUwx7AaEe.svg) | +| `00YxFeFYOuMCD0qWe` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00YxFeFYOuMCD0qWe.svg) | +| `00RB4I684QFqc2HAM` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RB4I684QFqc2HAM.svg) | +| `00QMA8RhpXdgwPtLn` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMA8RhpXdgwPtLn.svg) | +| `00gSFutQrW4MxihX7` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00gSFutQrW4MxihX7.svg) | +| `00g3JvJ0ZydpXXvEC` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00g3JvJ0ZydpXXvEC.svg) | +| `00RB4I89XiwNSlobH` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RB4I89XiwNSlobH.svg) | +| `00PBWZvgJvi4gdxGj` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00PBWZvgJvi4gdxGj.svg) | +| `00RnZfzWN7Ewml76I` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RnZfzWN7Ewml76I.svg) | +| `00i0fT276sz5H8vMy` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00i0fT276sz5H8vMy.svg) | +| `00QLj3F8heV6QT4YG` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLj3F8heV6QT4YG.svg) | +| `00g3Jv9zydyJs2QlX` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00g3Jv9zydyJs2QlX.svg) | +| `00RGlyLkqOmPmbuX6` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RGlyLkqOmPmbuX6.svg) | +| `00QLslJAGNA8YREKh` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLslJAGNA8YREKh.svg) | +| `00QMSSCjsJpojbpYza` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMSSCjsJpojbpYza.svg) | +| `00QLn7oETUQZKKr34` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLn7oETUQZKKr34.svg) | +| `00RTRDIzyUse2qJ9N` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RTRDIzyUse2qJ9N.svg) | +| `00QLfPj2trTnyJHAg` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLfPj2trTnyJHAg.svg) | +| `00QLj3Yj1pUNnTKVY` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLj3Yj1pUNnTKVY.svg) | +| `00QMKP9yh8XlJYcgM` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMKP9yh8XlJYcgM.svg) | +| `00bYahDYU6E7wDJwL` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYahDYU6E7wDJwL.svg) | +| `00bYiYyzA6ODPIC8V` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYiYyzA6ODPIC8V.svg) | +| `00bYcj0VC9wmmKNm5` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYcj0VC9wmmKNm5.svg) | +| `00QLj3PylHkh8qY2R` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLj3PylHkh8qY2R.svg) | +| `00QLNIKFhjs5rJCjr` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLNIKFhjs5rJCjr.svg) | +| `00QMEZzTrk06iVgaK` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMEZzTrk06iVgaK.svg) | +| `00QMA8SkIwjW5KEch` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMA8SkIwjW5KEch.svg) | + +### Medium | Preset | Swatches | |---------------------|------------------------------------------------------------------------------------------------------------| | `00QLqYS2ZOgkMeMAE` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLqYS2ZOgkMeMAE.svg) | | `00QMEZgMsSVZavaNd` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMEZgMsSVZavaNd.svg) | +| `00QLqYLjs4H7kdHrp` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLqYLjs4H7kdHrp.svg) | | `00RB4I6NRn6CF3oS0` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RB4I6NRn6CF3oS0.svg) | | `00RTRDAqmTEarmyeR` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RTRDAqmTEarmyeR.svg) | +| `00Yi9btvr8RY4NROm` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00Yi9btvr8RY4NROm.svg) | | `00bYcj4uvi0NIlqyw` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYcj4uvi0NIlqyw.svg) | +| `00Yi9c5ifk9eXO5XX` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00Yi9c5ifk9eXO5XX.svg) | +| `00UWNvBioJ6ZSjDix` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00UWNvBioJ6ZSjDix.svg) | | `00RB4IFxoIYII3Cqi` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RB4IFxoIYII3Cqi.svg) | +| `00OwGARqASN2zngyg` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00OwGARqASN2zngyg.svg) | +| `00b7Az8pDWEjBLMHs` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00b7Az8pDWEjBLMHs.svg) | | `00ORLwKeosxtEeZxq` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00ORLwKeosxtEeZxq.svg) | | `00RGlyJwY9q4Sh0tQ` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RGlyJwY9q4Sh0tQ.svg) | | `00RGlyFVinQl5cj21` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RGlyFVinQl5cj21.svg) | | `00RlTJxJZ16ivgKBw` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RlTJxJZ16ivgKBw.svg) | +| `00i0iHUSVMHOENQof` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00i0iHUSVMHOENQof.svg) | +| `00OkEXVdMQmQ1oQTp` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00OkEXVdMQmQ1oQTp.svg) | | `00bYcivY8Jqx8nsiR` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYcivY8Jqx8nsiR.svg) | +| `00bYiZ8YHLsLMA7j3` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYiZ8YHLsLMA7j3.svg) | +| `00QMSSK2AEOwErS5M` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMSSK2AEOwErS5M.svg) | | `00RYyJ4jHYfMF6yfy` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RYyJ4jHYfMF6yfy.svg) | | `00QMSSEJXJOUdMoSj` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMSSEJXJOUdMoSj.svg) | | `00QMA8tedClukB7IL` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMA8tedClukB7IL.svg) | | `00RTRDOtbFF8KFNH9` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RTRDOtbFF8KFNH9.svg) | | `00bYcixZkofJhLJ8w` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYcixZkofJhLJ8w.svg) | +| `00QLn7BH2doQfh4Yw` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLn7BH2doQfh4Yw.svg) | | `00RYyJ25i8zFwOJGh` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RYyJ25i8zFwOJGh.svg) | +| `00i0iHXq6xPzf1pt0` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00i0iHXq6xPzf1pt0.svg) | | `00bYah8QOLZNgszuV` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYah8QOLZNgszuV.svg) | +| `00QLfPusSpy3uFOpb` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLfPusSpy3uFOpb.svg) | | `00QMSRoDq0SDYprak` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMSRoDq0SDYprak.svg) | -## Strong +### Strong | Preset | Swatches | |----------------------|-------------------------------------------------------------------------------------------------------------| | `00RGly9mkWt6i3suL` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RGly9mkWt6i3suL.svg) | | `00RTRDNL7MjHkDys4` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RTRDNL7MjHkDys4.svg) | | `00RTRDIRDbnErAXHV` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RTRDIRDbnErAXHV.svg) | +| `00i0iHNQPUpX6Jzsb` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00i0iHNQPUpX6Jzsb.svg) | +| `00QMSSK2AEOwErS5Ma` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMSSK2AEOwErS5Ma.svg) | | `00PhEgF9AlI5PTrLB` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00PhEgF9AlI5PTrLB.svg) | +| `00OqoPfvP6y1EmXZQ` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00OqoPfvP6y1EmXZQ.svg) | | `00QMxescYuh8eYT39` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMxescYuh8eYT39.svg) | +| `00QLj3dmHiT8Ep1Un` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLj3dmHiT8Ep1Un.svg) | +| `00QMxexuJYMe6enbZ` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMxexuJYMe6enbZ.svg) | +| `00bYahKZ8LbVgx54y` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYahKZ8LbVgx54y.svg) | | `00RGly9mkWt6i3suLa` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RGly9mkWt6i3suLa.svg) | | `00RlTJrw94KFOF3zL` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RlTJrw94KFOF3zL.svg) | | `00PhGSfzpeU5Bkh47a` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00PhGSfzpeU5Bkh47a.svg) | @@ -114,12 +149,18 @@ Also see the [swatch generator](https://github.com/thi-ng/umbrella/blob/develop/ | `00bYcjDCylnf3k1aB` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYcjDCylnf3k1aB.svg) | | `00QMEZl7ulP3f2WaX` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMEZl7ulP3f2WaX.svg) | | `00QLn7XfPKvMKCrzO` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLn7XfPKvMKCrzO.svg) | +| `00QLNIVe1AkurVqYj` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLNIVe1AkurVqYj.svg) | +| `00i0iHWHzzEoacpfQ` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00i0iHWHzzEoacpfQ.svg) | | `00QLn7Lr9V98YD0zY` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLn7Lr9V98YD0zY.svg) | | `00QMSRqFlj9B8ayZW` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMSRqFlj9B8ayZW.svg) | +| `00QLfPtu33OAdSN4Y` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLfPtu33OAdSN4Y.svg) | | `00QN49h9BAkHHyKJh` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QN49h9BAkHHyKJh.svg) | | `00QLj3fsFErIl5W0b` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLj3fsFErIl5W0b.svg) | +| `00QLNHv6JW1bL031O` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLNHv6JW1bL031O.svg) | +| `00QLNIQXmbJgghRXg` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLNIQXmbJgghRXg.svg) | | `00QLn7G59JhKtuUs0` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLn7G59JhKtuUs0.svg) | | `00QMA8h2BH69zyEk0` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMA8h2BH69zyEk0.svg) | +| `00Q9Yxm7DrZXqTkyS` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00Q9Yxm7DrZXqTkyS.svg) | ## Authors From 8ead409ded4bf8dceb0f24a538ba5ca00d07108d Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Sun, 22 Aug 2021 02:25:20 +0200 Subject: [PATCH 22/76] Publish - @thi.ng/associative@5.2.15 - @thi.ng/color-palettes@0.2.0 - @thi.ng/dgraph-dot@1.0.7 - @thi.ng/dgraph@1.3.34 - @thi.ng/ecs@0.5.25 - @thi.ng/egf@0.4.17 - @thi.ng/fuzzy-viz@1.0.8 - @thi.ng/geom-fuzz@1.0.7 - @thi.ng/geom@2.1.28 - @thi.ng/hiccup-svg@3.8.0 - @thi.ng/imgui@1.0.6 - @thi.ng/rdom-canvas@0.1.59 - @thi.ng/rdom-components@0.2.8 - @thi.ng/rdom@0.6.8 - @thi.ng/rstream-csp@2.0.79 - @thi.ng/rstream-dot@1.2.28 - @thi.ng/rstream-gestures@3.0.33 - @thi.ng/rstream-graph@3.2.80 - @thi.ng/rstream-log-file@1.0.5 - @thi.ng/rstream-log@3.2.32 - @thi.ng/rstream-query@1.1.88 - @thi.ng/rstream@6.0.20 - @thi.ng/shader-ast-glsl@0.2.47 - @thi.ng/shader-ast-js@0.5.48 - @thi.ng/shader-ast-stdlib@0.9.3 - @thi.ng/shader-ast@0.10.3 - @thi.ng/system@1.0.7 - @thi.ng/viz@0.2.41 - @thi.ng/webgl-msdf@1.0.7 - @thi.ng/webgl-shadertoy@0.2.90 - @thi.ng/webgl@5.0.13 --- packages/associative/CHANGELOG.md | 8 ++++++++ packages/associative/package.json | 2 +- packages/color-palettes/CHANGELOG.md | 11 +++++++++++ packages/color-palettes/package.json | 2 +- packages/dgraph-dot/CHANGELOG.md | 8 ++++++++ packages/dgraph-dot/package.json | 4 ++-- packages/dgraph/CHANGELOG.md | 8 ++++++++ packages/dgraph/package.json | 4 ++-- packages/ecs/CHANGELOG.md | 8 ++++++++ packages/ecs/package.json | 4 ++-- packages/egf/CHANGELOG.md | 8 ++++++++ packages/egf/package.json | 4 ++-- packages/fuzzy-viz/CHANGELOG.md | 8 ++++++++ packages/fuzzy-viz/package.json | 4 ++-- packages/geom-fuzz/CHANGELOG.md | 8 ++++++++ packages/geom-fuzz/package.json | 6 +++--- packages/geom/CHANGELOG.md | 8 ++++++++ packages/geom/package.json | 4 ++-- packages/hiccup-svg/CHANGELOG.md | 11 +++++++++++ packages/hiccup-svg/package.json | 2 +- packages/imgui/CHANGELOG.md | 8 ++++++++ packages/imgui/package.json | 4 ++-- packages/rdom-canvas/CHANGELOG.md | 8 ++++++++ packages/rdom-canvas/package.json | 6 +++--- packages/rdom-components/CHANGELOG.md | 8 ++++++++ packages/rdom-components/package.json | 8 ++++---- packages/rdom/CHANGELOG.md | 8 ++++++++ packages/rdom/package.json | 4 ++-- packages/rstream-csp/CHANGELOG.md | 8 ++++++++ packages/rstream-csp/package.json | 4 ++-- packages/rstream-dot/CHANGELOG.md | 8 ++++++++ packages/rstream-dot/package.json | 4 ++-- packages/rstream-gestures/CHANGELOG.md | 8 ++++++++ packages/rstream-gestures/package.json | 4 ++-- packages/rstream-graph/CHANGELOG.md | 8 ++++++++ packages/rstream-graph/package.json | 4 ++-- packages/rstream-log-file/CHANGELOG.md | 8 ++++++++ packages/rstream-log-file/package.json | 4 ++-- packages/rstream-log/CHANGELOG.md | 8 ++++++++ packages/rstream-log/package.json | 4 ++-- packages/rstream-query/CHANGELOG.md | 8 ++++++++ packages/rstream-query/package.json | 8 ++++---- packages/rstream/CHANGELOG.md | 8 ++++++++ packages/rstream/package.json | 4 ++-- packages/shader-ast-glsl/CHANGELOG.md | 8 ++++++++ packages/shader-ast-glsl/package.json | 4 ++-- packages/shader-ast-js/CHANGELOG.md | 8 ++++++++ packages/shader-ast-js/package.json | 4 ++-- packages/shader-ast-stdlib/CHANGELOG.md | 8 ++++++++ packages/shader-ast-stdlib/package.json | 4 ++-- packages/shader-ast/CHANGELOG.md | 8 ++++++++ packages/shader-ast/package.json | 4 ++-- packages/system/CHANGELOG.md | 8 ++++++++ packages/system/package.json | 4 ++-- packages/viz/CHANGELOG.md | 8 ++++++++ packages/viz/package.json | 4 ++-- packages/webgl-msdf/CHANGELOG.md | 8 ++++++++ packages/webgl-msdf/package.json | 6 +++--- packages/webgl-shadertoy/CHANGELOG.md | 8 ++++++++ packages/webgl-shadertoy/package.json | 8 ++++---- packages/webgl/CHANGELOG.md | 8 ++++++++ packages/webgl/package.json | 10 +++++----- 62 files changed, 325 insertions(+), 71 deletions(-) diff --git a/packages/associative/CHANGELOG.md b/packages/associative/CHANGELOG.md index 387e10d64e..891391a113 100644 --- a/packages/associative/CHANGELOG.md +++ b/packages/associative/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.2.15](https://github.com/thi-ng/umbrella/compare/@thi.ng/associative@5.2.14...@thi.ng/associative@5.2.15) (2021-08-22) + +**Note:** Version bump only for package @thi.ng/associative + + + + + # [5.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/associative@5.1.9...@thi.ng/associative@5.2.0) (2021-03-30) diff --git a/packages/associative/package.json b/packages/associative/package.json index 88640d0644..5ffc0d655c 100644 --- a/packages/associative/package.json +++ b/packages/associative/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/associative", - "version": "5.2.14", + "version": "5.2.15", "description": "Alternative Map and Set implementations with customizable equality semantics & supporting operations", "module": "./index.js", "main": "./lib/index.js", diff --git a/packages/color-palettes/CHANGELOG.md b/packages/color-palettes/CHANGELOG.md index 2b105f754e..c9ad84f783 100644 --- a/packages/color-palettes/CHANGELOG.md +++ b/packages/color-palettes/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/color-palettes@0.1.0...@thi.ng/color-palettes@0.2.0) (2021-08-22) + + +### Features + +* **color-palettes:** add more palettes, update gen ([ba4057c](https://github.com/thi-ng/umbrella/commit/ba4057c4f1bfe4d093674c953080ae84fd92a531)) + + + + + # 0.1.0 (2021-08-21) diff --git a/packages/color-palettes/package.json b/packages/color-palettes/package.json index ab2a6cb9d2..0049f46459 100644 --- a/packages/color-palettes/package.json +++ b/packages/color-palettes/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/color-palettes", - "version": "0.1.0", + "version": "0.2.0", "description": "Collection of 100 image based color palettes", "module": "./index.js", "main": "./lib/index.js", diff --git a/packages/dgraph-dot/CHANGELOG.md b/packages/dgraph-dot/CHANGELOG.md index 9021667565..8e8a77e666 100644 --- a/packages/dgraph-dot/CHANGELOG.md +++ b/packages/dgraph-dot/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/dgraph-dot@1.0.6...@thi.ng/dgraph-dot@1.0.7) (2021-08-22) + +**Note:** Version bump only for package @thi.ng/dgraph-dot + + + + + # 0.1.0 (2020-04-03) diff --git a/packages/dgraph-dot/package.json b/packages/dgraph-dot/package.json index 178b619d18..ce8c90cec5 100644 --- a/packages/dgraph-dot/package.json +++ b/packages/dgraph-dot/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/dgraph-dot", - "version": "1.0.6", + "version": "1.0.7", "description": "Customizable Graphviz DOT serialization for @thi.ng/dgraph", "module": "./index.js", "main": "./lib/index.js", @@ -39,7 +39,7 @@ }, "dependencies": { "@thi.ng/api": "^7.1.9", - "@thi.ng/dgraph": "^1.3.33", + "@thi.ng/dgraph": "^1.3.34", "@thi.ng/dot": "^1.2.37" }, "files": [ diff --git a/packages/dgraph/CHANGELOG.md b/packages/dgraph/CHANGELOG.md index 4b5ab15f6b..c5758a9fa5 100644 --- a/packages/dgraph/CHANGELOG.md +++ b/packages/dgraph/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.3.34](https://github.com/thi-ng/umbrella/compare/@thi.ng/dgraph@1.3.33...@thi.ng/dgraph@1.3.34) (2021-08-22) + +**Note:** Version bump only for package @thi.ng/dgraph + + + + + # [1.3.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/dgraph@1.2.28...@thi.ng/dgraph@1.3.0) (2020-11-24) diff --git a/packages/dgraph/package.json b/packages/dgraph/package.json index 2f1823a360..47137b7959 100644 --- a/packages/dgraph/package.json +++ b/packages/dgraph/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/dgraph", - "version": "1.3.33", + "version": "1.3.34", "description": "Type-agnostic directed acyclic graph (DAG) & graph operations", "module": "./index.js", "main": "./lib/index.js", @@ -39,7 +39,7 @@ }, "dependencies": { "@thi.ng/api": "^7.1.9", - "@thi.ng/associative": "^5.2.14", + "@thi.ng/associative": "^5.2.15", "@thi.ng/equiv": "^1.0.45", "@thi.ng/errors": "^1.3.4", "@thi.ng/transducers": "^7.9.1" diff --git a/packages/ecs/CHANGELOG.md b/packages/ecs/CHANGELOG.md index 94bdb07669..d1799396c8 100644 --- a/packages/ecs/CHANGELOG.md +++ b/packages/ecs/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.5.25](https://github.com/thi-ng/umbrella/compare/@thi.ng/ecs@0.5.24...@thi.ng/ecs@0.5.25) (2021-08-22) + +**Note:** Version bump only for package @thi.ng/ecs + + + + + # [0.5.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/ecs@0.4.9...@thi.ng/ecs@0.5.0) (2021-02-20) diff --git a/packages/ecs/package.json b/packages/ecs/package.json index 3a99cacbfa..067bb8cab6 100644 --- a/packages/ecs/package.json +++ b/packages/ecs/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/ecs", - "version": "0.5.24", + "version": "0.5.25", "description": "Entity Component System based around typed arrays & sparse sets", "module": "./index.js", "main": "./lib/index.js", @@ -42,7 +42,7 @@ }, "dependencies": { "@thi.ng/api": "^7.1.9", - "@thi.ng/associative": "^5.2.14", + "@thi.ng/associative": "^5.2.15", "@thi.ng/binary": "^2.2.10", "@thi.ng/checks": "^2.9.10", "@thi.ng/dcons": "^2.3.33", diff --git a/packages/egf/CHANGELOG.md b/packages/egf/CHANGELOG.md index 6ec42db3ed..8b6cea79ed 100644 --- a/packages/egf/CHANGELOG.md +++ b/packages/egf/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.4.17](https://github.com/thi-ng/umbrella/compare/@thi.ng/egf@0.4.16...@thi.ng/egf@0.4.17) (2021-08-22) + +**Note:** Version bump only for package @thi.ng/egf + + + + + # [0.4.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/egf@0.3.21...@thi.ng/egf@0.4.0) (2021-03-27) diff --git a/packages/egf/package.json b/packages/egf/package.json index 4b02f11835..d5c672ee23 100644 --- a/packages/egf/package.json +++ b/packages/egf/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/egf", - "version": "0.4.16", + "version": "0.4.17", "description": "Extensible Graph Format", "module": "./index.js", "main": "./lib/index.js", @@ -37,7 +37,7 @@ }, "dependencies": { "@thi.ng/api": "^7.1.9", - "@thi.ng/associative": "^5.2.14", + "@thi.ng/associative": "^5.2.15", "@thi.ng/checks": "^2.9.10", "@thi.ng/dot": "^1.2.37", "@thi.ng/errors": "^1.3.4", diff --git a/packages/fuzzy-viz/CHANGELOG.md b/packages/fuzzy-viz/CHANGELOG.md index 2cc76ec7b6..acee93fb33 100644 --- a/packages/fuzzy-viz/CHANGELOG.md +++ b/packages/fuzzy-viz/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/fuzzy-viz@1.0.7...@thi.ng/fuzzy-viz@1.0.8) (2021-08-22) + +**Note:** Version bump only for package @thi.ng/fuzzy-viz + + + + + ## [0.1.17](https://github.com/thi-ng/umbrella/compare/@thi.ng/fuzzy-viz@0.1.16...@thi.ng/fuzzy-viz@0.1.17) (2021-03-24) diff --git a/packages/fuzzy-viz/package.json b/packages/fuzzy-viz/package.json index 8bc22db75d..1e9578ba40 100644 --- a/packages/fuzzy-viz/package.json +++ b/packages/fuzzy-viz/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/fuzzy-viz", - "version": "1.0.7", + "version": "1.0.8", "description": "Visualization, instrumentation & introspection utils for @thi.ng/fuzzy", "module": "./index.js", "main": "./lib/index.js", @@ -41,7 +41,7 @@ "@thi.ng/api": "^7.1.9", "@thi.ng/fuzzy": "^1.0.3", "@thi.ng/hiccup": "^3.6.21", - "@thi.ng/hiccup-svg": "^3.7.33", + "@thi.ng/hiccup-svg": "^3.8.0", "@thi.ng/math": "^4.0.5", "@thi.ng/strings": "^2.1.6", "@thi.ng/text-canvas": "^1.1.3" diff --git a/packages/geom-fuzz/CHANGELOG.md b/packages/geom-fuzz/CHANGELOG.md index d1b9e07d67..f19539f802 100644 --- a/packages/geom-fuzz/CHANGELOG.md +++ b/packages/geom-fuzz/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-fuzz@1.0.6...@thi.ng/geom-fuzz@1.0.7) (2021-08-22) + +**Note:** Version bump only for package @thi.ng/geom-fuzz + + + + + # 0.1.0 (2020-06-20) diff --git a/packages/geom-fuzz/package.json b/packages/geom-fuzz/package.json index bc15c109b6..90ad5416fe 100644 --- a/packages/geom-fuzz/package.json +++ b/packages/geom-fuzz/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-fuzz", - "version": "1.0.6", + "version": "1.0.7", "description": "Highly configurable, fuzzy line & polygon creation with presets and composable fill & stroke styles. Canvas & SVG support", "module": "./index.js", "main": "./lib/index.js", @@ -38,9 +38,9 @@ }, "dependencies": { "@thi.ng/api": "^7.1.9", - "@thi.ng/associative": "^5.2.14", + "@thi.ng/associative": "^5.2.15", "@thi.ng/color": "^3.2.6", - "@thi.ng/geom": "^2.1.27", + "@thi.ng/geom": "^2.1.28", "@thi.ng/geom-api": "^2.0.30", "@thi.ng/geom-clip-line": "^1.2.44", "@thi.ng/geom-resample": "^1.0.4", diff --git a/packages/geom/CHANGELOG.md b/packages/geom/CHANGELOG.md index 90eba0ed21..18106ec544 100644 --- a/packages/geom/CHANGELOG.md +++ b/packages/geom/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.1.28](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom@2.1.27...@thi.ng/geom@2.1.28) (2021-08-22) + +**Note:** Version bump only for package @thi.ng/geom + + + + + # [2.1.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom@2.0.6...@thi.ng/geom@2.1.0) (2021-02-20) diff --git a/packages/geom/package.json b/packages/geom/package.json index 2953624368..7c115c848c 100644 --- a/packages/geom/package.json +++ b/packages/geom/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom", - "version": "2.1.27", + "version": "2.1.28", "description": "Functional, polymorphic API for 2D geometry types & SVG generation", "module": "./index.js", "main": "./lib/index.js", @@ -57,7 +57,7 @@ "@thi.ng/geom-subdiv-curve": "^1.0.4", "@thi.ng/geom-tessellate": "^1.0.4", "@thi.ng/hiccup": "^3.6.21", - "@thi.ng/hiccup-svg": "^3.7.33", + "@thi.ng/hiccup-svg": "^3.8.0", "@thi.ng/math": "^4.0.5", "@thi.ng/matrices": "^1.0.4", "@thi.ng/random": "^2.4.7", diff --git a/packages/hiccup-svg/CHANGELOG.md b/packages/hiccup-svg/CHANGELOG.md index 0f159f2b07..53472864b0 100644 --- a/packages/hiccup-svg/CHANGELOG.md +++ b/packages/hiccup-svg/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.8.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-svg@3.7.33...@thi.ng/hiccup-svg@3.8.0) (2021-08-22) + + +### Features + +* **hiccup-svg:** add numericAttribs(), fix svg() ([d6cb992](https://github.com/thi-ng/umbrella/commit/d6cb9929d274c83e89670e9140bba1cb172a0deb)) + + + + + # [3.7.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-svg@3.6.6...@thi.ng/hiccup-svg@3.7.0) (2021-01-02) diff --git a/packages/hiccup-svg/package.json b/packages/hiccup-svg/package.json index 742adbd3a3..0c2abec207 100644 --- a/packages/hiccup-svg/package.json +++ b/packages/hiccup-svg/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hiccup-svg", - "version": "3.7.33", + "version": "3.8.0", "description": "SVG element functions for @thi.ng/hiccup & @thi.ng/hdom", "module": "./index.js", "main": "./lib/index.js", diff --git a/packages/imgui/CHANGELOG.md b/packages/imgui/CHANGELOG.md index 975cd88699..f541ef49b0 100644 --- a/packages/imgui/CHANGELOG.md +++ b/packages/imgui/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/imgui@1.0.5...@thi.ng/imgui@1.0.6) (2021-08-22) + +**Note:** Version bump only for package @thi.ng/imgui + + + + + ## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/imgui@1.0.2...@thi.ng/imgui@1.0.3) (2021-08-18) diff --git a/packages/imgui/package.json b/packages/imgui/package.json index 92181b79a9..5bb120708f 100644 --- a/packages/imgui/package.json +++ b/packages/imgui/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/imgui", - "version": "1.0.5", + "version": "1.0.6", "description": "Immediate mode GUI with flexible state handling & data only shape output", "module": "./index.js", "main": "./lib/index.js", @@ -40,7 +40,7 @@ "dependencies": { "@thi.ng/api": "^7.1.9", "@thi.ng/checks": "^2.9.10", - "@thi.ng/geom": "^2.1.27", + "@thi.ng/geom": "^2.1.28", "@thi.ng/geom-api": "^2.0.30", "@thi.ng/geom-isec": "^1.0.4", "@thi.ng/geom-tessellate": "^1.0.4", diff --git a/packages/rdom-canvas/CHANGELOG.md b/packages/rdom-canvas/CHANGELOG.md index 4093d488d0..812702e4a4 100644 --- a/packages/rdom-canvas/CHANGELOG.md +++ b/packages/rdom-canvas/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.59](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom-canvas@0.1.58...@thi.ng/rdom-canvas@0.1.59) (2021-08-22) + +**Note:** Version bump only for package @thi.ng/rdom-canvas + + + + + ## [0.1.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom-canvas@0.1.8...@thi.ng/rdom-canvas@0.1.9) (2020-07-28) diff --git a/packages/rdom-canvas/package.json b/packages/rdom-canvas/package.json index 98c462a8c3..4bc3d3e2cf 100644 --- a/packages/rdom-canvas/package.json +++ b/packages/rdom-canvas/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rdom-canvas", - "version": "0.1.58", + "version": "0.1.59", "description": "@thi.ng/rdom component wrapper for @thi.ng/hiccup-canvas and declarative canvas drawing", "module": "./index.js", "main": "./lib/index.js", @@ -41,8 +41,8 @@ "@thi.ng/api": "^7.1.9", "@thi.ng/checks": "^2.9.10", "@thi.ng/hiccup-canvas": "^1.2.14", - "@thi.ng/rdom": "^0.6.7", - "@thi.ng/rstream": "^6.0.19", + "@thi.ng/rdom": "^0.6.8", + "@thi.ng/rstream": "^6.0.20", "@thi.ng/transducers": "^7.9.1" }, "files": [ diff --git a/packages/rdom-components/CHANGELOG.md b/packages/rdom-components/CHANGELOG.md index 010994940b..f7ac337c49 100644 --- a/packages/rdom-components/CHANGELOG.md +++ b/packages/rdom-components/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.2.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom-components@0.2.7...@thi.ng/rdom-components@0.2.8) (2021-08-22) + +**Note:** Version bump only for package @thi.ng/rdom-components + + + + + # [0.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom-components@0.1.46...@thi.ng/rdom-components@0.2.0) (2021-08-04) diff --git a/packages/rdom-components/package.json b/packages/rdom-components/package.json index c5270b308a..0f5fea96f6 100644 --- a/packages/rdom-components/package.json +++ b/packages/rdom-components/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rdom-components", - "version": "0.2.7", + "version": "0.2.8", "description": "Collection of unstyled, customizable components for @thi.ng/rdom", "module": "./index.js", "main": "./lib/index.js", @@ -38,10 +38,10 @@ }, "dependencies": { "@thi.ng/api": "^7.1.9", - "@thi.ng/associative": "^5.2.14", + "@thi.ng/associative": "^5.2.15", "@thi.ng/hiccup-html": "^1.1.0", - "@thi.ng/rdom": "^0.6.7", - "@thi.ng/rstream": "^6.0.19", + "@thi.ng/rdom": "^0.6.8", + "@thi.ng/rstream": "^6.0.20", "@thi.ng/strings": "^2.1.6", "@thi.ng/transducers": "^7.9.1" }, diff --git a/packages/rdom/CHANGELOG.md b/packages/rdom/CHANGELOG.md index f321acb859..193d604616 100644 --- a/packages/rdom/CHANGELOG.md +++ b/packages/rdom/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.6.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom@0.6.7...@thi.ng/rdom@0.6.8) (2021-08-22) + +**Note:** Version bump only for package @thi.ng/rdom + + + + + # [0.6.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom@0.5.0...@thi.ng/rdom@0.6.0) (2021-08-04) diff --git a/packages/rdom/package.json b/packages/rdom/package.json index e799eaa54a..ba68953de0 100644 --- a/packages/rdom/package.json +++ b/packages/rdom/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rdom", - "version": "0.6.7", + "version": "0.6.8", "description": "Lightweight, reactive, VDOM-less UI/DOM components with async lifecycle and @thi.ng/hiccup compatible", "module": "./index.js", "main": "./lib/index.js", @@ -44,7 +44,7 @@ "@thi.ng/hiccup": "^3.6.21", "@thi.ng/paths": "^4.2.13", "@thi.ng/prefixes": "^1.0.2", - "@thi.ng/rstream": "^6.0.19", + "@thi.ng/rstream": "^6.0.20", "@thi.ng/strings": "^2.1.6" }, "files": [ diff --git a/packages/rstream-csp/CHANGELOG.md b/packages/rstream-csp/CHANGELOG.md index 1d09004480..388f8afa0f 100644 --- a/packages/rstream-csp/CHANGELOG.md +++ b/packages/rstream-csp/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.0.79](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-csp@2.0.78...@thi.ng/rstream-csp@2.0.79) (2021-08-22) + +**Note:** Version bump only for package @thi.ng/rstream-csp + + + + + # [2.0.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-csp@1.0.33...@thi.ng/rstream-csp@2.0.0) (2019-11-30) ### Code Refactoring diff --git a/packages/rstream-csp/package.json b/packages/rstream-csp/package.json index 8165c0a5d6..bf2581f239 100644 --- a/packages/rstream-csp/package.json +++ b/packages/rstream-csp/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-csp", - "version": "2.0.78", + "version": "2.0.79", "description": "@thi.ng/csp bridge module for @thi.ng/rstream", "module": "./index.js", "main": "./lib/index.js", @@ -39,7 +39,7 @@ }, "dependencies": { "@thi.ng/csp": "^1.1.73", - "@thi.ng/rstream": "^6.0.19" + "@thi.ng/rstream": "^6.0.20" }, "files": [ "*.js", diff --git a/packages/rstream-dot/CHANGELOG.md b/packages/rstream-dot/CHANGELOG.md index 5b75447d24..fc7c07470d 100644 --- a/packages/rstream-dot/CHANGELOG.md +++ b/packages/rstream-dot/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.2.28](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-dot@1.2.27...@thi.ng/rstream-dot@1.2.28) (2021-08-22) + +**Note:** Version bump only for package @thi.ng/rstream-dot + + + + + # [1.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-dot@1.1.59...@thi.ng/rstream-dot@1.2.0) (2021-02-22) diff --git a/packages/rstream-dot/package.json b/packages/rstream-dot/package.json index 458ba70f44..23fb079ce6 100644 --- a/packages/rstream-dot/package.json +++ b/packages/rstream-dot/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-dot", - "version": "1.2.27", + "version": "1.2.28", "description": "Graphviz DOT conversion of @thi.ng/rstream dataflow graph topologies", "module": "./index.js", "main": "./lib/index.js", @@ -38,7 +38,7 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/rstream": "^6.0.19", + "@thi.ng/rstream": "^6.0.20", "@thi.ng/strings": "^2.1.6", "@thi.ng/transducers": "^7.9.1" }, diff --git a/packages/rstream-gestures/CHANGELOG.md b/packages/rstream-gestures/CHANGELOG.md index c2fa6b0a1a..9936efe650 100644 --- a/packages/rstream-gestures/CHANGELOG.md +++ b/packages/rstream-gestures/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.0.33](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-gestures@3.0.32...@thi.ng/rstream-gestures@3.0.33) (2021-08-22) + +**Note:** Version bump only for package @thi.ng/rstream-gestures + + + + + # [3.0.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-gestures@2.0.45...@thi.ng/rstream-gestures@3.0.0) (2020-12-22) diff --git a/packages/rstream-gestures/package.json b/packages/rstream-gestures/package.json index a6f6054892..2889dc806a 100644 --- a/packages/rstream-gestures/package.json +++ b/packages/rstream-gestures/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-gestures", - "version": "3.0.32", + "version": "3.0.33", "description": "Unified mouse, mouse wheel & multi-touch event stream abstraction", "module": "./index.js", "main": "./lib/index.js", @@ -41,7 +41,7 @@ "@thi.ng/api": "^7.1.9", "@thi.ng/checks": "^2.9.10", "@thi.ng/math": "^4.0.5", - "@thi.ng/rstream": "^6.0.19", + "@thi.ng/rstream": "^6.0.20", "@thi.ng/transducers": "^7.9.1" }, "files": [ diff --git a/packages/rstream-graph/CHANGELOG.md b/packages/rstream-graph/CHANGELOG.md index 484e646d10..04a09c784f 100644 --- a/packages/rstream-graph/CHANGELOG.md +++ b/packages/rstream-graph/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.2.80](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-graph@3.2.79...@thi.ng/rstream-graph@3.2.80) (2021-08-22) + +**Note:** Version bump only for package @thi.ng/rstream-graph + + + + + # [3.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-graph@3.1.8...@thi.ng/rstream-graph@3.2.0) (2019-11-30) ### Bug Fixes diff --git a/packages/rstream-graph/package.json b/packages/rstream-graph/package.json index 81e7a9fcf0..e63ce53ffe 100644 --- a/packages/rstream-graph/package.json +++ b/packages/rstream-graph/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-graph", - "version": "3.2.79", + "version": "3.2.80", "description": "Declarative dataflow graph construction for @thi.ng/rstream", "module": "./index.js", "main": "./lib/index.js", @@ -44,7 +44,7 @@ "@thi.ng/errors": "^1.3.4", "@thi.ng/paths": "^4.2.13", "@thi.ng/resolve-map": "^4.2.26", - "@thi.ng/rstream": "^6.0.19", + "@thi.ng/rstream": "^6.0.20", "@thi.ng/transducers": "^7.9.1" }, "files": [ diff --git a/packages/rstream-log-file/CHANGELOG.md b/packages/rstream-log-file/CHANGELOG.md index b9df57e808..9776aeb8b4 100644 --- a/packages/rstream-log-file/CHANGELOG.md +++ b/packages/rstream-log-file/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log-file@1.0.4...@thi.ng/rstream-log-file@1.0.5) (2021-08-22) + +**Note:** Version bump only for package @thi.ng/rstream-log-file + + + + + # 0.1.0 (2019-03-19) ### Features diff --git a/packages/rstream-log-file/package.json b/packages/rstream-log-file/package.json index 88ddb19736..3969245d0d 100644 --- a/packages/rstream-log-file/package.json +++ b/packages/rstream-log-file/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-log-file", - "version": "1.0.4", + "version": "1.0.5", "description": "File output handler for structured, multilevel & hierarchical loggers based on @thi.ng/rstream", "module": "./index.js", "main": "./lib/index.js", @@ -38,7 +38,7 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/rstream": "^6.0.19" + "@thi.ng/rstream": "^6.0.20" }, "files": [ "*.js", diff --git a/packages/rstream-log/CHANGELOG.md b/packages/rstream-log/CHANGELOG.md index c5d10095c5..5ef9be4d73 100644 --- a/packages/rstream-log/CHANGELOG.md +++ b/packages/rstream-log/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.2.32](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log@3.2.31...@thi.ng/rstream-log@3.2.32) (2021-08-22) + +**Note:** Version bump only for package @thi.ng/rstream-log + + + + + # [3.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log@3.1.55...@thi.ng/rstream-log@3.2.0) (2021-01-13) diff --git a/packages/rstream-log/package.json b/packages/rstream-log/package.json index c249bf8879..2caaebb84a 100644 --- a/packages/rstream-log/package.json +++ b/packages/rstream-log/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-log", - "version": "3.2.31", + "version": "3.2.32", "description": "Structured, multilevel & hierarchical loggers based on @thi.ng/rstream", "module": "./index.js", "main": "./lib/index.js", @@ -41,7 +41,7 @@ "@thi.ng/api": "^7.1.9", "@thi.ng/checks": "^2.9.10", "@thi.ng/errors": "^1.3.4", - "@thi.ng/rstream": "^6.0.19", + "@thi.ng/rstream": "^6.0.20", "@thi.ng/strings": "^2.1.6", "@thi.ng/transducers": "^7.9.1" }, diff --git a/packages/rstream-query/CHANGELOG.md b/packages/rstream-query/CHANGELOG.md index 4dba714ee9..c6e7ff0288 100644 --- a/packages/rstream-query/CHANGELOG.md +++ b/packages/rstream-query/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.1.88](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-query@1.1.87...@thi.ng/rstream-query@1.1.88) (2021-08-22) + +**Note:** Version bump only for package @thi.ng/rstream-query + + + + + ## [1.1.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-query@1.1.6...@thi.ng/rstream-query@1.1.7) (2019-11-30) ### Bug Fixes diff --git a/packages/rstream-query/package.json b/packages/rstream-query/package.json index 7ef67970c8..0400fc3602 100644 --- a/packages/rstream-query/package.json +++ b/packages/rstream-query/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-query", - "version": "1.1.87", + "version": "1.1.88", "description": "@thi.ng/rstream based triple store & reactive query engine", "module": "./index.js", "main": "./lib/index.js", @@ -39,13 +39,13 @@ }, "dependencies": { "@thi.ng/api": "^7.1.9", - "@thi.ng/associative": "^5.2.14", + "@thi.ng/associative": "^5.2.15", "@thi.ng/checks": "^2.9.10", "@thi.ng/equiv": "^1.0.45", "@thi.ng/errors": "^1.3.4", "@thi.ng/math": "^4.0.5", - "@thi.ng/rstream": "^6.0.19", - "@thi.ng/rstream-dot": "^1.2.27", + "@thi.ng/rstream": "^6.0.20", + "@thi.ng/rstream-dot": "^1.2.28", "@thi.ng/transducers": "^7.9.1" }, "files": [ diff --git a/packages/rstream/CHANGELOG.md b/packages/rstream/CHANGELOG.md index ff84f1637d..f375341f25 100644 --- a/packages/rstream/CHANGELOG.md +++ b/packages/rstream/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [6.0.20](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream@6.0.19...@thi.ng/rstream@6.0.20) (2021-08-22) + +**Note:** Version bump only for package @thi.ng/rstream + + + + + ## [6.0.14](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream@6.0.13...@thi.ng/rstream@6.0.14) (2021-08-08) diff --git a/packages/rstream/package.json b/packages/rstream/package.json index 3d01710288..8405cf6666 100644 --- a/packages/rstream/package.json +++ b/packages/rstream/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream", - "version": "6.0.19", + "version": "6.0.20", "description": "Reactive streams & subscription primitives for constructing dataflow graphs / pipelines", "module": "./index.js", "main": "./lib/index.js", @@ -40,7 +40,7 @@ "dependencies": { "@thi.ng/api": "^7.1.9", "@thi.ng/arrays": "^1.0.2", - "@thi.ng/associative": "^5.2.14", + "@thi.ng/associative": "^5.2.15", "@thi.ng/atom": "^4.1.41", "@thi.ng/checks": "^2.9.10", "@thi.ng/errors": "^1.3.4", diff --git a/packages/shader-ast-glsl/CHANGELOG.md b/packages/shader-ast-glsl/CHANGELOG.md index 1cdc0c9bb7..4ca608ce07 100644 --- a/packages/shader-ast-glsl/CHANGELOG.md +++ b/packages/shader-ast-glsl/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.2.47](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-glsl@0.2.46...@thi.ng/shader-ast-glsl@0.2.47) (2021-08-22) + +**Note:** Version bump only for package @thi.ng/shader-ast-glsl + + + + + # [0.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-glsl@0.1.39...@thi.ng/shader-ast-glsl@0.2.0) (2020-07-28) diff --git a/packages/shader-ast-glsl/package.json b/packages/shader-ast-glsl/package.json index 0a4319cd91..b38b8a6d72 100644 --- a/packages/shader-ast-glsl/package.json +++ b/packages/shader-ast-glsl/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/shader-ast-glsl", - "version": "0.2.46", + "version": "0.2.47", "description": "Customizable GLSL codegen for @thi.ng/shader-ast", "module": "./index.js", "main": "./lib/index.js", @@ -41,7 +41,7 @@ "@thi.ng/api": "^7.1.9", "@thi.ng/checks": "^2.9.10", "@thi.ng/errors": "^1.3.4", - "@thi.ng/shader-ast": "^0.10.2" + "@thi.ng/shader-ast": "^0.10.3" }, "files": [ "*.js", diff --git a/packages/shader-ast-js/CHANGELOG.md b/packages/shader-ast-js/CHANGELOG.md index ad23b75018..768e316a5b 100644 --- a/packages/shader-ast-js/CHANGELOG.md +++ b/packages/shader-ast-js/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.5.48](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-js@0.5.47...@thi.ng/shader-ast-js@0.5.48) (2021-08-22) + +**Note:** Version bump only for package @thi.ng/shader-ast-js + + + + + ## [0.5.45](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-js@0.5.44...@thi.ng/shader-ast-js@0.5.45) (2021-08-17) diff --git a/packages/shader-ast-js/package.json b/packages/shader-ast-js/package.json index be40f2af9f..cea90343f2 100644 --- a/packages/shader-ast-js/package.json +++ b/packages/shader-ast-js/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/shader-ast-js", - "version": "0.5.47", + "version": "0.5.48", "description": "Customizable JS codegen, compiler & runtime for @thi.ng/shader-ast", "module": "./index.js", "main": "./lib/index.js", @@ -44,7 +44,7 @@ "@thi.ng/math": "^4.0.5", "@thi.ng/matrices": "^1.0.4", "@thi.ng/pixel": "^1.0.4", - "@thi.ng/shader-ast": "^0.10.2", + "@thi.ng/shader-ast": "^0.10.3", "@thi.ng/vectors": "^6.1.2" }, "files": [ diff --git a/packages/shader-ast-stdlib/CHANGELOG.md b/packages/shader-ast-stdlib/CHANGELOG.md index e35bc20aba..5804efb87b 100644 --- a/packages/shader-ast-stdlib/CHANGELOG.md +++ b/packages/shader-ast-stdlib/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-stdlib@0.9.2...@thi.ng/shader-ast-stdlib@0.9.3) (2021-08-22) + +**Note:** Version bump only for package @thi.ng/shader-ast-stdlib + + + + + # [0.9.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-stdlib@0.8.0...@thi.ng/shader-ast-stdlib@0.9.0) (2021-08-17) diff --git a/packages/shader-ast-stdlib/package.json b/packages/shader-ast-stdlib/package.json index 7539935373..e8428c94a5 100644 --- a/packages/shader-ast-stdlib/package.json +++ b/packages/shader-ast-stdlib/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/shader-ast-stdlib", - "version": "0.9.2", + "version": "0.9.3", "description": "Function collection for modular GPGPU / shader programming with @thi.ng/shader-ast", "module": "./index.js", "main": "./lib/index.js", @@ -39,7 +39,7 @@ }, "dependencies": { "@thi.ng/api": "^7.1.9", - "@thi.ng/shader-ast": "^0.10.2" + "@thi.ng/shader-ast": "^0.10.3" }, "files": [ "*.js", diff --git a/packages/shader-ast/CHANGELOG.md b/packages/shader-ast/CHANGELOG.md index 5aab501394..1fb854843d 100644 --- a/packages/shader-ast/CHANGELOG.md +++ b/packages/shader-ast/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.10.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast@0.10.2...@thi.ng/shader-ast@0.10.3) (2021-08-22) + +**Note:** Version bump only for package @thi.ng/shader-ast + + + + + # [0.10.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast@0.9.0...@thi.ng/shader-ast@0.10.0) (2021-08-17) diff --git a/packages/shader-ast/package.json b/packages/shader-ast/package.json index f7a7e35190..adc8807845 100644 --- a/packages/shader-ast/package.json +++ b/packages/shader-ast/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/shader-ast", - "version": "0.10.2", + "version": "0.10.3", "description": "DSL to define shader code in TypeScript and cross-compile to GLSL, JS and other targets", "module": "./index.js", "main": "./lib/index.js", @@ -41,7 +41,7 @@ "@thi.ng/api": "^7.1.9", "@thi.ng/checks": "^2.9.10", "@thi.ng/defmulti": "^1.3.16", - "@thi.ng/dgraph": "^1.3.33", + "@thi.ng/dgraph": "^1.3.34", "@thi.ng/errors": "^1.3.4", "@thi.ng/math": "^4.0.5" }, diff --git a/packages/system/CHANGELOG.md b/packages/system/CHANGELOG.md index 83e1389b9f..c61843f2e4 100644 --- a/packages/system/CHANGELOG.md +++ b/packages/system/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/system@1.0.6...@thi.ng/system@1.0.7) (2021-08-22) + +**Note:** Version bump only for package @thi.ng/system + + + + + # [0.3.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/system@0.2.48...@thi.ng/system@0.3.0) (2021-03-30) diff --git a/packages/system/package.json b/packages/system/package.json index 4525e7f2f4..d0a352222c 100644 --- a/packages/system/package.json +++ b/packages/system/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/system", - "version": "1.0.6", + "version": "1.0.7", "description": "Minimal and explicit dependency-injection & lifecycle container for stateful app components", "module": "./index.js", "main": "./lib/index.js", @@ -39,7 +39,7 @@ }, "dependencies": { "@thi.ng/api": "^7.1.9", - "@thi.ng/dgraph": "^1.3.33" + "@thi.ng/dgraph": "^1.3.34" }, "files": [ "*.js", diff --git a/packages/viz/CHANGELOG.md b/packages/viz/CHANGELOG.md index 9afea66504..d072e4e260 100644 --- a/packages/viz/CHANGELOG.md +++ b/packages/viz/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.2.41](https://github.com/thi-ng/umbrella/compare/@thi.ng/viz@0.2.40...@thi.ng/viz@0.2.41) (2021-08-22) + +**Note:** Version bump only for package @thi.ng/viz + + + + + # [0.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/viz@0.1.2...@thi.ng/viz@0.2.0) (2020-11-24) diff --git a/packages/viz/package.json b/packages/viz/package.json index 464df157cc..fe844730b2 100644 --- a/packages/viz/package.json +++ b/packages/viz/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/viz", - "version": "0.2.40", + "version": "0.2.41", "description": "Declarative, functional & multi-format data visualization toolkit based around @thi.ng/hiccup", "module": "./index.js", "main": "./lib/index.js", @@ -49,7 +49,7 @@ "dependencies": { "@thi.ng/api": "^7.1.9", "@thi.ng/arrays": "^1.0.2", - "@thi.ng/associative": "^5.2.14", + "@thi.ng/associative": "^5.2.15", "@thi.ng/checks": "^2.9.10", "@thi.ng/math": "^4.0.5", "@thi.ng/strings": "^2.1.6", diff --git a/packages/webgl-msdf/CHANGELOG.md b/packages/webgl-msdf/CHANGELOG.md index dc05d6c923..083164e817 100644 --- a/packages/webgl-msdf/CHANGELOG.md +++ b/packages/webgl-msdf/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl-msdf@1.0.6...@thi.ng/webgl-msdf@1.0.7) (2021-08-22) + +**Note:** Version bump only for package @thi.ng/webgl-msdf + + + + + ## [0.1.10](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl-msdf@0.1.9...@thi.ng/webgl-msdf@0.1.10) (2019-11-30) ### Bug Fixes diff --git a/packages/webgl-msdf/package.json b/packages/webgl-msdf/package.json index 9335f1463e..0e1a7a586f 100644 --- a/packages/webgl-msdf/package.json +++ b/packages/webgl-msdf/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/webgl-msdf", - "version": "1.0.6", + "version": "1.0.7", "description": "Multi-channel SDF font rendering & basic text layout for WebGL", "module": "./index.js", "main": "./lib/index.js", @@ -39,11 +39,11 @@ }, "dependencies": { "@thi.ng/api": "^7.1.9", - "@thi.ng/shader-ast": "^0.10.2", + "@thi.ng/shader-ast": "^0.10.3", "@thi.ng/transducers": "^7.9.1", "@thi.ng/vector-pools": "^2.0.24", "@thi.ng/vectors": "^6.1.2", - "@thi.ng/webgl": "^5.0.12" + "@thi.ng/webgl": "^5.0.13" }, "files": [ "*.js", diff --git a/packages/webgl-shadertoy/CHANGELOG.md b/packages/webgl-shadertoy/CHANGELOG.md index 5d29c77e65..537d966634 100644 --- a/packages/webgl-shadertoy/CHANGELOG.md +++ b/packages/webgl-shadertoy/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.2.90](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl-shadertoy@0.2.89...@thi.ng/webgl-shadertoy@0.2.90) (2021-08-22) + +**Note:** Version bump only for package @thi.ng/webgl-shadertoy + + + + + # [0.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl-shadertoy@0.1.4...@thi.ng/webgl-shadertoy@0.2.0) (2020-02-25) diff --git a/packages/webgl-shadertoy/package.json b/packages/webgl-shadertoy/package.json index 58a5aa69d4..95ecc354ef 100644 --- a/packages/webgl-shadertoy/package.json +++ b/packages/webgl-shadertoy/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/webgl-shadertoy", - "version": "0.2.89", + "version": "0.2.90", "description": "Basic WebGL scaffolding for running interactive fragment shaders via @thi.ng/shader-ast", "module": "./index.js", "main": "./lib/index.js", @@ -39,9 +39,9 @@ }, "dependencies": { "@thi.ng/api": "^7.1.9", - "@thi.ng/shader-ast": "^0.10.2", - "@thi.ng/shader-ast-glsl": "^0.2.46", - "@thi.ng/webgl": "^5.0.12" + "@thi.ng/shader-ast": "^0.10.3", + "@thi.ng/shader-ast-glsl": "^0.2.47", + "@thi.ng/webgl": "^5.0.13" }, "files": [ "*.js", diff --git a/packages/webgl/CHANGELOG.md b/packages/webgl/CHANGELOG.md index a1d5a06f95..bba42215e7 100644 --- a/packages/webgl/CHANGELOG.md +++ b/packages/webgl/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.13](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl@5.0.12...@thi.ng/webgl@5.0.13) (2021-08-22) + +**Note:** Version bump only for package @thi.ng/webgl + + + + + # [5.0.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl@4.0.16...@thi.ng/webgl@5.0.0) (2021-06-08) diff --git a/packages/webgl/package.json b/packages/webgl/package.json index 5f54edb345..862409caf6 100644 --- a/packages/webgl/package.json +++ b/packages/webgl/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/webgl", - "version": "5.0.12", + "version": "5.0.13", "description": "WebGL & GLSL abstraction layer", "module": "./index.js", "main": "./lib/index.js", @@ -40,16 +40,16 @@ "dependencies": { "@thi.ng/adapt-dpi": "^1.0.23", "@thi.ng/api": "^7.1.9", - "@thi.ng/associative": "^5.2.14", + "@thi.ng/associative": "^5.2.15", "@thi.ng/checks": "^2.9.10", "@thi.ng/equiv": "^1.0.45", "@thi.ng/errors": "^1.3.4", "@thi.ng/matrices": "^1.0.4", "@thi.ng/memoize": "^2.1.20", "@thi.ng/pixel": "^1.0.4", - "@thi.ng/shader-ast": "^0.10.2", - "@thi.ng/shader-ast-glsl": "^0.2.46", - "@thi.ng/shader-ast-stdlib": "^0.9.2", + "@thi.ng/shader-ast": "^0.10.3", + "@thi.ng/shader-ast-glsl": "^0.2.47", + "@thi.ng/shader-ast-stdlib": "^0.9.3", "@thi.ng/transducers": "^7.9.1", "@thi.ng/vector-pools": "^2.0.24", "@thi.ng/vectors": "^6.1.2" From 0c321d5ab2f4dc1abc1cbfe6d11ce8badffe5167 Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Sun, 22 Aug 2021 02:43:46 +0200 Subject: [PATCH 23/76] docs(color-profiles): update readme --- packages/color-palettes/README.md | 4 ++++ packages/color-palettes/tpl.readme.md | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/packages/color-palettes/README.md b/packages/color-palettes/README.md index 059897a6aa..1856bd3555 100644 --- a/packages/color-palettes/README.md +++ b/packages/color-palettes/README.md @@ -65,6 +65,10 @@ Also see the [swatch generator](https://github.com/thi-ng/umbrella/blob/develop/ Below the color themes are shown **sorted by median LCH chromacity**: +(Please note that for some reason (likely color profile related) Google Chrome +shows the more saturated colors much more muted than they actually are/should +be. Any pointers to workarounds/solutions are appreciated...): + ### Soft | Preset | Swatches | diff --git a/packages/color-palettes/tpl.readme.md b/packages/color-palettes/tpl.readme.md index 829c1825c2..b010233cd2 100644 --- a/packages/color-palettes/tpl.readme.md +++ b/packages/color-palettes/tpl.readme.md @@ -47,6 +47,10 @@ Also see the [swatch generator](https://github.com/thi-ng/umbrella/blob/develop/ Below the color themes are shown **sorted by median LCH chromacity**: +(Please note that for some reason (likely color profile related) Google Chrome +shows the more saturated colors much more muted than they actually are/should +be. Any pointers to workarounds/solutions are appreciated...): + ### Soft | Preset | Swatches | From ec42d5c570149d045666fa1bbdb52a26319ed183 Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Sun, 22 Aug 2021 18:33:19 +0200 Subject: [PATCH 24/76] refactor(leb128): fix zig syntax changes - orig code was for zig ~0.4.0, syntax has changed meanwhile --- packages/leb128/src/binary.ts | 9 ++++++--- packages/leb128/src/leb128.zig | 8 ++++---- 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/packages/leb128/src/binary.ts b/packages/leb128/src/binary.ts index 06453986cc..2145fb1e3b 100644 --- a/packages/leb128/src/binary.ts +++ b/packages/leb128/src/binary.ts @@ -1,3 +1,6 @@ -/** @internal */ -export const BINARY = - "AGFzbQEAAAABCgJgAXwBf2AAAXwDBQQAAQABBQMBAAIGFAN/AEGQiAQLfwBBiggLfwBBgAgLB38IBm1lbW9yeQIAC19faGVhcF9iYXNlAwAKX19kYXRhX2VuZAMBEmxlYjEyOF9lbmNvZGVfdV9qcwAAA2J1ZgMCEmxlYjEyOF9kZWNvZGVfdV9qcwABEmxlYjEyOF9lbmNvZGVfc19qcwACEmxlYjEyOF9kZWNvZGVfc19qcwADCoMEBHoCAn8BfgJAAkAgAEQAAAAAAADwQ2MgAEQAAAAAAAAAAGZxRQRADAELIACxIgNCgAFaDQELQYAIIAOnQf8AcToAAEEBDwsDQCABQYAIaiADpyICQf8AcSACQYABciADQgeIIgNQGzoAACABQQFqIQEgA0IAUg0ACyABC14CA38CfgJAA0AgAEEJSw0BIAFBAWohASAAQYAIaiwAACICQf8Aca0gBIYgA4QhAyAAQQFqIQAgBEIHfCEEIAJBf0wNAAtBgAggAToAACADug8LQYAIIAA6AAAgA7oLqwECBH8BfiAAmUQAAAAAAADgQ2MEfiAAsAVCgICAgICAgICAfwsiBUJAfUKAAVQEQEGACCAFQjmIp0HAAHEgBadBP3FyOgAAQQEPCwNAIAWnIgJBwABxIQMgAUGACGoCfwJAIAVCB4ciBUIAUQRAIANFDQELQQEhBCACQYB/ciADRSAFQn9Scg0BGgtBACEEIAJB/wBxCzoAACABQQFqIQEgBA0ACyABQf8BcQt6AgR/A34DQAJAIABBAWohASAFQgd8IQYgAEGACGotAAAiA0EYdEEYdSECIANB/wBxrSAFhiAEhCEEIABBCEsNACABIQAgBiEFIAJBAEgNAQsLQYAIIAE6AAAgBCAEQn8gBkI/g4aEIAJBwABxRSABQf8BcUEJS3IbuQs="; +/** + * Generated @ 2021-08-22T16:02:24Z + * + * @internal + */ +export const BINARY = "AGFzbQEAAAABDQNgAXwBf2AAAXxgAAADBgUCAAEAAQUDAQACBioHfwBBgAgLfwBBgAgLfwBBiggLfwBBgAgLfwBBkIgEC38AQQALfwBBAQsH0QENBm1lbW9yeQIAEV9fd2FzbV9jYWxsX2N0b3JzAAASbGViMTI4X2VuY29kZV91X2pzAAEDYnVmAwASbGViMTI4X2RlY29kZV91X2pzAAISbGViMTI4X2VuY29kZV9zX2pzAAMSbGViMTI4X2RlY29kZV9zX2pzAAQMX19kc29faGFuZGxlAwEKX19kYXRhX2VuZAMCDV9fZ2xvYmFsX2Jhc2UDAwtfX2hlYXBfYmFzZQMEDV9fbWVtb3J5X2Jhc2UDBQxfX3RhYmxlX2Jhc2UDBgqWBAUDAAELegICfwF+AkACfiAARAAAAAAAAPBDYyAARAAAAAAAAAAAZnEEQCAAsQwBC0IACyIDQoABWgRAA0AgAUGACGogA6dB/wBxIANCB4giA0IAUiICQQd0cjoAACABQQFqIQEgAg0ACwwBC0GACCADPAAAQQEhAQsgAUH/AXELWwIDfwJ+QXYhAANAAkAgAEUEQEEKIQEMAQsgAUEBaiEBIABBighqLAAAIgJB/wBxrSADhiAEhCEEIABBAWohACADQgd8IQMgAkEASA0BCwtBgAggAToAACAEugu7AQIBfgR/AkACfiAAmUQAAAAAAADgQ2MEQCAAsAwBC0KAgICAgICAgIB/CyIBQkB9QoABWgRAQQEhAwNAIANFDQIgAaciA0HAAHEhBAJ/QgEgAUIHhyIBIAQbUEUEQCADQYB/ciEFQQEgBEUgAUJ/UnINARoLIANB/wBxIQVBAAshAyACQYAIaiAFOgAAIAJBAWohAgwACwALQYAIIAFCOYinQcAAcSABp0E/cXI6AABBASECCyACQf8BcQt8AgN/A35BfyEAA0ACQCADQgd8IQUgAEGBCGotAAAiAkEYdEEYdSEBIAJB/wBxrSADhiAEhCEEIABBAWoiAEEISw0AIAUhAyABQQBIDQELC0GACCAAQQFqOgAAIARCfyAFhkIAIAFBwABxQQZ2G0IAIABB/wFxQQlJG4S5CwAaCXByb2R1Y2VycwEIbGFuZ3VhZ2UBA0M5OQA="; diff --git a/packages/leb128/src/leb128.zig b/packages/leb128/src/leb128.zig index 5f0cd27e70..7d40aeb5bb 100644 --- a/packages/leb128/src/leb128.zig +++ b/packages/leb128/src/leb128.zig @@ -119,13 +119,13 @@ const mem = @import("std").mem; test "min safe integer" { assert(leb128_encode_s(-9007199254740991, buf[0..]) == 8); - assert(mem.eql(u8, buf[0..8], []u8{129, 128, 128, 128, 128, 128, 128, 112})); + assert(mem.eql(u8, buf[0..8], &[_]u8{ 129, 128, 128, 128, 128, 128, 128, 112 })); } test "max safe integer" { assert(leb128_encode_s(9007199254740991, buf[0..]) == 8); - assert(mem.eql(u8, buf[0..8], []u8{255, 255, 255, 255, 255, 255, 255, 15})); + assert(mem.eql(u8, buf[0..8], &[_]u8{ 255, 255, 255, 255, 255, 255, 255, 15 })); assert(leb128_encode_u(9007199254740991, buf[0..]) == 8); - assert(mem.eql(u8, buf[0..8], []u8{255, 255, 255, 255, 255, 255, 255, 15})); -} \ No newline at end of file + assert(mem.eql(u8, buf[0..8], &[_]u8{ 255, 255, 255, 255, 255, 255, 255, 15 })); +} From 94ab39fb8ce38f060f804618e5c44daf1f2aa6bc Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Sun, 22 Aug 2021 18:41:37 +0200 Subject: [PATCH 25/76] build(leb128): add new binary build script --- packages/leb128/package.json | 8 ++++++-- packages/leb128/tools/build-binary.sh | 18 ++++++++++++++++++ 2 files changed, 24 insertions(+), 2 deletions(-) create mode 100755 packages/leb128/tools/build-binary.sh diff --git a/packages/leb128/package.json b/packages/leb128/package.json index 42da6658ef..b41a1422b3 100644 --- a/packages/leb128/package.json +++ b/packages/leb128/package.json @@ -28,7 +28,7 @@ "build:release": "yarn clean && yarn build:es6 && node ../../scripts/bundle-module all", "build:es6": "tsc --declaration", "build:test": "rimraf build && tsc -p test/tsconfig.json", - "build:binary": "echo \"/** @internal */\nexport const BINARY = \\\"$(../../scripts/base64 opt.wasm)\\\";\" > src/binary.ts", + "build:binary": "tools/build-binary.sh", "build:check": "tsc --isolatedModules --noEmit", "test": "mocha test", "cover": "nyc mocha test && nyc report --reporter=lcov", @@ -49,12 +49,16 @@ "lib" ], "keywords": [ + "64bit", "bigint", "binary", "conversion", + "integer", "typedarray", "typescript", - "wasm" + "varint", + "wasm", + "zig" ], "publishConfig": { "access": "public" diff --git a/packages/leb128/tools/build-binary.sh b/packages/leb128/tools/build-binary.sh new file mode 100755 index 0000000000..009fae9150 --- /dev/null +++ b/packages/leb128/tools/build-binary.sh @@ -0,0 +1,18 @@ +#!/bin/sh +zig build-lib -target wasm32-freestanding -dynamic -O ReleaseSmall --strip src/leb128.zig + +# apply binaryen optimizer +wasm-opt leb128.wasm -o opt.wasm -Oz + +# display as .wat text format +wasm-dis opt.wasm -o opt.wat + +# encode as base64 +cat << EOF > src/binary.ts +/** + * Generated @ $(date -u +"%Y-%m-%dT%H:%M:%SZ") + * + * @internal + */ +export const BINARY = "$(base64 opt.wasm)"; +EOF From f1bc0e38939a1338d17b32d88a09f4a8a182be17 Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Sun, 22 Aug 2021 18:46:13 +0200 Subject: [PATCH 26/76] docs(leb128): update readme --- packages/leb128/README.md | 23 ++++++++++------------- packages/leb128/tpl.readme.md | 21 +++++++++------------ 2 files changed, 19 insertions(+), 25 deletions(-) diff --git a/packages/leb128/README.md b/packages/leb128/README.md index 15ed9ad82c..0c05644105 100644 --- a/packages/leb128/README.md +++ b/packages/leb128/README.md @@ -25,7 +25,7 @@ WASM based [Little Endian Base supporting (u)int64 range (however for JS purposes only up to `MAX_SAFE_INTEGER`). -The WASM binary (~660 bytes) is embedded as base64 string in the +The WASM binary (~860 bytes) is embedded as base64 string in the TypeScript source to make it easier to use in both browser & node environments. The source code of the actual implementation (written in [Zig](https://ziglang.org)) is included in @@ -59,7 +59,7 @@ yarn add @thi.ng/leb128 ``` -Package sizes (gzipped, pre-treeshake): ESM: 988 bytes / CJS: 1.03 KB / UMD: 1.13 KB +Package sizes (gzipped, pre-treeshake): ESM: 1.09 KB / CJS: 1.16 KB / UMD: 1.26 KB ## Dependencies @@ -92,8 +92,14 @@ leb.decodeSLEB128(enc) ## Building the binary +Requirements: + +- [Zig](https://ziglang.org/download/) +- [Binaryen](https://github.com/WebAssembly/binaryen) + ```bash -# download latest master from https://ziglang.org/download/ +# install required tools +brew install zig binaryen # first run native tests zig test packages/leb128/src/leb128.zig @@ -101,16 +107,7 @@ zig test packages/leb128/src/leb128.zig # Test 2/2 max safe integer...OK # All tests passed. -# compile to WASM (requires zig v0.4.0 or later) -zig build-lib -target wasm32-freestanding --release-small --strip src/leb128.zig - -# apply binaryen optimizer -wasm-opt leb128.wasm -o opt.wasm -Os - -# display as .wat text format -wasm2wat opt.wasm - -# base64 encode and generate src/binary.ts +# build binary and regenerate src/binary.ts yarn build:binary # test TS/JS version diff --git a/packages/leb128/tpl.readme.md b/packages/leb128/tpl.readme.md index 07891ddd12..344e67c430 100644 --- a/packages/leb128/tpl.readme.md +++ b/packages/leb128/tpl.readme.md @@ -16,7 +16,7 @@ WASM based [Little Endian Base supporting (u)int64 range (however for JS purposes only up to `MAX_SAFE_INTEGER`). -The WASM binary (~660 bytes) is embedded as base64 string in the +The WASM binary (~860 bytes) is embedded as base64 string in the TypeScript source to make it easier to use in both browser & node environments. The source code of the actual implementation (written in [Zig](https://ziglang.org)) is included in @@ -75,8 +75,14 @@ leb.decodeSLEB128(enc) ## Building the binary +Requirements: + +- [Zig](https://ziglang.org/download/) +- [Binaryen](https://github.com/WebAssembly/binaryen) + ```bash -# download latest master from https://ziglang.org/download/ +# install required tools +brew install zig binaryen # first run native tests zig test packages/leb128/src/leb128.zig @@ -84,16 +90,7 @@ zig test packages/leb128/src/leb128.zig # Test 2/2 max safe integer...OK # All tests passed. -# compile to WASM (requires zig v0.4.0 or later) -zig build-lib -target wasm32-freestanding --release-small --strip src/leb128.zig - -# apply binaryen optimizer -wasm-opt leb128.wasm -o opt.wasm -Os - -# display as .wat text format -wasm2wat opt.wasm - -# base64 encode and generate src/binary.ts +# build binary and regenerate src/binary.ts yarn build:binary # test TS/JS version From 27a0d7e5052d6c40b247bfe4ef8c1611b9907a6a Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Tue, 24 Aug 2021 12:15:50 +0200 Subject: [PATCH 27/76] fix(base-n): fix #308, remove unintentional int cast - use Math.floor() in BaseN.encode() to avoid casting intermediate values to 32 bit int range --- packages/base-n/src/base.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/base-n/src/base.ts b/packages/base-n/src/base.ts index b13886cc45..bbf90eb0ad 100644 --- a/packages/base-n/src/base.ts +++ b/packages/base-n/src/base.ts @@ -21,7 +21,7 @@ export class BaseN implements IBase { let res = ""; while (x > 0) { res = base[x % N] + res; - x = (x / N) | 0; + x = Math.floor(x / N); } return res; } From 4c8597ef271d5ccbd69e01b8abae3b0fa18e3ee3 Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Tue, 24 Aug 2021 14:45:44 +0200 Subject: [PATCH 28/76] feat(markdown-table): import as new pkg --- packages/markdown-table/LICENSE | 201 +++++++++++++++++++++ packages/markdown-table/README.md | 130 +++++++++++++ packages/markdown-table/api-extractor.json | 3 + packages/markdown-table/package.json | 71 ++++++++ packages/markdown-table/src/api.ts | 23 +++ packages/markdown-table/src/index.ts | 2 + packages/markdown-table/src/table.ts | 160 ++++++++++++++++ packages/markdown-table/test/index.ts | 44 +++++ packages/markdown-table/test/tsconfig.json | 11 ++ packages/markdown-table/tpl.readme.md | 99 ++++++++++ packages/markdown-table/tsconfig.json | 9 + 11 files changed, 753 insertions(+) create mode 100644 packages/markdown-table/LICENSE create mode 100644 packages/markdown-table/README.md create mode 100644 packages/markdown-table/api-extractor.json create mode 100644 packages/markdown-table/package.json create mode 100644 packages/markdown-table/src/api.ts create mode 100644 packages/markdown-table/src/index.ts create mode 100644 packages/markdown-table/src/table.ts create mode 100644 packages/markdown-table/test/index.ts create mode 100644 packages/markdown-table/test/tsconfig.json create mode 100644 packages/markdown-table/tpl.readme.md create mode 100644 packages/markdown-table/tsconfig.json diff --git a/packages/markdown-table/LICENSE b/packages/markdown-table/LICENSE new file mode 100644 index 0000000000..8dada3edaf --- /dev/null +++ b/packages/markdown-table/LICENSE @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/packages/markdown-table/README.md b/packages/markdown-table/README.md new file mode 100644 index 0000000000..dff740ad99 --- /dev/null +++ b/packages/markdown-table/README.md @@ -0,0 +1,130 @@ + + +# ![markdown-table](https://media.thi.ng/umbrella/banners/thing-markdown-table.svg?9f1a94c6) + +[![npm version](https://img.shields.io/npm/v/@thi.ng/markdown-table.svg)](https://www.npmjs.com/package/@thi.ng/markdown-table) +![npm downloads](https://img.shields.io/npm/dm/@thi.ng/markdown-table.svg) +[![Twitter Follow](https://img.shields.io/twitter/follow/thing_umbrella.svg?style=flat-square&label=twitter)](https://twitter.com/thing_umbrella) + +This project is part of the +[@thi.ng/umbrella](https://github.com/thi-ng/umbrella/) monorepo. + +- [About](#about) + - [Status](#status) + - [Related packages](#related-packages) +- [Installation](#installation) +- [Dependencies](#dependencies) +- [API](#api) +- [Authors](#authors) +- [License](#license) + +## About + +Markdown table formatter/generator with support for column alignments. + +See related packages below for alternative solutions / approaches... + +### Status + +**STABLE** - used in production + +[Search or submit any issues for this package](https://github.com/thi-ng/umbrella/issues?q=%5Bmarkdown-table%5D+in%3Atitle) + +### Related packages + +- [@thi.ng/hiccup-markdown](https://github.com/thi-ng/umbrella/tree/develop/packages/hiccup-markdown) - Markdown parser & serializer from/to Hiccup format +- [@thi.ng/text-canvas](https://github.com/thi-ng/umbrella/tree/develop/packages/text-canvas) - Text based canvas, drawing, tables with arbitrary formatting (incl. ANSI/HTML) + +## Installation + +```bash +yarn add @thi.ng/markdown-table +``` + +```html +// ES module + + +// UMD + +``` + +Package sizes (gzipped, pre-treeshake): ESM: 536 bytes / CJS: 582 bytes / UMD: 687 bytes + +## Dependencies + +- [@thi.ng/api](https://github.com/thi-ng/umbrella/tree/develop/packages/api) +- [@thi.ng/strings](https://github.com/thi-ng/umbrella/tree/develop/packages/strings) +- [@thi.ng/transducers](https://github.com/thi-ng/umbrella/tree/develop/packages/transducers) + +## API + +[Generated API docs](https://docs.thi.ng/umbrella/markdown-table/) + +```ts +import { table, tableKeys } from "@thi.ng/markdown-table"; + +table( + ["ID", "Actor", "Comment"], + [ + [1, "Alice"], + [201, "Bob", "(foe)"], + [3003, "Charlie", null], + [44, "Dora", "(recipient)"], + ], + { align: ["r", "c", "l"] } +); + +// | **ID** | **Actor** | **Comment** | +// |-------:|:---------:|:------------| +// | 1 | Alice | | +// | 201 | Bob | (foe) | +// | 3003 | Charlie | | +// | 44 | Dora | (recipient) | + +// ...alternatively, this produces the same: + +tableKeys( + // column headers + ["ID", "Actor", "Comment"], + // lookup keys + ["id", "name", "hint"], + // rows as objects + [ + { id: 1, name: "Alice" }, + { id: 201, name: "Bob", hint: "(foe)" }, + { id: 3003, name: "Charlie" }, + { id: 44, name: "Dora", hint: "(recipient)" }, + ], + // table options + { bold: true, align: ["r", "c", "l"] } +) +``` + +Result as Markdown: + +| **ID** | **Actor** | **Comment** | +|-------:|:---------:|:------------| +| 1 | Alice | | +| 201 | Bob | (foe) | +| 3003 | Charlie | | +| 44 | Dora | (recipient) | + +## Authors + +Karsten Schmidt + +If this project contributes to an academic publication, please cite it as: + +```bibtex +@misc{thing-markdown-table, + title = "@thi.ng/markdown-table", + author = "Karsten Schmidt", + note = "https://thi.ng/markdown-table", + year = 2021 +} +``` + +## License + +© 2021 Karsten Schmidt // Apache Software License 2.0 diff --git a/packages/markdown-table/api-extractor.json b/packages/markdown-table/api-extractor.json new file mode 100644 index 0000000000..94972e6bed --- /dev/null +++ b/packages/markdown-table/api-extractor.json @@ -0,0 +1,3 @@ +{ + "extends": "../../api-extractor.json" +} diff --git a/packages/markdown-table/package.json b/packages/markdown-table/package.json new file mode 100644 index 0000000000..1586e2d1f6 --- /dev/null +++ b/packages/markdown-table/package.json @@ -0,0 +1,71 @@ +{ + "name": "@thi.ng/markdown-table", + "version": "0.0.1", + "description": "Markdown table formatter/generator with support for column alignments", + "module": "./index.js", + "main": "./lib/index.js", + "umd:main": "./lib/index.umd.js", + "typings": "./index.d.ts", + "repository": { + "type": "git", + "url": "https://github.com/thi-ng/umbrella.git" + }, + "homepage": "https://github.com/thi-ng/umbrella/tree/master/packages/markdown-table#readme", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/postspectacular" + }, + { + "type": "patreon", + "url": "https://patreon.com/thing_umbrella" + } + ], + "author": "Karsten Schmidt ", + "license": "Apache-2.0", + "scripts": { + "build": "yarn clean && yarn build:es6 && node ../../scripts/bundle-module", + "build:release": "yarn clean && yarn build:es6 && node ../../scripts/bundle-module all", + "build:es6": "tsc --declaration", + "build:test": "rimraf build && tsc -p test/tsconfig.json", + "build:check": "tsc --isolatedModules --noEmit", + "test": "mocha test", + "cover": "nyc mocha test && nyc report --reporter=lcov", + "clean": "rimraf *.js *.d.ts *.map .nyc_output build coverage doc lib", + "doc:readme": "ts-node -P ../../tools/tsconfig.json ../../tools/src/readme.ts", + "doc:ae": "mkdir -p .ae/doc .ae/temp && node_modules/.bin/api-extractor run --local --verbose", + "doc": "typedoc --excludePrivate --out doc --theme ../../tools/doc/typedoc-theme src/index.ts", + "pub": "yarn build:release && yarn publish --access public" + }, + "dependencies": { + "@thi.ng/api": "^7.1.9", + "@thi.ng/strings": "^2.1.6", + "@thi.ng/transducers": "^7.9.1" + }, + "files": [ + "*.js", + "*.d.ts", + "lib" + ], + "keywords": [ + "align", + "ascii", + "format", + "generator", + "markdown", + "table", + "text", + "typescript" + ], + "publishConfig": { + "access": "public" + }, + "sideEffects": false, + "thi.ng": { + "related": [ + "hiccup-markdown", + "text-canvas" + ], + "year": 2021 + } +} diff --git a/packages/markdown-table/src/api.ts b/packages/markdown-table/src/api.ts new file mode 100644 index 0000000000..403218a698 --- /dev/null +++ b/packages/markdown-table/src/api.ts @@ -0,0 +1,23 @@ +import type { Nullable, NumOrString } from "@thi.ng/api"; + +export type Align = "c" | "l" | "r"; + +export type Column = Nullable; + +export type Row = Column[]; + +export interface TableOpts { + /** + * If true, header cells will be wrapped in `**` (bold Markdown syntax). + * + * @defaultValue false + */ + bold: boolean; + /** + * Array of column alignments. If given, MUST be same length as columns + * defined in header array. + * + * @defaultValue "l" + */ + align: Align[]; +} diff --git a/packages/markdown-table/src/index.ts b/packages/markdown-table/src/index.ts new file mode 100644 index 0000000000..6c1a15f00c --- /dev/null +++ b/packages/markdown-table/src/index.ts @@ -0,0 +1,2 @@ +export * from "./api"; +export * from "./table"; diff --git a/packages/markdown-table/src/table.ts b/packages/markdown-table/src/table.ts new file mode 100644 index 0000000000..f2e199f519 --- /dev/null +++ b/packages/markdown-table/src/table.ts @@ -0,0 +1,160 @@ +import { assert, Fn, Keys } from "@thi.ng/api"; +import { juxt } from "@thi.ng/compose"; +import { + center, + padLeft, + padRight, + repeat, + Stringer, + wrap, +} from "@thi.ng/strings"; +import { + comp, + last, + map, + max, + multiplex, + repeat as $repeat, + repeatedly, + scan, + transduce, + Transducer, +} from "@thi.ng/transducers"; +import type { Align, Column, Row, TableOpts } from "./api"; + +const PADS: Record>> = { + c: center, + l: padRight, + r: padLeft, +}; + +const SEPS: Record> = { + c: (x) => `:${repeat("-", x)}:`, + l: (x) => `:${repeat("-", x + 1)}`, + r: (x) => `${repeat("-", x + 1)}:`, +}; + +/** + * Takes an array of column titles, an iterable of `rows` and (optional) table + * options (e.g. column alignments). Returns string of formatted Markdown table. + * + * @remarks + * Each `row` is a string array. Nullish cells/columns are allowed. Rows + * can also be empty. By default all columns are left-aligned. + * + * @example + * ```ts + * markdownTable( + * ["ID", "Actor", "Comment"], + * [ + * [1, "Alice"], + * [201, "Bob", "(foe)"], + * [3003, "Charlie", null], + * [44, "Dora", "(recipient)"], + * ], + * { bold: true, align: ["r", "c", "l"] } + * ); + * + * // | **ID** | **Actor** | **Comment** | + * // |-------:|:---------:|:------------| + * // | 1 | Alice | | + * // | 201 | Bob | (foe) | + * // | 3003 | Charlie | | + * // | 44 | Dora | (recipient) | + * ``` + * + * @param header + * @param rows + * @param opts + */ +export const table = ( + header: string[], + rows: Iterable, + opts: Partial = {} +) => { + const numColumns = header.length; + const align = opts.align || [...$repeat("l", numColumns)]; + assert(align.length === numColumns, `invalid/missing column alignments`); + opts.bold && (header = header.map(wrap("**"))); + const body = [header, ...rows]; + const widths = transduce( + multiplex( + ...(<[Transducer]>[ + ...repeatedly( + (i) => + comp( + map((row: Row) => + row[i] != null ? String(row[i]).length : 0 + ), + scan(max()) + ), + numColumns + ), + ]) + ), + last(), + body + ); + const pads = widths.map((w, i) => PADS[align![i]](w)); + const colIDs = [...repeatedly((x) => x, numColumns)]; + const result = body.map( + (row) => colIDs.map((i) => `| ${pads[i](str(row[i]))} `).join("") + "|" + ); + result.splice( + 1, + 0, + widths.map((w, i) => `|${SEPS[align![i]](w)}`).join("") + "|" + ); + return result.join("\n"); +}; + +/** + * Similar to {@link table}, however accepts rows as objects and looks up column + * values using given `keys` array. + * + * @example + * ```ts + * tableKeys( + * ["ID", "Actor", "Comment"], + * ["id", "name", "hint"], + * [ + * { id: 1, name: "Alice" }, + * { id: 201, name: "Bob", hint: "(foe)" }, + * { id: 3003, name: "Charlie" }, + * { id: 44, name: "Dora", hint: "(recipient)" }, + * ], + * { bold: true, align: ["r", "c", "l"] } + * ) + * + * // | **ID** | **Actor** | **Comment** | + * // |-------:|:---------:|:------------| + * // | 1 | Alice | | + * // | 201 | Bob | (foe) | + * // | 3003 | Charlie | | + * // | 44 | Dora | (recipient) | + * ``` + * + * @param headers + * @param keys + * @param items + * @param opts + */ +export const tableKeys = ( + headers: string[], + keys: Keys[], + items: Iterable, + opts?: Partial +) => + table( + headers, + map( + juxt( + // @ts-ignore + ...keys.map((k) => (x) => str(x[k])) + ), + items + ), + opts + ); + +const str = (x: Column) => (x != null ? String(x) : ""); diff --git a/packages/markdown-table/test/index.ts b/packages/markdown-table/test/index.ts new file mode 100644 index 0000000000..c884696da1 --- /dev/null +++ b/packages/markdown-table/test/index.ts @@ -0,0 +1,44 @@ +import * as assert from "assert"; +import { table, tableKeys } from "../src"; + +const result1 = `| **ID** | **Actor** | **Comment** | +|-------:|:---------:|:------------| +| 1 | Alice | | +| 201 | Bob | (foe) | +| 3003 | Charlie | | +| 44 | Dora | (recipient) |`; + +describe("markdown-table", () => { + it("table", () => { + assert.strictEqual( + table( + ["ID", "Actor", "Comment"], + [ + [1, "Alice"], + [201, "Bob", "(foe)"], + [3003, "Charlie", null], + [44, "Dora", "(recipient)"], + ], + { bold: true, align: ["r", "c", "l"] } + ), + result1 + ); + }); + + it("tableKeys", () => { + assert.strictEqual( + tableKeys( + ["ID", "Actor", "Comment"], + ["id", "name", "hint"], + [ + { id: 1, name: "Alice" }, + { id: 201, name: "Bob", hint: "(foe)" }, + { id: 3003, name: "Charlie" }, + { id: 44, name: "Dora", hint: "(recipient)" }, + ], + { bold: true, align: ["r", "c", "l"] } + ), + result1 + ); + }); +}); diff --git a/packages/markdown-table/test/tsconfig.json b/packages/markdown-table/test/tsconfig.json new file mode 100644 index 0000000000..f6e63560dd --- /dev/null +++ b/packages/markdown-table/test/tsconfig.json @@ -0,0 +1,11 @@ +{ + "extends": "../../../tsconfig.json", + "compilerOptions": { + "outDir": "../build", + "module": "commonjs" + }, + "include": [ + "./**/*.ts", + "../src/**/*.ts" + ] +} diff --git a/packages/markdown-table/tpl.readme.md b/packages/markdown-table/tpl.readme.md new file mode 100644 index 0000000000..d41a39db84 --- /dev/null +++ b/packages/markdown-table/tpl.readme.md @@ -0,0 +1,99 @@ +# ${pkg.banner} + +[![npm version](https://img.shields.io/npm/v/${pkg.name}.svg)](https://www.npmjs.com/package/${pkg.name}) +![npm downloads](https://img.shields.io/npm/dm/${pkg.name}.svg) +[![Twitter Follow](https://img.shields.io/twitter/follow/thing_umbrella.svg?style=flat-square&label=twitter)](https://twitter.com/thing_umbrella) + +This project is part of the +[@thi.ng/umbrella](https://github.com/thi-ng/umbrella/) monorepo. + + + +## About + +${pkg.description} + +See related packages below for alternative solutions / approaches... + +${status} + +${supportPackages} + +${relatedPackages} + +${blogPosts} + +## Installation + +${pkg.install} + +${pkg.size} + +## Dependencies + +${pkg.deps} + +${examples} + +## API + +${docLink} + +```ts +import { table, tableKeys } from "@thi.ng/markdown-table"; + +table( + ["ID", "Actor", "Comment"], + [ + [1, "Alice"], + [201, "Bob", "(foe)"], + [3003, "Charlie", null], + [44, "Dora", "(recipient)"], + ], + { align: ["r", "c", "l"] } +); + +// | **ID** | **Actor** | **Comment** | +// |-------:|:---------:|:------------| +// | 1 | Alice | | +// | 201 | Bob | (foe) | +// | 3003 | Charlie | | +// | 44 | Dora | (recipient) | + +// ...alternatively, this produces the same: + +tableKeys( + // column headers + ["ID", "Actor", "Comment"], + // lookup keys + ["id", "name", "hint"], + // rows as objects + [ + { id: 1, name: "Alice" }, + { id: 201, name: "Bob", hint: "(foe)" }, + { id: 3003, name: "Charlie" }, + { id: 44, name: "Dora", hint: "(recipient)" }, + ], + // table options + { bold: true, align: ["r", "c", "l"] } +) +``` + +Result as Markdown: + +| **ID** | **Actor** | **Comment** | +|-------:|:---------:|:------------| +| 1 | Alice | | +| 201 | Bob | (foe) | +| 3003 | Charlie | | +| 44 | Dora | (recipient) | + +## Authors + +${authors} + +${pkg.cite} + +## License + +© ${copyright} // ${license} diff --git a/packages/markdown-table/tsconfig.json b/packages/markdown-table/tsconfig.json new file mode 100644 index 0000000000..bd6481a5a6 --- /dev/null +++ b/packages/markdown-table/tsconfig.json @@ -0,0 +1,9 @@ +{ + "extends": "../../tsconfig.json", + "compilerOptions": { + "outDir": "." + }, + "include": [ + "./src/**/*.ts" + ] +} From e3fb4fc16d9bbbe0dacc86d26d523e7611de6a57 Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Tue, 24 Aug 2021 14:50:52 +0200 Subject: [PATCH 29/76] refactor(tools): re-use MD table gen from new pkg --- tools/src/partials/examples.ts | 4 +-- tools/src/partials/table.ts | 51 ---------------------------------- tools/src/readme-examples.ts | 5 ++-- 3 files changed, 4 insertions(+), 56 deletions(-) delete mode 100644 tools/src/partials/table.ts diff --git a/tools/src/partials/examples.ts b/tools/src/partials/examples.ts index 162befa9f8..ddfc339ad0 100644 --- a/tools/src/partials/examples.ts +++ b/tools/src/partials/examples.ts @@ -1,3 +1,4 @@ +import { tableKeys } from "@thi.ng/markdown-table"; import { readdirSync } from "fs"; import { META_FIELD } from "../api"; import { CONFIG } from "../config"; @@ -5,7 +6,6 @@ import { readJSON } from "../io"; import { thumb } from "./asset"; import { link } from "./link"; import { shortName } from "./package"; -import { table } from "./table"; export const examplesTable = (pkgName: string) => { const examples = []; @@ -56,7 +56,7 @@ export const examplesTable = (pkgName: string) => { "", "A selection:", "", - table(headers, keys, examples), + tableKeys(headers, keys, examples), ].join("\n") : null; }; diff --git a/tools/src/partials/table.ts b/tools/src/partials/table.ts deleted file mode 100644 index 112464455e..0000000000 --- a/tools/src/partials/table.ts +++ /dev/null @@ -1,51 +0,0 @@ -import type { IObjectOf, Keys } from "@thi.ng/api"; -import { juxt } from "@thi.ng/compose"; -import { repeat } from "@thi.ng/strings"; -import { Border, tableCanvas, toString } from "@thi.ng/text-canvas"; -import { - comp, - last, - map, - max, - multiplex, - scan, - transduce, -} from "@thi.ng/transducers"; - -const maxLen = (key: string) => - comp, number, number>( - map((x) => x[key].length), - scan(max(), 3) - ); - -export const table = >( - headers: string[], - keys: Keys[], - items: Iterable -) => { - const colWidths = transduce( - // @ts-ignore - multiplex(...keys.map((k) => maxLen(k))), - last(), - items - ); - const rows = [ - headers, - [...map((w) => repeat("-", w), colWidths)], - ...map( - // @ts-ignore - juxt(...keys.map((k) => (x: any) => x[k])), - items - ), - ]; - return toString( - tableCanvas( - { - cols: [...map((width) => ({ width }), colWidths)], - padding: [1, 0], - border: Border.V, - }, - rows - ) - ); -}; diff --git a/tools/src/readme-examples.ts b/tools/src/readme-examples.ts index 1636c2a0c7..c2fb4fb77b 100644 --- a/tools/src/readme-examples.ts +++ b/tools/src/readme-examples.ts @@ -1,5 +1,6 @@ import type { IObjectOf } from "@thi.ng/api"; import { idgen } from "@thi.ng/idgen"; +import { tableKeys } from "@thi.ng/markdown-table"; import { Z3 } from "@thi.ng/strings"; import { comp, @@ -14,7 +15,6 @@ import { META_FIELD } from "./api"; import { initConfig } from "./config"; import { readJSON } from "./io"; import { thumb } from "./partials/asset"; -import { table } from "./partials/table"; interface Example extends IObjectOf { id: string; @@ -62,13 +62,12 @@ and commented source code. If you want to [contribute](../CONTRIBUTING.md) an example, please get in touch via PR, issue tracker, email or twitter! -${table( +${tableKeys( ["#", "Screenshot", "Name", "Description"], ["id", "img", "name", "description"], examples )} `; - writeFileSync("examples/README.md", BODY); } catch (e) { console.log(e.message); From 31879491ed4b59e4d91c818939f9c9beee980779 Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Tue, 24 Aug 2021 14:53:39 +0200 Subject: [PATCH 30/76] feat(color-palettes): update/simplify swatch gen --- packages/color-palettes/tools/index.ts | 36 ++++++++------------------ 1 file changed, 11 insertions(+), 25 deletions(-) diff --git a/packages/color-palettes/tools/index.ts b/packages/color-palettes/tools/index.ts index ab7d8a182a..0b67ab4636 100644 --- a/packages/color-palettes/tools/index.ts +++ b/packages/color-palettes/tools/index.ts @@ -1,8 +1,8 @@ import { dotsH, lch } from "@thi.ng/color"; -import { compareByKey } from "@thi.ng/compare"; +import { compareByKey, compareNumDesc } from "@thi.ng/compare"; import { serialize } from "@thi.ng/hiccup"; import { svg } from "@thi.ng/hiccup-svg"; -import { padRight, repeat } from "@thi.ng/strings"; +import { table } from "@thi.ng/markdown-table"; import { assocObj, groupByMap, @@ -19,8 +19,9 @@ import { writeFileSync } from "fs"; import { THEMES } from "../src"; const BASE_URL = - "https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes"; -// const BASE_URL = "."; + process.argv[2] !== "--local" + ? "https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes" + : "."; const R = 24; const D = R * 2; @@ -49,22 +50,6 @@ const composition = (theme: string[], i: number) => [ ]), ]; -const makeTable = (rows: string[][]) => { - const [w1, w2] = rows.reduce( - (acc, [a, b]) => [ - Math.max(acc[0], a.length), - Math.max(acc[1], b.length), - ], - [0, 0] - ); - - const p1 = padRight(w1); - const p2 = padRight(w2); - const table = rows.map(([a, b]) => `| ${p1(a)} | ${p2(b)} |`); - table.splice(1, 0, `|${repeat("-", w1 + 2)}|${repeat("-", w2 + 2)}|`); - return table.join("\n"); -}; - type ThemeStat = { id: string; sortKey: number; key: number; theme: string[] }; const themeStats = transduce( @@ -90,13 +75,14 @@ const grouped: Map = groupByMap( const sections: string[] = []; -for (let gid of [...grouped.keys()].sort()) { +for (let gid of [...grouped.keys()].sort(compareNumDesc)) { sections.push(`### ${["Soft", "Medium", "Strong"][gid]}`); - const rows = [["Preset", "Swatches", "Stats"]]; - const themes = grouped.get(gid)!.sort(compareByKey("sortKey")); + const rows: string[][] = []; + const themes = grouped + .get(gid)! + .sort(compareByKey("sortKey", compareNumDesc)); const cw = cellW + GAP; for (let { id, theme } of themes) { - console.log(id); const doc = serialize( svg( { convert: true, width, height: yOff + cellW * 2 + GAP }, @@ -117,7 +103,7 @@ for (let gid of [...grouped.keys()].sort()) { rows.push([`\`${id}\``, `![](${BASE_URL}/${id}.svg)`]); } - sections.push(makeTable(rows)); + sections.push(table(["Preset", "Swatches"], rows)); } writeFileSync(`export/table.md`, sections.join("\n\n")); From 14f29523554b82540bba020d52d6fffde8347348 Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Tue, 24 Aug 2021 15:00:45 +0200 Subject: [PATCH 31/76] feat(color-palettes): add new palettes, update readme --- assets/color-palettes/00iGNImQqINC9iQ1D.svg | 1 + assets/color-palettes/00iGNInM4y8vS5Aon.svg | 1 + packages/color-palettes/README.md | 214 ++++++++++---------- packages/color-palettes/src/index.ts | 16 ++ packages/color-palettes/tpl.readme.md | 210 +++++++++---------- 5 files changed, 232 insertions(+), 210 deletions(-) create mode 100644 assets/color-palettes/00iGNImQqINC9iQ1D.svg create mode 100644 assets/color-palettes/00iGNInM4y8vS5Aon.svg diff --git a/assets/color-palettes/00iGNImQqINC9iQ1D.svg b/assets/color-palettes/00iGNImQqINC9iQ1D.svg new file mode 100644 index 0000000000..2b474fa7c3 --- /dev/null +++ b/assets/color-palettes/00iGNImQqINC9iQ1D.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/color-palettes/00iGNInM4y8vS5Aon.svg b/assets/color-palettes/00iGNInM4y8vS5Aon.svg new file mode 100644 index 0000000000..dbcfe7e1f6 --- /dev/null +++ b/assets/color-palettes/00iGNInM4y8vS5Aon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/color-palettes/README.md b/packages/color-palettes/README.md index 1856bd3555..f6c3079732 100644 --- a/packages/color-palettes/README.md +++ b/packages/color-palettes/README.md @@ -15,9 +15,9 @@ This project is part of the - [Dependencies](#dependencies) - [Available palettes](#available-palettes) - [Usage](#usage) - - [Soft](#soft) - - [Medium](#medium) - [Strong](#strong) + - [Medium](#medium) + - [Soft](#soft) - [Authors](#authors) - [License](#license) @@ -69,120 +69,122 @@ Below the color themes are shown **sorted by median LCH chromacity**: shows the more saturated colors much more muted than they actually are/should be. Any pointers to workarounds/solutions are appreciated...): -### Soft +### Strong | Preset | Swatches | -|----------------------|-------------------------------------------------------------------------------------------------------------| -| `00QLfPkuNx1jE7sMm` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLfPkuNx1jE7sMm.svg) | -| `00QN31G5AB2FTftCe` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QN31G5AB2FTftCe.svg) | -| `00QMEZazmZG85DaWw` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMEZazmZG85DaWw.svg) | -| `00f5whlJFUwx7AaEe` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00f5whlJFUwx7AaEe.svg) | -| `00YxFeFYOuMCD0qWe` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00YxFeFYOuMCD0qWe.svg) | -| `00RB4I684QFqc2HAM` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RB4I684QFqc2HAM.svg) | -| `00QMA8RhpXdgwPtLn` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMA8RhpXdgwPtLn.svg) | -| `00gSFutQrW4MxihX7` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00gSFutQrW4MxihX7.svg) | -| `00g3JvJ0ZydpXXvEC` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00g3JvJ0ZydpXXvEC.svg) | -| `00RB4I89XiwNSlobH` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RB4I89XiwNSlobH.svg) | -| `00PBWZvgJvi4gdxGj` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00PBWZvgJvi4gdxGj.svg) | -| `00RnZfzWN7Ewml76I` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RnZfzWN7Ewml76I.svg) | -| `00i0fT276sz5H8vMy` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00i0fT276sz5H8vMy.svg) | -| `00QLj3F8heV6QT4YG` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLj3F8heV6QT4YG.svg) | -| `00g3Jv9zydyJs2QlX` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00g3Jv9zydyJs2QlX.svg) | -| `00RGlyLkqOmPmbuX6` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RGlyLkqOmPmbuX6.svg) | -| `00QLslJAGNA8YREKh` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLslJAGNA8YREKh.svg) | -| `00QMSSCjsJpojbpYza` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMSSCjsJpojbpYza.svg) | -| `00QLn7oETUQZKKr34` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLn7oETUQZKKr34.svg) | -| `00RTRDIzyUse2qJ9N` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RTRDIzyUse2qJ9N.svg) | -| `00QLfPj2trTnyJHAg` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLfPj2trTnyJHAg.svg) | -| `00QLj3Yj1pUNnTKVY` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLj3Yj1pUNnTKVY.svg) | -| `00QMKP9yh8XlJYcgM` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMKP9yh8XlJYcgM.svg) | -| `00bYahDYU6E7wDJwL` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYahDYU6E7wDJwL.svg) | -| `00bYiYyzA6ODPIC8V` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYiYyzA6ODPIC8V.svg) | -| `00bYcj0VC9wmmKNm5` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYcj0VC9wmmKNm5.svg) | -| `00QLj3PylHkh8qY2R` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLj3PylHkh8qY2R.svg) | -| `00QLNIKFhjs5rJCjr` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLNIKFhjs5rJCjr.svg) | -| `00QMEZzTrk06iVgaK` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMEZzTrk06iVgaK.svg) | -| `00QMA8SkIwjW5KEch` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMA8SkIwjW5KEch.svg) | +|:---------------------|:------------------------------------------------------------------------------------------------------------| +| `00Q9Yxm7DrZXqTkyS` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00Q9Yxm7DrZXqTkyS.svg) | +| `00QMA8h2BH69zyEk0` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMA8h2BH69zyEk0.svg) | +| `00QLn7G59JhKtuUs0` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLn7G59JhKtuUs0.svg) | +| `00QLNIQXmbJgghRXg` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLNIQXmbJgghRXg.svg) | +| `00QLNHv6JW1bL031O` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLNHv6JW1bL031O.svg) | +| `00iGNImQqINC9iQ1D` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00iGNImQqINC9iQ1D.svg) | +| `00QLj3fsFErIl5W0b` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLj3fsFErIl5W0b.svg) | +| `00QN49h9BAkHHyKJh` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QN49h9BAkHHyKJh.svg) | +| `00QLfPtu33OAdSN4Y` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLfPtu33OAdSN4Y.svg) | +| `00QMSRqFlj9B8ayZW` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMSRqFlj9B8ayZW.svg) | +| `00QLn7Lr9V98YD0zY` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLn7Lr9V98YD0zY.svg) | +| `00i0iHWHzzEoacpfQ` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00i0iHWHzzEoacpfQ.svg) | +| `00QLNIVe1AkurVqYj` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLNIVe1AkurVqYj.svg) | +| `00QLn7XfPKvMKCrzO` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLn7XfPKvMKCrzO.svg) | +| `00QMEZl7ulP3f2WaX` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMEZl7ulP3f2WaX.svg) | +| `00bYcjDCylnf3k1aB` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYcjDCylnf3k1aB.svg) | +| `00QMEZVdDC6dMYpjp` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMEZVdDC6dMYpjp.svg) | +| `00T2A6qx5VScIQ9bU` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00T2A6qx5VScIQ9bU.svg) | +| `00QMEZb0EorAC0k7y` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMEZb0EorAC0k7y.svg) | +| `00RYyJDsTKzsBBgCO` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RYyJDsTKzsBBgCO.svg) | +| `00QLqYQ3HE1oy3ByI` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLqYQ3HE1oy3ByI.svg) | +| `00UWNvEkTsOF0aQHh` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00UWNvEkTsOF0aQHh.svg) | +| `00QMSSCjsJpojbpYz` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMSSCjsJpojbpYz.svg) | +| `00QLfPm4UfkMiaicq` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLfPm4UfkMiaicq.svg) | +| `00QLcP0k2fPAz0KHR` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLcP0k2fPAz0KHR.svg) | +| `00iGNInM4y8vS5Aon` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00iGNInM4y8vS5Aon.svg) | +| `00PhGSfzpeU5Bkh47a` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00PhGSfzpeU5Bkh47a.svg) | +| `00RlTJrw94KFOF3zL` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RlTJrw94KFOF3zL.svg) | +| `00RGly9mkWt6i3suLa` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RGly9mkWt6i3suLa.svg) | +| `00bYahKZ8LbVgx54y` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYahKZ8LbVgx54y.svg) | +| `00QMxexuJYMe6enbZ` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMxexuJYMe6enbZ.svg) | +| `00QLj3dmHiT8Ep1Un` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLj3dmHiT8Ep1Un.svg) | +| `00QMxescYuh8eYT39` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMxescYuh8eYT39.svg) | +| `00OqoPfvP6y1EmXZQ` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00OqoPfvP6y1EmXZQ.svg) | +| `00PhEgF9AlI5PTrLB` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00PhEgF9AlI5PTrLB.svg) | +| `00QMSSK2AEOwErS5Ma` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMSSK2AEOwErS5Ma.svg) | +| `00i0iHNQPUpX6Jzsb` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00i0iHNQPUpX6Jzsb.svg) | +| `00RTRDIRDbnErAXHV` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RTRDIRDbnErAXHV.svg) | +| `00RTRDNL7MjHkDys4` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RTRDNL7MjHkDys4.svg) | +| `00RGly9mkWt6i3suL` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RGly9mkWt6i3suL.svg) | ### Medium | Preset | Swatches | -|---------------------|------------------------------------------------------------------------------------------------------------| -| `00QLqYS2ZOgkMeMAE` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLqYS2ZOgkMeMAE.svg) | -| `00QMEZgMsSVZavaNd` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMEZgMsSVZavaNd.svg) | -| `00QLqYLjs4H7kdHrp` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLqYLjs4H7kdHrp.svg) | -| `00RB4I6NRn6CF3oS0` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RB4I6NRn6CF3oS0.svg) | -| `00RTRDAqmTEarmyeR` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RTRDAqmTEarmyeR.svg) | -| `00Yi9btvr8RY4NROm` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00Yi9btvr8RY4NROm.svg) | -| `00bYcj4uvi0NIlqyw` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYcj4uvi0NIlqyw.svg) | -| `00Yi9c5ifk9eXO5XX` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00Yi9c5ifk9eXO5XX.svg) | -| `00UWNvBioJ6ZSjDix` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00UWNvBioJ6ZSjDix.svg) | -| `00RB4IFxoIYII3Cqi` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RB4IFxoIYII3Cqi.svg) | -| `00OwGARqASN2zngyg` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00OwGARqASN2zngyg.svg) | -| `00b7Az8pDWEjBLMHs` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00b7Az8pDWEjBLMHs.svg) | -| `00ORLwKeosxtEeZxq` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00ORLwKeosxtEeZxq.svg) | -| `00RGlyJwY9q4Sh0tQ` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RGlyJwY9q4Sh0tQ.svg) | -| `00RGlyFVinQl5cj21` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RGlyFVinQl5cj21.svg) | -| `00RlTJxJZ16ivgKBw` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RlTJxJZ16ivgKBw.svg) | -| `00i0iHUSVMHOENQof` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00i0iHUSVMHOENQof.svg) | -| `00OkEXVdMQmQ1oQTp` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00OkEXVdMQmQ1oQTp.svg) | -| `00bYcivY8Jqx8nsiR` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYcivY8Jqx8nsiR.svg) | -| `00bYiZ8YHLsLMA7j3` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYiZ8YHLsLMA7j3.svg) | -| `00QMSSK2AEOwErS5M` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMSSK2AEOwErS5M.svg) | -| `00RYyJ4jHYfMF6yfy` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RYyJ4jHYfMF6yfy.svg) | -| `00QMSSEJXJOUdMoSj` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMSSEJXJOUdMoSj.svg) | -| `00QMA8tedClukB7IL` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMA8tedClukB7IL.svg) | -| `00RTRDOtbFF8KFNH9` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RTRDOtbFF8KFNH9.svg) | -| `00bYcixZkofJhLJ8w` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYcixZkofJhLJ8w.svg) | -| `00QLn7BH2doQfh4Yw` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLn7BH2doQfh4Yw.svg) | -| `00RYyJ25i8zFwOJGh` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RYyJ25i8zFwOJGh.svg) | -| `00i0iHXq6xPzf1pt0` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00i0iHXq6xPzf1pt0.svg) | -| `00bYah8QOLZNgszuV` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYah8QOLZNgszuV.svg) | -| `00QLfPusSpy3uFOpb` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLfPusSpy3uFOpb.svg) | +|:--------------------|:-----------------------------------------------------------------------------------------------------------| | `00QMSRoDq0SDYprak` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMSRoDq0SDYprak.svg) | +| `00QLfPusSpy3uFOpb` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLfPusSpy3uFOpb.svg) | +| `00bYah8QOLZNgszuV` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYah8QOLZNgszuV.svg) | +| `00i0iHXq6xPzf1pt0` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00i0iHXq6xPzf1pt0.svg) | +| `00RYyJ25i8zFwOJGh` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RYyJ25i8zFwOJGh.svg) | +| `00QLn7BH2doQfh4Yw` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLn7BH2doQfh4Yw.svg) | +| `00bYcixZkofJhLJ8w` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYcixZkofJhLJ8w.svg) | +| `00RTRDOtbFF8KFNH9` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RTRDOtbFF8KFNH9.svg) | +| `00QMA8tedClukB7IL` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMA8tedClukB7IL.svg) | +| `00QMSSEJXJOUdMoSj` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMSSEJXJOUdMoSj.svg) | +| `00RYyJ4jHYfMF6yfy` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RYyJ4jHYfMF6yfy.svg) | +| `00QMSSK2AEOwErS5M` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMSSK2AEOwErS5M.svg) | +| `00bYiZ8YHLsLMA7j3` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYiZ8YHLsLMA7j3.svg) | +| `00bYcivY8Jqx8nsiR` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYcivY8Jqx8nsiR.svg) | +| `00OkEXVdMQmQ1oQTp` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00OkEXVdMQmQ1oQTp.svg) | +| `00i0iHUSVMHOENQof` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00i0iHUSVMHOENQof.svg) | +| `00RlTJxJZ16ivgKBw` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RlTJxJZ16ivgKBw.svg) | +| `00RGlyFVinQl5cj21` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RGlyFVinQl5cj21.svg) | +| `00RGlyJwY9q4Sh0tQ` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RGlyJwY9q4Sh0tQ.svg) | +| `00ORLwKeosxtEeZxq` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00ORLwKeosxtEeZxq.svg) | +| `00b7Az8pDWEjBLMHs` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00b7Az8pDWEjBLMHs.svg) | +| `00OwGARqASN2zngyg` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00OwGARqASN2zngyg.svg) | +| `00RB4IFxoIYII3Cqi` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RB4IFxoIYII3Cqi.svg) | +| `00UWNvBioJ6ZSjDix` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00UWNvBioJ6ZSjDix.svg) | +| `00Yi9c5ifk9eXO5XX` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00Yi9c5ifk9eXO5XX.svg) | +| `00bYcj4uvi0NIlqyw` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYcj4uvi0NIlqyw.svg) | +| `00Yi9btvr8RY4NROm` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00Yi9btvr8RY4NROm.svg) | +| `00RTRDAqmTEarmyeR` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RTRDAqmTEarmyeR.svg) | +| `00RB4I6NRn6CF3oS0` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RB4I6NRn6CF3oS0.svg) | +| `00QLqYLjs4H7kdHrp` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLqYLjs4H7kdHrp.svg) | +| `00QMEZgMsSVZavaNd` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMEZgMsSVZavaNd.svg) | +| `00QLqYS2ZOgkMeMAE` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLqYS2ZOgkMeMAE.svg) | -### Strong +### Soft | Preset | Swatches | -|----------------------|-------------------------------------------------------------------------------------------------------------| -| `00RGly9mkWt6i3suL` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RGly9mkWt6i3suL.svg) | -| `00RTRDNL7MjHkDys4` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RTRDNL7MjHkDys4.svg) | -| `00RTRDIRDbnErAXHV` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RTRDIRDbnErAXHV.svg) | -| `00i0iHNQPUpX6Jzsb` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00i0iHNQPUpX6Jzsb.svg) | -| `00QMSSK2AEOwErS5Ma` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMSSK2AEOwErS5Ma.svg) | -| `00PhEgF9AlI5PTrLB` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00PhEgF9AlI5PTrLB.svg) | -| `00OqoPfvP6y1EmXZQ` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00OqoPfvP6y1EmXZQ.svg) | -| `00QMxescYuh8eYT39` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMxescYuh8eYT39.svg) | -| `00QLj3dmHiT8Ep1Un` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLj3dmHiT8Ep1Un.svg) | -| `00QMxexuJYMe6enbZ` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMxexuJYMe6enbZ.svg) | -| `00bYahKZ8LbVgx54y` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYahKZ8LbVgx54y.svg) | -| `00RGly9mkWt6i3suLa` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RGly9mkWt6i3suLa.svg) | -| `00RlTJrw94KFOF3zL` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RlTJrw94KFOF3zL.svg) | -| `00PhGSfzpeU5Bkh47a` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00PhGSfzpeU5Bkh47a.svg) | -| `00QLcP0k2fPAz0KHR` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLcP0k2fPAz0KHR.svg) | -| `00QLfPm4UfkMiaicq` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLfPm4UfkMiaicq.svg) | -| `00QMSSCjsJpojbpYz` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMSSCjsJpojbpYz.svg) | -| `00UWNvEkTsOF0aQHh` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00UWNvEkTsOF0aQHh.svg) | -| `00QLqYQ3HE1oy3ByI` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLqYQ3HE1oy3ByI.svg) | -| `00RYyJDsTKzsBBgCO` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RYyJDsTKzsBBgCO.svg) | -| `00QMEZb0EorAC0k7y` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMEZb0EorAC0k7y.svg) | -| `00T2A6qx5VScIQ9bU` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00T2A6qx5VScIQ9bU.svg) | -| `00QMEZVdDC6dMYpjp` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMEZVdDC6dMYpjp.svg) | -| `00bYcjDCylnf3k1aB` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYcjDCylnf3k1aB.svg) | -| `00QMEZl7ulP3f2WaX` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMEZl7ulP3f2WaX.svg) | -| `00QLn7XfPKvMKCrzO` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLn7XfPKvMKCrzO.svg) | -| `00QLNIVe1AkurVqYj` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLNIVe1AkurVqYj.svg) | -| `00i0iHWHzzEoacpfQ` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00i0iHWHzzEoacpfQ.svg) | -| `00QLn7Lr9V98YD0zY` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLn7Lr9V98YD0zY.svg) | -| `00QMSRqFlj9B8ayZW` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMSRqFlj9B8ayZW.svg) | -| `00QLfPtu33OAdSN4Y` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLfPtu33OAdSN4Y.svg) | -| `00QN49h9BAkHHyKJh` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QN49h9BAkHHyKJh.svg) | -| `00QLj3fsFErIl5W0b` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLj3fsFErIl5W0b.svg) | -| `00QLNHv6JW1bL031O` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLNHv6JW1bL031O.svg) | -| `00QLNIQXmbJgghRXg` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLNIQXmbJgghRXg.svg) | -| `00QLn7G59JhKtuUs0` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLn7G59JhKtuUs0.svg) | -| `00QMA8h2BH69zyEk0` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMA8h2BH69zyEk0.svg) | -| `00Q9Yxm7DrZXqTkyS` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00Q9Yxm7DrZXqTkyS.svg) | +|:---------------------|:------------------------------------------------------------------------------------------------------------| +| `00QMA8SkIwjW5KEch` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMA8SkIwjW5KEch.svg) | +| `00QMEZzTrk06iVgaK` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMEZzTrk06iVgaK.svg) | +| `00QLNIKFhjs5rJCjr` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLNIKFhjs5rJCjr.svg) | +| `00QLj3PylHkh8qY2R` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLj3PylHkh8qY2R.svg) | +| `00bYcj0VC9wmmKNm5` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYcj0VC9wmmKNm5.svg) | +| `00bYiYyzA6ODPIC8V` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYiYyzA6ODPIC8V.svg) | +| `00bYahDYU6E7wDJwL` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYahDYU6E7wDJwL.svg) | +| `00QMKP9yh8XlJYcgM` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMKP9yh8XlJYcgM.svg) | +| `00QLj3Yj1pUNnTKVY` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLj3Yj1pUNnTKVY.svg) | +| `00QLfPj2trTnyJHAg` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLfPj2trTnyJHAg.svg) | +| `00RTRDIzyUse2qJ9N` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RTRDIzyUse2qJ9N.svg) | +| `00QLn7oETUQZKKr34` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLn7oETUQZKKr34.svg) | +| `00QMSSCjsJpojbpYza` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMSSCjsJpojbpYza.svg) | +| `00QLslJAGNA8YREKh` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLslJAGNA8YREKh.svg) | +| `00RGlyLkqOmPmbuX6` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RGlyLkqOmPmbuX6.svg) | +| `00g3Jv9zydyJs2QlX` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00g3Jv9zydyJs2QlX.svg) | +| `00QLj3F8heV6QT4YG` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLj3F8heV6QT4YG.svg) | +| `00i0fT276sz5H8vMy` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00i0fT276sz5H8vMy.svg) | +| `00RnZfzWN7Ewml76I` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RnZfzWN7Ewml76I.svg) | +| `00PBWZvgJvi4gdxGj` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00PBWZvgJvi4gdxGj.svg) | +| `00RB4I89XiwNSlobH` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RB4I89XiwNSlobH.svg) | +| `00g3JvJ0ZydpXXvEC` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00g3JvJ0ZydpXXvEC.svg) | +| `00gSFutQrW4MxihX7` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00gSFutQrW4MxihX7.svg) | +| `00QMA8RhpXdgwPtLn` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMA8RhpXdgwPtLn.svg) | +| `00RB4I684QFqc2HAM` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RB4I684QFqc2HAM.svg) | +| `00YxFeFYOuMCD0qWe` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00YxFeFYOuMCD0qWe.svg) | +| `00f5whlJFUwx7AaEe` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00f5whlJFUwx7AaEe.svg) | +| `00QMEZazmZG85DaWw` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMEZazmZG85DaWw.svg) | +| `00QN31G5AB2FTftCe` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QN31G5AB2FTftCe.svg) | +| `00QLfPkuNx1jE7sMm` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLfPkuNx1jE7sMm.svg) | ## Authors diff --git a/packages/color-palettes/src/index.ts b/packages/color-palettes/src/index.ts index 06c40469c2..abd0a89578 100644 --- a/packages/color-palettes/src/index.ts +++ b/packages/color-palettes/src/index.ts @@ -799,4 +799,20 @@ export const THEMES = { "#7ba7b5", "#3c758f", ], + "00iGNImQqINC9iQ1D": [ + "#72564a", + "#a29aa2", + "#129dab", + "#f78915", + "#e0a657", + "#f3d1a9", + ], + "00iGNInM4y8vS5Aon": [ + "#2a3c6f", + "#8c5788", + "#b6762d", + "#a8928a", + "#ebbc44", + "#e0cdb8", + ], }; diff --git a/packages/color-palettes/tpl.readme.md b/packages/color-palettes/tpl.readme.md index b010233cd2..cfc99fa0f7 100644 --- a/packages/color-palettes/tpl.readme.md +++ b/packages/color-palettes/tpl.readme.md @@ -51,120 +51,122 @@ Below the color themes are shown **sorted by median LCH chromacity**: shows the more saturated colors much more muted than they actually are/should be. Any pointers to workarounds/solutions are appreciated...): -### Soft +### Strong | Preset | Swatches | -|----------------------|-------------------------------------------------------------------------------------------------------------| -| `00QLfPkuNx1jE7sMm` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLfPkuNx1jE7sMm.svg) | -| `00QN31G5AB2FTftCe` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QN31G5AB2FTftCe.svg) | -| `00QMEZazmZG85DaWw` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMEZazmZG85DaWw.svg) | -| `00f5whlJFUwx7AaEe` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00f5whlJFUwx7AaEe.svg) | -| `00YxFeFYOuMCD0qWe` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00YxFeFYOuMCD0qWe.svg) | -| `00RB4I684QFqc2HAM` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RB4I684QFqc2HAM.svg) | -| `00QMA8RhpXdgwPtLn` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMA8RhpXdgwPtLn.svg) | -| `00gSFutQrW4MxihX7` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00gSFutQrW4MxihX7.svg) | -| `00g3JvJ0ZydpXXvEC` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00g3JvJ0ZydpXXvEC.svg) | -| `00RB4I89XiwNSlobH` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RB4I89XiwNSlobH.svg) | -| `00PBWZvgJvi4gdxGj` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00PBWZvgJvi4gdxGj.svg) | -| `00RnZfzWN7Ewml76I` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RnZfzWN7Ewml76I.svg) | -| `00i0fT276sz5H8vMy` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00i0fT276sz5H8vMy.svg) | -| `00QLj3F8heV6QT4YG` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLj3F8heV6QT4YG.svg) | -| `00g3Jv9zydyJs2QlX` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00g3Jv9zydyJs2QlX.svg) | -| `00RGlyLkqOmPmbuX6` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RGlyLkqOmPmbuX6.svg) | -| `00QLslJAGNA8YREKh` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLslJAGNA8YREKh.svg) | -| `00QMSSCjsJpojbpYza` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMSSCjsJpojbpYza.svg) | -| `00QLn7oETUQZKKr34` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLn7oETUQZKKr34.svg) | -| `00RTRDIzyUse2qJ9N` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RTRDIzyUse2qJ9N.svg) | -| `00QLfPj2trTnyJHAg` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLfPj2trTnyJHAg.svg) | -| `00QLj3Yj1pUNnTKVY` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLj3Yj1pUNnTKVY.svg) | -| `00QMKP9yh8XlJYcgM` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMKP9yh8XlJYcgM.svg) | -| `00bYahDYU6E7wDJwL` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYahDYU6E7wDJwL.svg) | -| `00bYiYyzA6ODPIC8V` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYiYyzA6ODPIC8V.svg) | -| `00bYcj0VC9wmmKNm5` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYcj0VC9wmmKNm5.svg) | -| `00QLj3PylHkh8qY2R` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLj3PylHkh8qY2R.svg) | -| `00QLNIKFhjs5rJCjr` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLNIKFhjs5rJCjr.svg) | -| `00QMEZzTrk06iVgaK` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMEZzTrk06iVgaK.svg) | -| `00QMA8SkIwjW5KEch` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMA8SkIwjW5KEch.svg) | +|:---------------------|:------------------------------------------------------------------------------------------------------------| +| `00Q9Yxm7DrZXqTkyS` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00Q9Yxm7DrZXqTkyS.svg) | +| `00QMA8h2BH69zyEk0` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMA8h2BH69zyEk0.svg) | +| `00QLn7G59JhKtuUs0` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLn7G59JhKtuUs0.svg) | +| `00QLNIQXmbJgghRXg` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLNIQXmbJgghRXg.svg) | +| `00QLNHv6JW1bL031O` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLNHv6JW1bL031O.svg) | +| `00iGNImQqINC9iQ1D` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00iGNImQqINC9iQ1D.svg) | +| `00QLj3fsFErIl5W0b` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLj3fsFErIl5W0b.svg) | +| `00QN49h9BAkHHyKJh` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QN49h9BAkHHyKJh.svg) | +| `00QLfPtu33OAdSN4Y` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLfPtu33OAdSN4Y.svg) | +| `00QMSRqFlj9B8ayZW` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMSRqFlj9B8ayZW.svg) | +| `00QLn7Lr9V98YD0zY` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLn7Lr9V98YD0zY.svg) | +| `00i0iHWHzzEoacpfQ` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00i0iHWHzzEoacpfQ.svg) | +| `00QLNIVe1AkurVqYj` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLNIVe1AkurVqYj.svg) | +| `00QLn7XfPKvMKCrzO` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLn7XfPKvMKCrzO.svg) | +| `00QMEZl7ulP3f2WaX` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMEZl7ulP3f2WaX.svg) | +| `00bYcjDCylnf3k1aB` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYcjDCylnf3k1aB.svg) | +| `00QMEZVdDC6dMYpjp` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMEZVdDC6dMYpjp.svg) | +| `00T2A6qx5VScIQ9bU` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00T2A6qx5VScIQ9bU.svg) | +| `00QMEZb0EorAC0k7y` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMEZb0EorAC0k7y.svg) | +| `00RYyJDsTKzsBBgCO` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RYyJDsTKzsBBgCO.svg) | +| `00QLqYQ3HE1oy3ByI` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLqYQ3HE1oy3ByI.svg) | +| `00UWNvEkTsOF0aQHh` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00UWNvEkTsOF0aQHh.svg) | +| `00QMSSCjsJpojbpYz` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMSSCjsJpojbpYz.svg) | +| `00QLfPm4UfkMiaicq` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLfPm4UfkMiaicq.svg) | +| `00QLcP0k2fPAz0KHR` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLcP0k2fPAz0KHR.svg) | +| `00iGNInM4y8vS5Aon` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00iGNInM4y8vS5Aon.svg) | +| `00PhGSfzpeU5Bkh47a` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00PhGSfzpeU5Bkh47a.svg) | +| `00RlTJrw94KFOF3zL` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RlTJrw94KFOF3zL.svg) | +| `00RGly9mkWt6i3suLa` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RGly9mkWt6i3suLa.svg) | +| `00bYahKZ8LbVgx54y` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYahKZ8LbVgx54y.svg) | +| `00QMxexuJYMe6enbZ` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMxexuJYMe6enbZ.svg) | +| `00QLj3dmHiT8Ep1Un` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLj3dmHiT8Ep1Un.svg) | +| `00QMxescYuh8eYT39` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMxescYuh8eYT39.svg) | +| `00OqoPfvP6y1EmXZQ` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00OqoPfvP6y1EmXZQ.svg) | +| `00PhEgF9AlI5PTrLB` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00PhEgF9AlI5PTrLB.svg) | +| `00QMSSK2AEOwErS5Ma` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMSSK2AEOwErS5Ma.svg) | +| `00i0iHNQPUpX6Jzsb` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00i0iHNQPUpX6Jzsb.svg) | +| `00RTRDIRDbnErAXHV` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RTRDIRDbnErAXHV.svg) | +| `00RTRDNL7MjHkDys4` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RTRDNL7MjHkDys4.svg) | +| `00RGly9mkWt6i3suL` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RGly9mkWt6i3suL.svg) | ### Medium | Preset | Swatches | -|---------------------|------------------------------------------------------------------------------------------------------------| -| `00QLqYS2ZOgkMeMAE` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLqYS2ZOgkMeMAE.svg) | -| `00QMEZgMsSVZavaNd` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMEZgMsSVZavaNd.svg) | -| `00QLqYLjs4H7kdHrp` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLqYLjs4H7kdHrp.svg) | -| `00RB4I6NRn6CF3oS0` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RB4I6NRn6CF3oS0.svg) | -| `00RTRDAqmTEarmyeR` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RTRDAqmTEarmyeR.svg) | -| `00Yi9btvr8RY4NROm` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00Yi9btvr8RY4NROm.svg) | -| `00bYcj4uvi0NIlqyw` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYcj4uvi0NIlqyw.svg) | -| `00Yi9c5ifk9eXO5XX` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00Yi9c5ifk9eXO5XX.svg) | -| `00UWNvBioJ6ZSjDix` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00UWNvBioJ6ZSjDix.svg) | -| `00RB4IFxoIYII3Cqi` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RB4IFxoIYII3Cqi.svg) | -| `00OwGARqASN2zngyg` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00OwGARqASN2zngyg.svg) | -| `00b7Az8pDWEjBLMHs` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00b7Az8pDWEjBLMHs.svg) | -| `00ORLwKeosxtEeZxq` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00ORLwKeosxtEeZxq.svg) | -| `00RGlyJwY9q4Sh0tQ` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RGlyJwY9q4Sh0tQ.svg) | -| `00RGlyFVinQl5cj21` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RGlyFVinQl5cj21.svg) | -| `00RlTJxJZ16ivgKBw` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RlTJxJZ16ivgKBw.svg) | -| `00i0iHUSVMHOENQof` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00i0iHUSVMHOENQof.svg) | -| `00OkEXVdMQmQ1oQTp` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00OkEXVdMQmQ1oQTp.svg) | -| `00bYcivY8Jqx8nsiR` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYcivY8Jqx8nsiR.svg) | -| `00bYiZ8YHLsLMA7j3` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYiZ8YHLsLMA7j3.svg) | -| `00QMSSK2AEOwErS5M` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMSSK2AEOwErS5M.svg) | -| `00RYyJ4jHYfMF6yfy` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RYyJ4jHYfMF6yfy.svg) | -| `00QMSSEJXJOUdMoSj` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMSSEJXJOUdMoSj.svg) | -| `00QMA8tedClukB7IL` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMA8tedClukB7IL.svg) | -| `00RTRDOtbFF8KFNH9` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RTRDOtbFF8KFNH9.svg) | -| `00bYcixZkofJhLJ8w` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYcixZkofJhLJ8w.svg) | -| `00QLn7BH2doQfh4Yw` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLn7BH2doQfh4Yw.svg) | -| `00RYyJ25i8zFwOJGh` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RYyJ25i8zFwOJGh.svg) | -| `00i0iHXq6xPzf1pt0` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00i0iHXq6xPzf1pt0.svg) | -| `00bYah8QOLZNgszuV` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYah8QOLZNgszuV.svg) | -| `00QLfPusSpy3uFOpb` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLfPusSpy3uFOpb.svg) | +|:--------------------|:-----------------------------------------------------------------------------------------------------------| | `00QMSRoDq0SDYprak` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMSRoDq0SDYprak.svg) | +| `00QLfPusSpy3uFOpb` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLfPusSpy3uFOpb.svg) | +| `00bYah8QOLZNgszuV` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYah8QOLZNgszuV.svg) | +| `00i0iHXq6xPzf1pt0` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00i0iHXq6xPzf1pt0.svg) | +| `00RYyJ25i8zFwOJGh` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RYyJ25i8zFwOJGh.svg) | +| `00QLn7BH2doQfh4Yw` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLn7BH2doQfh4Yw.svg) | +| `00bYcixZkofJhLJ8w` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYcixZkofJhLJ8w.svg) | +| `00RTRDOtbFF8KFNH9` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RTRDOtbFF8KFNH9.svg) | +| `00QMA8tedClukB7IL` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMA8tedClukB7IL.svg) | +| `00QMSSEJXJOUdMoSj` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMSSEJXJOUdMoSj.svg) | +| `00RYyJ4jHYfMF6yfy` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RYyJ4jHYfMF6yfy.svg) | +| `00QMSSK2AEOwErS5M` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMSSK2AEOwErS5M.svg) | +| `00bYiZ8YHLsLMA7j3` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYiZ8YHLsLMA7j3.svg) | +| `00bYcivY8Jqx8nsiR` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYcivY8Jqx8nsiR.svg) | +| `00OkEXVdMQmQ1oQTp` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00OkEXVdMQmQ1oQTp.svg) | +| `00i0iHUSVMHOENQof` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00i0iHUSVMHOENQof.svg) | +| `00RlTJxJZ16ivgKBw` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RlTJxJZ16ivgKBw.svg) | +| `00RGlyFVinQl5cj21` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RGlyFVinQl5cj21.svg) | +| `00RGlyJwY9q4Sh0tQ` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RGlyJwY9q4Sh0tQ.svg) | +| `00ORLwKeosxtEeZxq` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00ORLwKeosxtEeZxq.svg) | +| `00b7Az8pDWEjBLMHs` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00b7Az8pDWEjBLMHs.svg) | +| `00OwGARqASN2zngyg` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00OwGARqASN2zngyg.svg) | +| `00RB4IFxoIYII3Cqi` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RB4IFxoIYII3Cqi.svg) | +| `00UWNvBioJ6ZSjDix` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00UWNvBioJ6ZSjDix.svg) | +| `00Yi9c5ifk9eXO5XX` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00Yi9c5ifk9eXO5XX.svg) | +| `00bYcj4uvi0NIlqyw` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYcj4uvi0NIlqyw.svg) | +| `00Yi9btvr8RY4NROm` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00Yi9btvr8RY4NROm.svg) | +| `00RTRDAqmTEarmyeR` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RTRDAqmTEarmyeR.svg) | +| `00RB4I6NRn6CF3oS0` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RB4I6NRn6CF3oS0.svg) | +| `00QLqYLjs4H7kdHrp` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLqYLjs4H7kdHrp.svg) | +| `00QMEZgMsSVZavaNd` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMEZgMsSVZavaNd.svg) | +| `00QLqYS2ZOgkMeMAE` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLqYS2ZOgkMeMAE.svg) | -### Strong +### Soft | Preset | Swatches | -|----------------------|-------------------------------------------------------------------------------------------------------------| -| `00RGly9mkWt6i3suL` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RGly9mkWt6i3suL.svg) | -| `00RTRDNL7MjHkDys4` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RTRDNL7MjHkDys4.svg) | -| `00RTRDIRDbnErAXHV` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RTRDIRDbnErAXHV.svg) | -| `00i0iHNQPUpX6Jzsb` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00i0iHNQPUpX6Jzsb.svg) | -| `00QMSSK2AEOwErS5Ma` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMSSK2AEOwErS5Ma.svg) | -| `00PhEgF9AlI5PTrLB` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00PhEgF9AlI5PTrLB.svg) | -| `00OqoPfvP6y1EmXZQ` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00OqoPfvP6y1EmXZQ.svg) | -| `00QMxescYuh8eYT39` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMxescYuh8eYT39.svg) | -| `00QLj3dmHiT8Ep1Un` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLj3dmHiT8Ep1Un.svg) | -| `00QMxexuJYMe6enbZ` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMxexuJYMe6enbZ.svg) | -| `00bYahKZ8LbVgx54y` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYahKZ8LbVgx54y.svg) | -| `00RGly9mkWt6i3suLa` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RGly9mkWt6i3suLa.svg) | -| `00RlTJrw94KFOF3zL` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RlTJrw94KFOF3zL.svg) | -| `00PhGSfzpeU5Bkh47a` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00PhGSfzpeU5Bkh47a.svg) | -| `00QLcP0k2fPAz0KHR` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLcP0k2fPAz0KHR.svg) | -| `00QLfPm4UfkMiaicq` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLfPm4UfkMiaicq.svg) | -| `00QMSSCjsJpojbpYz` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMSSCjsJpojbpYz.svg) | -| `00UWNvEkTsOF0aQHh` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00UWNvEkTsOF0aQHh.svg) | -| `00QLqYQ3HE1oy3ByI` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLqYQ3HE1oy3ByI.svg) | -| `00RYyJDsTKzsBBgCO` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RYyJDsTKzsBBgCO.svg) | -| `00QMEZb0EorAC0k7y` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMEZb0EorAC0k7y.svg) | -| `00T2A6qx5VScIQ9bU` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00T2A6qx5VScIQ9bU.svg) | -| `00QMEZVdDC6dMYpjp` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMEZVdDC6dMYpjp.svg) | -| `00bYcjDCylnf3k1aB` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYcjDCylnf3k1aB.svg) | -| `00QMEZl7ulP3f2WaX` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMEZl7ulP3f2WaX.svg) | -| `00QLn7XfPKvMKCrzO` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLn7XfPKvMKCrzO.svg) | -| `00QLNIVe1AkurVqYj` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLNIVe1AkurVqYj.svg) | -| `00i0iHWHzzEoacpfQ` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00i0iHWHzzEoacpfQ.svg) | -| `00QLn7Lr9V98YD0zY` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLn7Lr9V98YD0zY.svg) | -| `00QMSRqFlj9B8ayZW` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMSRqFlj9B8ayZW.svg) | -| `00QLfPtu33OAdSN4Y` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLfPtu33OAdSN4Y.svg) | -| `00QN49h9BAkHHyKJh` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QN49h9BAkHHyKJh.svg) | -| `00QLj3fsFErIl5W0b` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLj3fsFErIl5W0b.svg) | -| `00QLNHv6JW1bL031O` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLNHv6JW1bL031O.svg) | -| `00QLNIQXmbJgghRXg` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLNIQXmbJgghRXg.svg) | -| `00QLn7G59JhKtuUs0` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLn7G59JhKtuUs0.svg) | -| `00QMA8h2BH69zyEk0` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMA8h2BH69zyEk0.svg) | -| `00Q9Yxm7DrZXqTkyS` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00Q9Yxm7DrZXqTkyS.svg) | +|:---------------------|:------------------------------------------------------------------------------------------------------------| +| `00QMA8SkIwjW5KEch` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMA8SkIwjW5KEch.svg) | +| `00QMEZzTrk06iVgaK` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMEZzTrk06iVgaK.svg) | +| `00QLNIKFhjs5rJCjr` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLNIKFhjs5rJCjr.svg) | +| `00QLj3PylHkh8qY2R` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLj3PylHkh8qY2R.svg) | +| `00bYcj0VC9wmmKNm5` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYcj0VC9wmmKNm5.svg) | +| `00bYiYyzA6ODPIC8V` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYiYyzA6ODPIC8V.svg) | +| `00bYahDYU6E7wDJwL` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00bYahDYU6E7wDJwL.svg) | +| `00QMKP9yh8XlJYcgM` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMKP9yh8XlJYcgM.svg) | +| `00QLj3Yj1pUNnTKVY` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLj3Yj1pUNnTKVY.svg) | +| `00QLfPj2trTnyJHAg` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLfPj2trTnyJHAg.svg) | +| `00RTRDIzyUse2qJ9N` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RTRDIzyUse2qJ9N.svg) | +| `00QLn7oETUQZKKr34` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLn7oETUQZKKr34.svg) | +| `00QMSSCjsJpojbpYza` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMSSCjsJpojbpYza.svg) | +| `00QLslJAGNA8YREKh` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLslJAGNA8YREKh.svg) | +| `00RGlyLkqOmPmbuX6` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RGlyLkqOmPmbuX6.svg) | +| `00g3Jv9zydyJs2QlX` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00g3Jv9zydyJs2QlX.svg) | +| `00QLj3F8heV6QT4YG` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLj3F8heV6QT4YG.svg) | +| `00i0fT276sz5H8vMy` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00i0fT276sz5H8vMy.svg) | +| `00RnZfzWN7Ewml76I` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RnZfzWN7Ewml76I.svg) | +| `00PBWZvgJvi4gdxGj` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00PBWZvgJvi4gdxGj.svg) | +| `00RB4I89XiwNSlobH` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RB4I89XiwNSlobH.svg) | +| `00g3JvJ0ZydpXXvEC` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00g3JvJ0ZydpXXvEC.svg) | +| `00gSFutQrW4MxihX7` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00gSFutQrW4MxihX7.svg) | +| `00QMA8RhpXdgwPtLn` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMA8RhpXdgwPtLn.svg) | +| `00RB4I684QFqc2HAM` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00RB4I684QFqc2HAM.svg) | +| `00YxFeFYOuMCD0qWe` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00YxFeFYOuMCD0qWe.svg) | +| `00f5whlJFUwx7AaEe` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00f5whlJFUwx7AaEe.svg) | +| `00QMEZazmZG85DaWw` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QMEZazmZG85DaWw.svg) | +| `00QN31G5AB2FTftCe` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QN31G5AB2FTftCe.svg) | +| `00QLfPkuNx1jE7sMm` | ![](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/color-palettes/00QLfPkuNx1jE7sMm.svg) | ## Authors From a56cf0c7c8bec2464689cc632a2113306318923f Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Tue, 24 Aug 2021 15:14:14 +0200 Subject: [PATCH 32/76] docs: regenerate readmes --- packages/adapt-dpi/README.md | 2 +- packages/adjacency/README.md | 2 +- packages/args/README.md | 2 +- packages/associative/README.md | 2 +- packages/atom/README.md | 2 +- packages/base-n/README.md | 2 +- packages/bench/README.md | 2 +- packages/binary/README.md | 2 +- packages/cache/README.md | 2 +- packages/color-palettes/README.md | 2 +- packages/color/README.md | 4 ++-- packages/compare/README.md | 2 +- packages/defmulti/README.md | 2 +- packages/dgraph/README.md | 7 +++---- packages/dl-asset/README.md | 2 +- packages/dsp/README.md | 2 +- packages/ecs/README.md | 2 +- packages/fsm/README.md | 2 +- packages/geom-accel/README.md | 2 +- packages/geom-closest-point/README.md | 2 +- packages/geom-fuzz/README.md | 2 +- packages/geom-hull/README.md | 2 +- packages/geom-isoline/README.md | 2 +- packages/geom-resample/README.md | 2 +- packages/geom-splines/README.md | 2 +- packages/geom-tessellate/README.md | 2 +- packages/geom-voronoi/README.md | 2 +- packages/geom/README.md | 2 +- packages/gp/README.md | 2 +- packages/grid-iterators/README.md | 2 +- packages/hdom-canvas/README.md | 2 +- packages/hdom-components/README.md | 2 +- packages/hdom/README.md | 2 +- packages/hiccup-canvas/README.md | 2 +- packages/hiccup-carbon-icons/README.md | 2 +- packages/hiccup-css/README.md | 2 +- packages/hiccup-html/README.md | 2 +- packages/hiccup-markdown/README.md | 2 +- packages/hiccup-svg/README.md | 4 ++-- packages/hiccup/README.md | 2 +- packages/imgui/README.md | 2 +- packages/interceptors/README.md | 2 +- packages/intervals/README.md | 2 +- packages/k-means/README.md | 2 +- packages/layout/README.md | 2 +- packages/math/README.md | 2 +- packages/matrices/README.md | 2 +- packages/memoize/README.md | 2 +- packages/parse/README.md | 2 +- packages/paths/README.md | 2 +- packages/pixel/README.md | 2 +- packages/pointfree-lang/README.md | 7 +++---- packages/pointfree/README.md | 7 +++---- packages/poisson/README.md | 2 +- packages/porter-duff/README.md | 2 +- packages/ramp/README.md | 2 +- packages/random/README.md | 2 +- packages/rdom-canvas/README.md | 2 +- packages/rdom-components/README.md | 2 +- packages/rdom/README.md | 2 +- packages/resolve-map/README.md | 2 +- packages/router/README.md | 2 +- packages/rstream-gestures/README.md | 2 +- packages/rstream-graph/README.md | 2 +- packages/rstream-query/README.md | 2 +- packages/rstream/README.md | 2 +- packages/sax/README.md | 2 +- packages/scenegraph/README.md | 2 +- packages/sexpr/README.md | 2 +- packages/shader-ast-glsl/README.md | 2 +- packages/shader-ast-js/README.md | 2 +- packages/shader-ast-stdlib/README.md | 2 +- packages/shader-ast/README.md | 2 +- packages/soa/README.md | 2 +- packages/strings/README.md | 2 +- packages/text-canvas/README.md | 2 +- packages/transducers-binary/README.md | 2 +- packages/transducers-hdom/README.md | 2 +- packages/transducers-stats/README.md | 2 +- packages/transducers/README.md | 4 ++-- packages/vector-pools/README.md | 2 +- packages/vectors/README.md | 2 +- packages/webgl-msdf/README.md | 2 +- packages/webgl-shadertoy/README.md | 2 +- packages/webgl/README.md | 2 +- 85 files changed, 94 insertions(+), 97 deletions(-) diff --git a/packages/adapt-dpi/README.md b/packages/adapt-dpi/README.md index b8f5df586c..783321dbe2 100644 --- a/packages/adapt-dpi/README.md +++ b/packages/adapt-dpi/README.md @@ -63,7 +63,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------- | --------------------------------------------------- | -------------------------------------------------------------------------------- | +|:---------------------------------------------------------------------------------------------------------------------|:---------------------------------------------|:----------------------------------------------------|:---------------------------------------------------------------------------------| | | Entity Component System w/ 100k 3D particles | [Demo](https://demo.thi.ng/umbrella/soa-ecs/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/soa-ecs) | | | WebGL cube maps with async texture loading | [Demo](https://demo.thi.ng/umbrella/webgl-cubemap/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/webgl-cubemap) | | | WebGL instancing, animated grid | [Demo](https://demo.thi.ng/umbrella/webgl-grid/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/webgl-grid) | diff --git a/packages/adjacency/README.md b/packages/adjacency/README.md index 379529fb31..2a86463465 100644 --- a/packages/adjacency/README.md +++ b/packages/adjacency/README.md @@ -67,7 +67,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| ----------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | ------------------------------------------------------ | ----------------------------------------------------------------------------------- | +|:------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------|:-------------------------------------------------------|:------------------------------------------------------------------------------------| | | Poisson-disk shape-aware sampling, Voronoi & Minimum Spanning Tree visualization | [Demo](https://demo.thi.ng/umbrella/geom-voronoi-mst/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/geom-voronoi-mst) | ## API diff --git a/packages/args/README.md b/packages/args/README.md index fdb6d635e0..49b8b8cb01 100644 --- a/packages/args/README.md +++ b/packages/args/README.md @@ -62,7 +62,7 @@ yarn add @thi.ng/args ``` -Package sizes (gzipped, pre-treeshake): ESM: 2.38 KB / CJS: 2.52 KB / UMD: 2.43 KB +Package sizes (gzipped, pre-treeshake): ESM: 2.40 KB / CJS: 2.53 KB / UMD: 2.44 KB ## Dependencies diff --git a/packages/associative/README.md b/packages/associative/README.md index c2a31d4d96..231a720adf 100644 --- a/packages/associative/README.md +++ b/packages/associative/README.md @@ -176,7 +176,7 @@ yarn add @thi.ng/associative ``` -Package sizes (gzipped, pre-treeshake): ESM: 6.32 KB / CJS: 6.52 KB / UMD: 6.31 KB +Package sizes (gzipped, pre-treeshake): ESM: 6.29 KB / CJS: 6.49 KB / UMD: 6.26 KB ## Dependencies diff --git a/packages/atom/README.md b/packages/atom/README.md index f3c08c049a..4d35e10c07 100644 --- a/packages/atom/README.md +++ b/packages/atom/README.md @@ -135,7 +135,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| -------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------- | --------------------------------------------------------- | -------------------------------------------------------------------------------------- | +|:---------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------|:----------------------------------------------------------|:---------------------------------------------------------------------------------------| | | BMI calculator in a devcards format | [Demo](https://demo.thi.ng/umbrella/devcards/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/devcards) | | | Custom dropdown UI component w/ fuzzy search | [Demo](https://demo.thi.ng/umbrella/hdom-dropdown-fuzzy/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/hdom-dropdown-fuzzy) | | | Basic SPA example with atom-based UI router | [Demo](https://demo.thi.ng/umbrella/login-form/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/login-form) | diff --git a/packages/base-n/README.md b/packages/base-n/README.md index 3124f6f3d0..624413d684 100644 --- a/packages/base-n/README.md +++ b/packages/base-n/README.md @@ -41,7 +41,7 @@ yarn add @thi.ng/base-n ``` -Package sizes (gzipped, pre-treeshake): ESM: 811 bytes / CJS: 919 bytes / UMD: 995 bytes +Package sizes (gzipped, pre-treeshake): ESM: 817 bytes / CJS: 925 bytes / UMD: 1001 bytes ## Dependencies diff --git a/packages/bench/README.md b/packages/bench/README.md index 462701f071..60b6e1831a 100644 --- a/packages/bench/README.md +++ b/packages/bench/README.md @@ -74,7 +74,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| ------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------- | -------------------------------------------------------- | ------------------------------------------------------------------------------------- | +|:--------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------|:---------------------------------------------------------|:--------------------------------------------------------------------------------------| | | Fork-join worker-based raymarch renderer | [Demo](https://demo.thi.ng/umbrella/shader-ast-workers/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/shader-ast-workers) | ## API diff --git a/packages/binary/README.md b/packages/binary/README.md index 887ed579c9..96310bd358 100644 --- a/packages/binary/README.md +++ b/packages/binary/README.md @@ -62,7 +62,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| ---------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------- | ----------------------------------------------------- | ---------------------------------------------------------------------------------- | +|:-----------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------|:------------------------------------------------------|:-----------------------------------------------------------------------------------| | | hdom update performance benchmark w/ config options | [Demo](https://demo.thi.ng/umbrella/hdom-benchmark2/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/hdom-benchmark2) | ## API diff --git a/packages/cache/README.md b/packages/cache/README.md index d5706c4461..0ea1719591 100644 --- a/packages/cache/README.md +++ b/packages/cache/README.md @@ -85,7 +85,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| ----------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------- | ------------------------------------------------------ | ----------------------------------------------------------------------------------- | +|:------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------|:-------------------------------------------------------|:------------------------------------------------------------------------------------| | | Filterable commit log UI w/ minimal server to provide commit history | [Demo](https://demo.thi.ng/umbrella/commit-table-ssr/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/commit-table-ssr) | ## API diff --git a/packages/color-palettes/README.md b/packages/color-palettes/README.md index f6c3079732..cf013f32eb 100644 --- a/packages/color-palettes/README.md +++ b/packages/color-palettes/README.md @@ -45,7 +45,7 @@ yarn add @thi.ng/color-palettes ``` -Package sizes (gzipped, pre-treeshake): ESM: 4.03 KB / CJS: 4.10 KB / UMD: 4.25 KB +Package sizes (gzipped, pre-treeshake): ESM: 4.11 KB / CJS: 4.18 KB / UMD: 4.34 KB ## Dependencies diff --git a/packages/color/README.md b/packages/color/README.md index 23985503f1..12310e5548 100644 --- a/packages/color/README.md +++ b/packages/color/README.md @@ -571,7 +571,7 @@ concatenation (see `concat()`) for more efficient application. ### Support packages -- [@thi.ng/color-palettes](https://github.com/thi-ng/umbrella/tree/develop/packages/color-palettes) - Collection of 64 image based color palettes +- [@thi.ng/color-palettes](https://github.com/thi-ng/umbrella/tree/develop/packages/color-palettes) - Collection of 100 image based color palettes ### Related packages @@ -619,7 +619,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| ------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------- | -------------------------------------------------------- | ------------------------------------------------------------------------------------- | +|:--------------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------|:---------------------------------------------------------|:--------------------------------------------------------------------------------------| | | Probabilistic color theme generator | [Demo](https://demo.thi.ng/umbrella/color-themes/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/color-themes) | | | Heatmap visualization of this mono-repo's commits | | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/commit-heatmap) | | | Color palette generation via dominant color extraction from uploaded images | [Demo](https://demo.thi.ng/umbrella/dominant-colors/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/dominant-colors) | diff --git a/packages/compare/README.md b/packages/compare/README.md index f54ad02ead..8c1a1ca063 100644 --- a/packages/compare/README.md +++ b/packages/compare/README.md @@ -67,7 +67,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| ------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------- | ------------------------------------------------------ | ----------------------------------------------------------------------------------- | +|:--------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------------|:-------------------------------------------------------|:------------------------------------------------------------------------------------| | | 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) | | | Triple store query results & sortable table | [Demo](https://demo.thi.ng/umbrella/triple-query/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/triple-query) | diff --git a/packages/defmulti/README.md b/packages/defmulti/README.md index 5114a3f405..e2616fdba3 100644 --- a/packages/defmulti/README.md +++ b/packages/defmulti/README.md @@ -70,7 +70,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| -------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------- | --------------------------------------------------------- | -------------------------------------------------------------------------------------- | +|:---------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------|:----------------------------------------------------------|:---------------------------------------------------------------------------------------| | | rstream based spreadsheet w/ S-expression formula DSL | [Demo](https://demo.thi.ng/umbrella/rstream-spreadsheet/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/rstream-spreadsheet) | | | XML/HTML/SVG to hiccup/JS conversion | [Demo](https://demo.thi.ng/umbrella/xml-converter/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/xml-converter) | diff --git a/packages/dgraph/README.md b/packages/dgraph/README.md index 66c732a1a5..f3cc4c0be4 100644 --- a/packages/dgraph/README.md +++ b/packages/dgraph/README.md @@ -82,10 +82,9 @@ directory are using this package. A selection: -| Screenshot | Description | Live| Source | -| | | demo| | -| -------------------------------------------------------------------------------------------------------------------- | ---------------------------------------- | --- | -------------------------------------------------------------------------------- | -| | CLI util to visualize umbrella pkg stats | | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/package-stats) | +| Screenshot | Description | Live demo | Source | +|:---------------------------------------------------------------------------------------------------------------------|:-----------------------------------------|:----------|:---------------------------------------------------------------------------------| +| | CLI util to visualize umbrella pkg stats | | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/package-stats) | ## API diff --git a/packages/dl-asset/README.md b/packages/dl-asset/README.md index 4992f38b41..2ecec60ff1 100644 --- a/packages/dl-asset/README.md +++ b/packages/dl-asset/README.md @@ -64,7 +64,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| ------------------------------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------- | -------------------------------------------------------- | ------------------------------------------------------------------------------------- | +|:-------------------------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------|:---------------------------------------------------------|:--------------------------------------------------------------------------------------| | | Color palette generation via dominant color extraction from uploaded images | [Demo](https://demo.thi.ng/umbrella/dominant-colors/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/dominant-colors) | | | Various hdom-canvas shape drawing examples & SVG conversion / export | [Demo](https://demo.thi.ng/umbrella/hdom-canvas-shapes/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/hdom-canvas-shapes) | | | 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) | diff --git a/packages/dsp/README.md b/packages/dsp/README.md index f664846e06..711d17154b 100644 --- a/packages/dsp/README.md +++ b/packages/dsp/README.md @@ -97,7 +97,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------- | ------------------------------------------------- | ------------------------------------------------------------------------------ | +|:-------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------|:--------------------------------------------------|:-------------------------------------------------------------------------------| | | Interactive inverse FFT toy synth | [Demo](https://demo.thi.ng/umbrella/fft-synth/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/fft-synth) | | | Polygon to cubic curve conversion & visualization | [Demo](https://demo.thi.ng/umbrella/poly-spline/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/poly-spline) | | | 3D wireframe textmode demo | [Demo](https://demo.thi.ng/umbrella/text-canvas/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/text-canvas) | diff --git a/packages/ecs/README.md b/packages/ecs/README.md index b7c88eeb26..5804d7ff5f 100644 --- a/packages/ecs/README.md +++ b/packages/ecs/README.md @@ -75,7 +75,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| ------------------------------------------------------------------------------------------------------------------- | -------------------------------------------- | --------------------------------------------- | -------------------------------------------------------------------------- | +|:--------------------------------------------------------------------------------------------------------------------|:---------------------------------------------|:----------------------------------------------|:---------------------------------------------------------------------------| | | Entity Component System w/ 100k 3D particles | [Demo](https://demo.thi.ng/umbrella/soa-ecs/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/soa-ecs) | ## API diff --git a/packages/fsm/README.md b/packages/fsm/README.md index 07d6b706bd..e13ad25c56 100644 --- a/packages/fsm/README.md +++ b/packages/fsm/README.md @@ -79,7 +79,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| ---------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------- | ---------------------------------------------- | --------------------------------------------------------------------------- | +|:-----------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------|:-----------------------------------------------|:----------------------------------------------------------------------------| | | Minimal 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) | ## API diff --git a/packages/geom-accel/README.md b/packages/geom-accel/README.md index 44683599c0..2f5b10aff8 100644 --- a/packages/geom-accel/README.md +++ b/packages/geom-accel/README.md @@ -78,7 +78,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| ----------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | ------------------------------------------------------ | ----------------------------------------------------------------------------------- | +|:------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------|:-------------------------------------------------------|:------------------------------------------------------------------------------------| | | Doodle w/ K-nearest neighbor search result visualization | [Demo](https://demo.thi.ng/umbrella/geom-knn/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/geom-knn) | | | Poisson-disk shape-aware sampling, Voronoi & Minimum Spanning Tree visualization | [Demo](https://demo.thi.ng/umbrella/geom-voronoi-mst/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/geom-voronoi-mst) | | | 2D Poisson-disc sampler with procedural gradient map | [Demo](https://demo.thi.ng/umbrella/poisson-circles/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/poisson-circles) | diff --git a/packages/geom-closest-point/README.md b/packages/geom-closest-point/README.md index c2d708b0b9..55fd9b67d8 100644 --- a/packages/geom-closest-point/README.md +++ b/packages/geom-closest-point/README.md @@ -69,7 +69,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------------------------------------ | +|:-------------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------|:--------------------------------------------------------|:-------------------------------------------------------------------------------------| | | Interactive visualization of closest points on ellipses | [Demo](https://demo.thi.ng/umbrella/ellipse-proximity/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/ellipse-proximity) | ## API diff --git a/packages/geom-fuzz/README.md b/packages/geom-fuzz/README.md index a38256569e..a035f4d4d0 100644 --- a/packages/geom-fuzz/README.md +++ b/packages/geom-fuzz/README.md @@ -74,7 +74,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| ------------------------------------------------------------------------------------------------------------ | ------------------------------------- | ------------------------------------------------------ | ----------------------------------------------------------------------------------- | +|:-------------------------------------------------------------------------------------------------------------|:--------------------------------------|:-------------------------------------------------------|:------------------------------------------------------------------------------------| | | geom-fuzz basic shape & fill examples | [Demo](https://demo.thi.ng/umbrella/geom-fuzz-basics/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/geom-fuzz-basics) | ## API diff --git a/packages/geom-hull/README.md b/packages/geom-hull/README.md index c1d44a163f..6ef1580e02 100644 --- a/packages/geom-hull/README.md +++ b/packages/geom-hull/README.md @@ -61,7 +61,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| ----------------------------------------------------------------------------------------------------------------------- | ------------------------------------------- | ------------------------------------------------------ | ----------------------------------------------------------------------------------- | +|:------------------------------------------------------------------------------------------------------------------------|:--------------------------------------------|:-------------------------------------------------------|:------------------------------------------------------------------------------------| | | Convex hull & shape clipping of 2D polygons | [Demo](https://demo.thi.ng/umbrella/geom-convex-hull/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/geom-convex-hull) | ## API diff --git a/packages/geom-isoline/README.md b/packages/geom-isoline/README.md index 6d74dfd0da..f60094db1c 100644 --- a/packages/geom-isoline/README.md +++ b/packages/geom-isoline/README.md @@ -62,7 +62,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| --------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------- | ------------------------------------------------ | ----------------------------------------------------------------------------- | +|:----------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------|:-------------------------------------------------|:------------------------------------------------------------------------------| | | Animated sine plasma effect visualized using contour lines | [Demo](https://demo.thi.ng/umbrella/iso-plasma/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/iso-plasma) | ## API diff --git a/packages/geom-resample/README.md b/packages/geom-resample/README.md index 30746f88f7..b7827671f4 100644 --- a/packages/geom-resample/README.md +++ b/packages/geom-resample/README.md @@ -68,7 +68,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| ----------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------ | ------------------------------------------------------ | ----------------------------------------------------------------------------------- | +|:------------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------|:-------------------------------------------------------|:------------------------------------------------------------------------------------| | | Animated Voronoi diagram, cubic splines & SVG download | [Demo](https://demo.thi.ng/umbrella/rotating-voronoi/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/rotating-voronoi) | ## API diff --git a/packages/geom-splines/README.md b/packages/geom-splines/README.md index c031bd6b6e..a28b4e62cf 100644 --- a/packages/geom-splines/README.md +++ b/packages/geom-splines/README.md @@ -75,7 +75,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------- | ------------------------------------------------- | ------------------------------------------------------------------------------ | +|:-------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------|:--------------------------------------------------|:-------------------------------------------------------------------------------| | | Polygon to cubic curve conversion & visualization | [Demo](https://demo.thi.ng/umbrella/poly-spline/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/poly-spline) | ## API diff --git a/packages/geom-tessellate/README.md b/packages/geom-tessellate/README.md index f8d8516eae..129c9bc01a 100644 --- a/packages/geom-tessellate/README.md +++ b/packages/geom-tessellate/README.md @@ -73,7 +73,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| --------------------------------------------------------------------------------------------------------- | ----------------------------------------- | ------------------------------------------------- | ------------------------------------------------------------------------------ | +|:----------------------------------------------------------------------------------------------------------|:------------------------------------------|:--------------------------------------------------|:-------------------------------------------------------------------------------| | | Animated, recursive polygon tessellations | [Demo](https://demo.thi.ng/umbrella/geom-tessel/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/geom-tessel) | ## API diff --git a/packages/geom-voronoi/README.md b/packages/geom-voronoi/README.md index 51b0f361b8..9bf3148411 100644 --- a/packages/geom-voronoi/README.md +++ b/packages/geom-voronoi/README.md @@ -83,7 +83,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| ----------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | ------------------------------------------------------ | ----------------------------------------------------------------------------------- | +|:------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------|:-------------------------------------------------------|:------------------------------------------------------------------------------------| | | Poisson-disk shape-aware sampling, Voronoi & Minimum Spanning Tree visualization | [Demo](https://demo.thi.ng/umbrella/geom-voronoi-mst/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/geom-voronoi-mst) | | | Animated Voronoi diagram, cubic splines & SVG download | [Demo](https://demo.thi.ng/umbrella/rotating-voronoi/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/rotating-voronoi) | diff --git a/packages/geom/README.md b/packages/geom/README.md index 0c6acde35e..f115e0035d 100644 --- a/packages/geom/README.md +++ b/packages/geom/README.md @@ -115,7 +115,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| ---------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | ----------------------------------------------------------- | ---------------------------------------------------------------------------------------- | +|:-----------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------|:------------------------------------------------------------|:-----------------------------------------------------------------------------------------| | | Convex hull & shape clipping of 2D polygons | [Demo](https://demo.thi.ng/umbrella/geom-convex-hull/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/geom-convex-hull) | | | geom-fuzz basic shape & fill examples | [Demo](https://demo.thi.ng/umbrella/geom-fuzz-basics/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/geom-fuzz-basics) | | | Animated, recursive polygon tessellations | [Demo](https://demo.thi.ng/umbrella/geom-tessel/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/geom-tessel) | diff --git a/packages/gp/README.md b/packages/gp/README.md index 7f53fad98d..4b49f15a8d 100644 --- a/packages/gp/README.md +++ b/packages/gp/README.md @@ -96,7 +96,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| --------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------- | ---------------------------------------------------- | --------------------------------------------------------------------------------- | +|:----------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------|:-----------------------------------------------------|:----------------------------------------------------------------------------------| | | Evolutionary shader generation using genetic programming | [Demo](https://demo.thi.ng/umbrella/shader-ast-evo/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/shader-ast-evo) | ## API diff --git a/packages/grid-iterators/README.md b/packages/grid-iterators/README.md index 6d86768e45..8be9de630f 100644 --- a/packages/grid-iterators/README.md +++ b/packages/grid-iterators/README.md @@ -191,7 +191,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| --------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------- | ---------------------------------------------------- | --------------------------------------------------------------------------------- | +|:----------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------|:-----------------------------------------------------|:----------------------------------------------------------------------------------| | | Visualization of different grid iterator strategies | [Demo](https://demo.thi.ng/umbrella/grid-iterators/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/grid-iterators) | ## API diff --git a/packages/hdom-canvas/README.md b/packages/hdom-canvas/README.md index 763b057c66..11afab38e7 100644 --- a/packages/hdom-canvas/README.md +++ b/packages/hdom-canvas/README.md @@ -92,7 +92,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| ------------------------------------------------------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------- | ----------------------------------------------------------- | ---------------------------------------------------------------------------------------- | +|:-------------------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------|:------------------------------------------------------------|:-----------------------------------------------------------------------------------------| | | Interactive inverse FFT toy synth | [Demo](https://demo.thi.ng/umbrella/fft-synth/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/fft-synth) | | | Doodle w/ K-nearest neighbor search result visualization | [Demo](https://demo.thi.ng/umbrella/geom-knn/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/geom-knn) | | | Poisson-disk shape-aware sampling, Voronoi & Minimum Spanning Tree visualization | [Demo](https://demo.thi.ng/umbrella/geom-voronoi-mst/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/geom-voronoi-mst) | diff --git a/packages/hdom-components/README.md b/packages/hdom-components/README.md index 4766c8ff7f..ebfd7fd0c9 100644 --- a/packages/hdom-components/README.md +++ b/packages/hdom-components/README.md @@ -77,7 +77,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| ------------------------------------------------------------------------------------------------------------------------------------ | ---------------------------------------------------------------------- | --------------------------------------------------------- | -------------------------------------------------------------------------------------- | +|:-------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------|:----------------------------------------------------------|:---------------------------------------------------------------------------------------| | | Canvas based dial widget | [Demo](https://demo.thi.ng/umbrella/canvas-dial/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/canvas-dial) | | | Basic crypto-currency candle chart with multiple moving averages plots | [Demo](https://demo.thi.ng/umbrella/crypto-chart/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/crypto-chart) | | | hdom update performance benchmark w/ config options | [Demo](https://demo.thi.ng/umbrella/hdom-benchmark2/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/hdom-benchmark2) | diff --git a/packages/hdom/README.md b/packages/hdom/README.md index 0fcd433c47..05db0423fb 100644 --- a/packages/hdom/README.md +++ b/packages/hdom/README.md @@ -163,7 +163,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| ------------------------------------------------------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------- | ----------------------------------------------------------- | ---------------------------------------------------------------------------------------- | +|:-------------------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------|:------------------------------------------------------------|:-----------------------------------------------------------------------------------------| | | 2D transducer based cellular automata | [Demo](https://demo.thi.ng/umbrella/cellular-automata/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/cellular-automata) | | | BMI calculator in a devcards format | [Demo](https://demo.thi.ng/umbrella/devcards/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/devcards) | | | hdom update performance benchmark w/ config options | [Demo](https://demo.thi.ng/umbrella/hdom-benchmark2/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/hdom-benchmark2) | diff --git a/packages/hiccup-canvas/README.md b/packages/hiccup-canvas/README.md index d1b5748b50..26afd46eb6 100644 --- a/packages/hiccup-canvas/README.md +++ b/packages/hiccup-canvas/README.md @@ -106,7 +106,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| ------------------------------------------------------------------------------------------------------------------------------------ | -------------------------------------------------------------------- | ----------------------------------------------------------- | ---------------------------------------------------------------------------------------- | +|:-------------------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------|:------------------------------------------------------------|:-----------------------------------------------------------------------------------------| | | geom-fuzz basic shape & fill examples | [Demo](https://demo.thi.ng/umbrella/geom-fuzz-basics/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/geom-fuzz-basics) | | | Realtime analog clock demo | [Demo](https://demo.thi.ng/umbrella/hdom-canvas-clock/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/hdom-canvas-clock) | | | Interactive pattern drawing demo using transducers | [Demo](https://demo.thi.ng/umbrella/hdom-canvas-draw/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/hdom-canvas-draw) | diff --git a/packages/hiccup-carbon-icons/README.md b/packages/hiccup-carbon-icons/README.md index 6f8393c8f4..7fa2138cfc 100644 --- a/packages/hiccup-carbon-icons/README.md +++ b/packages/hiccup-carbon-icons/README.md @@ -74,7 +74,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------- | ------------------------------------------------------ | ----------------------------------------------------------------------------------- | +|:------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------|:-------------------------------------------------------|:------------------------------------------------------------------------------------| | | Canvas based Immediate Mode GUI components | [Demo](https://demo.thi.ng/umbrella/imgui/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/imgui) | | | 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) | | | rdom drag & drop example | [Demo](https://demo.thi.ng/umbrella/rdom-dnd/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/rdom-dnd) | diff --git a/packages/hiccup-css/README.md b/packages/hiccup-css/README.md index 4f64b11dd1..e7533f13fc 100644 --- a/packages/hiccup-css/README.md +++ b/packages/hiccup-css/README.md @@ -128,7 +128,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| ---------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------- | ----------------------------------------------------- | ---------------------------------------------------------------------------------- | +|:-----------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------|:------------------------------------------------------|:-----------------------------------------------------------------------------------| | | hdom update performance benchmark w/ config options | [Demo](https://demo.thi.ng/umbrella/hdom-benchmark2/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/hdom-benchmark2) | ## API diff --git a/packages/hiccup-html/README.md b/packages/hiccup-html/README.md index fb5ba51879..79dbbe3684 100644 --- a/packages/hiccup-html/README.md +++ b/packages/hiccup-html/README.md @@ -195,7 +195,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| ----------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------- | ------------------------------------------------------ | ----------------------------------------------------------------------------------- | +|:------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------|:-------------------------------------------------------|:------------------------------------------------------------------------------------| | | Probabilistic color theme generator | [Demo](https://demo.thi.ng/umbrella/color-themes/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/color-themes) | | | 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) | | | 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) | diff --git a/packages/hiccup-markdown/README.md b/packages/hiccup-markdown/README.md index 669689ebfb..6d9dd4db3c 100644 --- a/packages/hiccup-markdown/README.md +++ b/packages/hiccup-markdown/README.md @@ -80,7 +80,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| ---------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------- | ---------------------------------------------- | --------------------------------------------------------------------------- | +|:-----------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------|:-----------------------------------------------|:----------------------------------------------------------------------------| | | Minimal 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) | ## API diff --git a/packages/hiccup-svg/README.md b/packages/hiccup-svg/README.md index d5bfe7b5d6..857e52f3ad 100644 --- a/packages/hiccup-svg/README.md +++ b/packages/hiccup-svg/README.md @@ -153,7 +153,7 @@ yarn add @thi.ng/hiccup-svg ``` -Package sizes (gzipped, pre-treeshake): ESM: 2.51 KB / CJS: 2.62 KB / UMD: 2.55 KB +Package sizes (gzipped, pre-treeshake): ESM: 2.56 KB / CJS: 2.68 KB / UMD: 2.60 KB ## Dependencies @@ -170,7 +170,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| ------------------------------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------- | -------------------------------------------------------- | ------------------------------------------------------------------------------------- | +|:-------------------------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------|:---------------------------------------------------------|:--------------------------------------------------------------------------------------| | | Probabilistic color theme generator | [Demo](https://demo.thi.ng/umbrella/color-themes/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/color-themes) | | | Heatmap visualization of this mono-repo's commits | | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/commit-heatmap) | | | Basic crypto-currency candle chart with multiple moving averages plots | [Demo](https://demo.thi.ng/umbrella/crypto-chart/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/crypto-chart) | diff --git a/packages/hiccup/README.md b/packages/hiccup/README.md index 898ca0183e..cea887d908 100644 --- a/packages/hiccup/README.md +++ b/packages/hiccup/README.md @@ -168,7 +168,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| ------------------------------------------------------------------------------------------------------------------------------------ | ---------------------------------------------------------------------- | -------------------------------------------------------- | ------------------------------------------------------------------------------------- | +|:-------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------|:---------------------------------------------------------|:--------------------------------------------------------------------------------------| | | Heatmap visualization of this mono-repo's commits | | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/commit-heatmap) | | | Filterable commit log UI w/ minimal server to provide commit history | [Demo](https://demo.thi.ng/umbrella/commit-table-ssr/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/commit-table-ssr) | | | Various hdom-canvas shape drawing examples & SVG conversion / export | [Demo](https://demo.thi.ng/umbrella/hdom-canvas-shapes/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/hdom-canvas-shapes) | diff --git a/packages/imgui/README.md b/packages/imgui/README.md index 50de42259e..cae220e6b9 100644 --- a/packages/imgui/README.md +++ b/packages/imgui/README.md @@ -270,7 +270,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------ | -------------------------------------------------- | ------------------------------------------------------------------------------- | +|:--------------------------------------------------------------------------------------------------------------------|:-------------------------------------------|:---------------------------------------------------|:--------------------------------------------------------------------------------| | | Interactive inverse FFT toy synth | [Demo](https://demo.thi.ng/umbrella/fft-synth/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/fft-synth) | | | Canvas based Immediate Mode GUI components | [Demo](https://demo.thi.ng/umbrella/imgui/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/imgui) | | | Minimal IMGUI usage example | [Demo](https://demo.thi.ng/umbrella/imgui-basics/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/imgui-basics) | diff --git a/packages/interceptors/README.md b/packages/interceptors/README.md index bfb25c6c67..a17d81e9a5 100644 --- a/packages/interceptors/README.md +++ b/packages/interceptors/README.md @@ -160,7 +160,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| -------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------- | --------------------------------------------------------- | -------------------------------------------------------------------------------------- | +|:---------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------|:----------------------------------------------------------|:---------------------------------------------------------------------------------------| | | Minimal demo using interceptors with an async side effect | [Demo](https://demo.thi.ng/umbrella/async-effect/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/async-effect) | | | Custom dropdown UI component w/ fuzzy search | [Demo](https://demo.thi.ng/umbrella/hdom-dropdown-fuzzy/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/hdom-dropdown-fuzzy) | | | Event handling w/ interceptors and side effects | [Demo](https://demo.thi.ng/umbrella/interceptor-basics/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/interceptor-basics) | diff --git a/packages/intervals/README.md b/packages/intervals/README.md index 1fbc9d9d06..be6067d3a0 100644 --- a/packages/intervals/README.md +++ b/packages/intervals/README.md @@ -78,7 +78,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| -------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------- | --------------------------------------------------- | -------------------------------------------------------------------------------- | +|:---------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------|:----------------------------------------------------|:---------------------------------------------------------------------------------| | | 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) | ## API diff --git a/packages/k-means/README.md b/packages/k-means/README.md index adeda8f13e..48df63985c 100644 --- a/packages/k-means/README.md +++ b/packages/k-means/README.md @@ -60,7 +60,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| ---------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------- | ----------------------------------------------------- | ---------------------------------------------------------------------------------- | +|:-----------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------|:------------------------------------------------------|:-----------------------------------------------------------------------------------| | | Color palette generation via dominant color extraction from uploaded images | [Demo](https://demo.thi.ng/umbrella/dominant-colors/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/dominant-colors) | ## API diff --git a/packages/layout/README.md b/packages/layout/README.md index 54bd60b8d4..e11f47c886 100644 --- a/packages/layout/README.md +++ b/packages/layout/README.md @@ -63,7 +63,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------ | -------------------------------------------------- | ------------------------------------------------------------------------------- | +|:--------------------------------------------------------------------------------------------------------------------|:-------------------------------------------|:---------------------------------------------------|:--------------------------------------------------------------------------------| | | Interactive inverse FFT toy synth | [Demo](https://demo.thi.ng/umbrella/fft-synth/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/fft-synth) | | | Canvas based Immediate Mode GUI components | [Demo](https://demo.thi.ng/umbrella/imgui/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/imgui) | | | Minimal IMGUI usage example | [Demo](https://demo.thi.ng/umbrella/imgui-basics/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/imgui-basics) | diff --git a/packages/math/README.md b/packages/math/README.md index 01844cd9fa..b4e6f58204 100644 --- a/packages/math/README.md +++ b/packages/math/README.md @@ -77,7 +77,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| ---------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------- | ----------------------------------------------------------- | ---------------------------------------------------------------------------------------- | +|:-----------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------|:------------------------------------------------------------|:-----------------------------------------------------------------------------------------| | | Basic crypto-currency candle chart with multiple moving averages plots | [Demo](https://demo.thi.ng/umbrella/crypto-chart/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/crypto-chart) | | | 2D Bezier curve-guided particle system | [Demo](https://demo.thi.ng/umbrella/hdom-canvas-particles/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/hdom-canvas-particles) | | | Animated sine plasma effect visualized using contour lines | [Demo](https://demo.thi.ng/umbrella/iso-plasma/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/iso-plasma) | diff --git a/packages/matrices/README.md b/packages/matrices/README.md index b7a7ba71ea..37104ab388 100644 --- a/packages/matrices/README.md +++ b/packages/matrices/README.md @@ -93,7 +93,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------- | ------------------------------------------------------ | ----------------------------------------------------------------------------------- | +|:------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------|:-------------------------------------------------------|:------------------------------------------------------------------------------------| | | 2D scenegraph & shape picking | [Demo](https://demo.thi.ng/umbrella/scenegraph/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/scenegraph) | | | 2D scenegraph & image map based geometry manipulation | [Demo](https://demo.thi.ng/umbrella/scenegraph-image/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/scenegraph-image) | | | Minimal shader graph developed during livestream #2 | [Demo](https://demo.thi.ng/umbrella/shader-graph/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/shader-graph) | diff --git a/packages/memoize/README.md b/packages/memoize/README.md index ef91bee503..4f4d23eb3f 100644 --- a/packages/memoize/README.md +++ b/packages/memoize/README.md @@ -76,7 +76,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| -------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------- | --------------------------------------------------------- | -------------------------------------------------------------------------------------- | +|:---------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------|:----------------------------------------------------------|:---------------------------------------------------------------------------------------| | | Basic rstream-gestures multi-touch demo | [Demo](https://demo.thi.ng/umbrella/multitouch/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/multitouch) | | | rstream based spreadsheet w/ S-expression formula DSL | [Demo](https://demo.thi.ng/umbrella/rstream-spreadsheet/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/rstream-spreadsheet) | diff --git a/packages/parse/README.md b/packages/parse/README.md index 71a4eaba39..c0646fdf68 100644 --- a/packages/parse/README.md +++ b/packages/parse/README.md @@ -100,7 +100,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------- | ------------------------------------------------------ | ----------------------------------------------------------------------------------- | +|:------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------|:-------------------------------------------------------|:------------------------------------------------------------------------------------| | | 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) | **Note:** Please also see the [dedicated wiki diff --git a/packages/paths/README.md b/packages/paths/README.md index 561921396d..2050f69704 100644 --- a/packages/paths/README.md +++ b/packages/paths/README.md @@ -100,7 +100,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| ------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | --------------------------------------------------------- | -------------------------------------------------------------------------------------- | +|:--------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------|:----------------------------------------------------------|:---------------------------------------------------------------------------------------| | | Using hdom in an Elm-like manner | [Demo](https://demo.thi.ng/umbrella/hdom-elm/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/hdom-elm) | | | Event handling w/ interceptors and side effects | [Demo](https://demo.thi.ng/umbrella/interceptor-basics2/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/interceptor-basics2) | | | Minimal demo of using rstream constructs to form an interceptor-style event loop | [Demo](https://demo.thi.ng/umbrella/rstream-event-loop/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/rstream-event-loop) | diff --git a/packages/pixel/README.md b/packages/pixel/README.md index dd5c69974f..86624a525e 100644 --- a/packages/pixel/README.md +++ b/packages/pixel/README.md @@ -344,7 +344,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| ------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------- | -------------------------------------------------------- | ------------------------------------------------------------------------------------- | +|:--------------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------|:---------------------------------------------------------|:--------------------------------------------------------------------------------------| | | Interactive image processing (adaptive threshold) | [Demo](https://demo.thi.ng/umbrella/adaptive-threshold/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/adaptive-threshold) | | | Color palette generation via dominant color extraction from uploaded images | [Demo](https://demo.thi.ng/umbrella/dominant-colors/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/dominant-colors) | | | Pixel buffer manipulations | [Demo](https://demo.thi.ng/umbrella/pixel-basics/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/pixel-basics) | diff --git a/packages/pointfree-lang/README.md b/packages/pointfree-lang/README.md index 1cc8f3c17d..3a95a696a0 100644 --- a/packages/pointfree-lang/README.md +++ b/packages/pointfree-lang/README.md @@ -98,10 +98,9 @@ directory are using this package. A selection: -| Screenshot | Description | Live| Source | -| | | demo| | -| -------------------------------------------------------------------------------------------------------------------- | -------------------------------- | --- | -------------------------------------------------------------------------------- | -| | Generate SVG using pointfree DSL | | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/pointfree-svg) | +| Screenshot | Description | Live demo | Source | +|:---------------------------------------------------------------------------------------------------------------------|:---------------------------------|:----------|:---------------------------------------------------------------------------------| +| | Generate SVG using pointfree DSL | | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/pointfree-svg) | ## Command line usage diff --git a/packages/pointfree/README.md b/packages/pointfree/README.md index 05d5a21069..ee5c520b08 100644 --- a/packages/pointfree/README.md +++ b/packages/pointfree/README.md @@ -224,10 +224,9 @@ directory are using this package. A selection: -| Screenshot | Description | Live| Source | -| | | demo| | -| -------------------------------------------------------------------------------------------------------------------- | -------------------------------- | --- | -------------------------------------------------------------------------------- | -| | Generate SVG using pointfree DSL | | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/pointfree-svg) | +| Screenshot | Description | Live demo | Source | +|:---------------------------------------------------------------------------------------------------------------------|:---------------------------------|:----------|:---------------------------------------------------------------------------------| +| | Generate SVG using pointfree DSL | | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/pointfree-svg) | ## API diff --git a/packages/poisson/README.md b/packages/poisson/README.md index aad4fc850c..60d4893ea4 100644 --- a/packages/poisson/README.md +++ b/packages/poisson/README.md @@ -86,7 +86,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| ----------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | ------------------------------------------------------ | ----------------------------------------------------------------------------------- | +|:------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------|:-------------------------------------------------------|:------------------------------------------------------------------------------------| | | Poisson-disk shape-aware sampling, Voronoi & Minimum Spanning Tree visualization | [Demo](https://demo.thi.ng/umbrella/geom-voronoi-mst/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/geom-voronoi-mst) | | | 2D Poisson-disc sampler with procedural gradient map | [Demo](https://demo.thi.ng/umbrella/poisson-circles/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/poisson-circles) | | | 2D Stratified grid sampling example | [Demo](https://demo.thi.ng/umbrella/stratified-grid/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/stratified-grid) | diff --git a/packages/porter-duff/README.md b/packages/porter-duff/README.md index db00809ac4..2c16a0de0e 100644 --- a/packages/porter-duff/README.md +++ b/packages/porter-duff/README.md @@ -84,7 +84,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| ---------------------------------------------------------------------------------------------------------------------- | -------------------------------------------- | -------------------------------------------------- | ------------------------------------------------------------------------------- | +|:-----------------------------------------------------------------------------------------------------------------------|:---------------------------------------------|:---------------------------------------------------|:--------------------------------------------------------------------------------| | | Pixel buffer manipulations | [Demo](https://demo.thi.ng/umbrella/pixel-basics/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/pixel-basics) | | | Port-Duff image compositing / alpha blending | [Demo](https://demo.thi.ng/umbrella/porter-duff/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/porter-duff) | diff --git a/packages/ramp/README.md b/packages/ramp/README.md index e60917b6b6..272a3b3b14 100644 --- a/packages/ramp/README.md +++ b/packages/ramp/README.md @@ -61,7 +61,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| ----------------------------------------------------------------------------------------------------------------- | ------------------------------------------- | ------------------------------------------------ | ----------------------------------------------------------------------------- | +|:------------------------------------------------------------------------------------------------------------------|:--------------------------------------------|:-------------------------------------------------|:------------------------------------------------------------------------------| | | Unison wavetable synth with waveform editor | [Demo](https://demo.thi.ng/umbrella/ramp-synth/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/ramp-synth) | ## API diff --git a/packages/random/README.md b/packages/random/README.md index 91efd57e83..ad5c5ef8cf 100644 --- a/packages/random/README.md +++ b/packages/random/README.md @@ -97,7 +97,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| --------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------- | ---------------------------------------------------- | --------------------------------------------------------------------------------- | +|:----------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------|:-----------------------------------------------------|:----------------------------------------------------------------------------------| | | Probabilistic color theme generator | [Demo](https://demo.thi.ng/umbrella/color-themes/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/color-themes) | | | Interactive inverse FFT toy synth | [Demo](https://demo.thi.ng/umbrella/fft-synth/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/fft-synth) | | | 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) | diff --git a/packages/rdom-canvas/README.md b/packages/rdom-canvas/README.md index 5247fecc16..032874167d 100644 --- a/packages/rdom-canvas/README.md +++ b/packages/rdom-canvas/README.md @@ -71,7 +71,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------------------------------------ | +|:-------------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------|:--------------------------------------------------------|:-------------------------------------------------------------------------------------| | | Interactive visualization of closest points on ellipses | [Demo](https://demo.thi.ng/umbrella/ellipse-proximity/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/ellipse-proximity) | | | rdom & hiccup-canvas interop test | [Demo](https://demo.thi.ng/umbrella/rdom-lissajous/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/rdom-lissajous) | diff --git a/packages/rdom-components/README.md b/packages/rdom-components/README.md index 81bb38de61..9ddcd0af1d 100644 --- a/packages/rdom-components/README.md +++ b/packages/rdom-components/README.md @@ -76,7 +76,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------- | ------------------------------------------------------ | ----------------------------------------------------------------------------------- | +|:------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------|:-------------------------------------------------------|:------------------------------------------------------------------------------------| | | Probabilistic color theme generator | [Demo](https://demo.thi.ng/umbrella/color-themes/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/color-themes) | | | 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) | diff --git a/packages/rdom/README.md b/packages/rdom/README.md index 37dcafc624..ca045b6fad 100644 --- a/packages/rdom/README.md +++ b/packages/rdom/README.md @@ -186,7 +186,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| ------------------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------------------------------------ | +|:-------------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------|:--------------------------------------------------------|:-------------------------------------------------------------------------------------| | | Probabilistic color theme generator | [Demo](https://demo.thi.ng/umbrella/color-themes/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/color-themes) | | | Color palette generation via dominant color extraction from uploaded images | [Demo](https://demo.thi.ng/umbrella/dominant-colors/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/dominant-colors) | | | Interactive visualization of closest points on ellipses | [Demo](https://demo.thi.ng/umbrella/ellipse-proximity/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/ellipse-proximity) | diff --git a/packages/resolve-map/README.md b/packages/resolve-map/README.md index c8cd6a48c5..6745df24ee 100644 --- a/packages/resolve-map/README.md +++ b/packages/resolve-map/README.md @@ -83,7 +83,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| ----------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------- | ------------------------------------------------------ | ----------------------------------------------------------------------------------- | +|:------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------|:-------------------------------------------------------|:------------------------------------------------------------------------------------| | | Filterable commit log UI w/ minimal server to provide commit history | [Demo](https://demo.thi.ng/umbrella/commit-table-ssr/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/commit-table-ssr) | | | Basic crypto-currency candle chart with multiple moving averages plots | [Demo](https://demo.thi.ng/umbrella/crypto-chart/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/crypto-chart) | diff --git a/packages/router/README.md b/packages/router/README.md index 9c9597ed8c..0140d6758f 100644 --- a/packages/router/README.md +++ b/packages/router/README.md @@ -80,7 +80,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| -------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------- | --------------------------------------------------- | -------------------------------------------------------------------------------- | +|:---------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------|:----------------------------------------------------|:---------------------------------------------------------------------------------| | | Complete mini SPA app w/ router & async content loading | [Demo](https://demo.thi.ng/umbrella/router-basics/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/router-basics) | ## API diff --git a/packages/rstream-gestures/README.md b/packages/rstream-gestures/README.md index c457ee173b..7e68a5518e 100644 --- a/packages/rstream-gestures/README.md +++ b/packages/rstream-gestures/README.md @@ -79,7 +79,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| ------------------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------------------------------------ | +|:-------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------|:--------------------------------------------------------|:-------------------------------------------------------------------------------------| | | Canvas based dial widget | [Demo](https://demo.thi.ng/umbrella/canvas-dial/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/canvas-dial) | | | Interactive visualization of closest points on ellipses | [Demo](https://demo.thi.ng/umbrella/ellipse-proximity/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/ellipse-proximity) | | | Doodle w/ K-nearest neighbor search result visualization | [Demo](https://demo.thi.ng/umbrella/geom-knn/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/geom-knn) | diff --git a/packages/rstream-graph/README.md b/packages/rstream-graph/README.md index 9f3b6e170a..447f462ff9 100644 --- a/packages/rstream-graph/README.md +++ b/packages/rstream-graph/README.md @@ -78,7 +78,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| -------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------- | --------------------------------------------------------- | -------------------------------------------------------------------------------------- | +|:---------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------|:----------------------------------------------------------|:---------------------------------------------------------------------------------------| | | Minimal rstream dataflow graph | [Demo](https://demo.thi.ng/umbrella/rstream-dataflow/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/rstream-dataflow) | | | Interactive grid generator, SVG generation & export, undo/redo support | [Demo](https://demo.thi.ng/umbrella/rstream-grid/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/rstream-grid) | | | rstream based spreadsheet w/ S-expression formula DSL | [Demo](https://demo.thi.ng/umbrella/rstream-spreadsheet/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/rstream-spreadsheet) | diff --git a/packages/rstream-query/README.md b/packages/rstream-query/README.md index 6769f7b3be..40b4ad60b3 100644 --- a/packages/rstream-query/README.md +++ b/packages/rstream-query/README.md @@ -99,7 +99,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------- | -------------------------------------------------- | ------------------------------------------------------------------------------- | +|:--------------------------------------------------------------------------------------------------------------------|:--------------------------------------------|:---------------------------------------------------|:--------------------------------------------------------------------------------| | | Triple store query results & sortable table | [Demo](https://demo.thi.ng/umbrella/triple-query/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/triple-query) | ## API diff --git a/packages/rstream/README.md b/packages/rstream/README.md index 949456e7fe..7a3f468202 100644 --- a/packages/rstream/README.md +++ b/packages/rstream/README.md @@ -213,7 +213,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| -------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | --------------------------------------------------------- | -------------------------------------------------------------------------------------- | +|:---------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------|:----------------------------------------------------------|:---------------------------------------------------------------------------------------| | | Interactive image processing (adaptive threshold) | [Demo](https://demo.thi.ng/umbrella/adaptive-threshold/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/adaptive-threshold) | | | Figlet-style bitmap font creation with transducers | [Demo](https://demo.thi.ng/umbrella/bitmap-font/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/bitmap-font) | | | Probabilistic color theme generator | [Demo](https://demo.thi.ng/umbrella/color-themes/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/color-themes) | diff --git a/packages/sax/README.md b/packages/sax/README.md index 43b742ce1c..d7984e135d 100644 --- a/packages/sax/README.md +++ b/packages/sax/README.md @@ -88,7 +88,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| -------------------------------------------------------------------------------------------------------------------- | ------------------------------------ | --------------------------------------------------- | -------------------------------------------------------------------------------- | +|:---------------------------------------------------------------------------------------------------------------------|:-------------------------------------|:----------------------------------------------------|:---------------------------------------------------------------------------------| | | XML/HTML/SVG to hiccup/JS conversion | [Demo](https://demo.thi.ng/umbrella/xml-converter/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/xml-converter) | ## API diff --git a/packages/scenegraph/README.md b/packages/scenegraph/README.md index 94b2e409e4..bd83a7d938 100644 --- a/packages/scenegraph/README.md +++ b/packages/scenegraph/README.md @@ -69,7 +69,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------- | ------------------------------------------------------ | ----------------------------------------------------------------------------------- | +|:------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------|:-------------------------------------------------------|:------------------------------------------------------------------------------------| | | 2D scenegraph & shape picking | [Demo](https://demo.thi.ng/umbrella/scenegraph/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/scenegraph) | | | 2D scenegraph & image map based geometry manipulation | [Demo](https://demo.thi.ng/umbrella/scenegraph-image/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/scenegraph-image) | | | Minimal shader graph developed during livestream #2 | [Demo](https://demo.thi.ng/umbrella/shader-graph/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/shader-graph) | diff --git a/packages/sexpr/README.md b/packages/sexpr/README.md index 3a5f1c8ff4..a27e811aa1 100644 --- a/packages/sexpr/README.md +++ b/packages/sexpr/README.md @@ -80,7 +80,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| -------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------- | --------------------------------------------------------- | -------------------------------------------------------------------------------------- | +|:---------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------|:----------------------------------------------------------|:---------------------------------------------------------------------------------------| | | rstream based spreadsheet w/ S-expression formula DSL | [Demo](https://demo.thi.ng/umbrella/rstream-spreadsheet/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/rstream-spreadsheet) | ## API diff --git a/packages/shader-ast-glsl/README.md b/packages/shader-ast-glsl/README.md index ca82d68f3c..cab1acf043 100644 --- a/packages/shader-ast-glsl/README.md +++ b/packages/shader-ast-glsl/README.md @@ -73,7 +73,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| ---------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------- | --------------------------------------------------------- | -------------------------------------------------------------------------------------- | +|:-----------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------|:----------------------------------------------------------|:---------------------------------------------------------------------------------------| | | 2D canvas shader emulation | [Demo](https://demo.thi.ng/umbrella/shader-ast-canvas2d/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/shader-ast-canvas2d) | | | HOF shader procedural noise function composition | [Demo](https://demo.thi.ng/umbrella/shader-ast-noise/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/shader-ast-noise) | | | WebGL & JS canvas2D raymarch shader cross-compilation | [Demo](https://demo.thi.ng/umbrella/shader-ast-raymarch/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/shader-ast-raymarch) | diff --git a/packages/shader-ast-js/README.md b/packages/shader-ast-js/README.md index 83c115bb81..91705754b3 100644 --- a/packages/shader-ast-js/README.md +++ b/packages/shader-ast-js/README.md @@ -91,7 +91,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| ---------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------- | --------------------------------------------------------- | -------------------------------------------------------------------------------------- | +|:-----------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------|:----------------------------------------------------------|:---------------------------------------------------------------------------------------| | | 2D canvas shader emulation | [Demo](https://demo.thi.ng/umbrella/shader-ast-canvas2d/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/shader-ast-canvas2d) | | | HOF shader procedural noise function composition | [Demo](https://demo.thi.ng/umbrella/shader-ast-noise/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/shader-ast-noise) | | | WebGL & JS canvas2D raymarch shader cross-compilation | [Demo](https://demo.thi.ng/umbrella/shader-ast-raymarch/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/shader-ast-raymarch) | diff --git a/packages/shader-ast-stdlib/README.md b/packages/shader-ast-stdlib/README.md index abaf0c9eba..a92304f43f 100644 --- a/packages/shader-ast-stdlib/README.md +++ b/packages/shader-ast-stdlib/README.md @@ -111,7 +111,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| ---------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------- | --------------------------------------------------------- | -------------------------------------------------------------------------------------- | +|:-----------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------|:----------------------------------------------------------|:---------------------------------------------------------------------------------------| | | 2D canvas shader emulation | [Demo](https://demo.thi.ng/umbrella/shader-ast-canvas2d/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/shader-ast-canvas2d) | | | Evolutionary shader generation using genetic programming | [Demo](https://demo.thi.ng/umbrella/shader-ast-evo/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/shader-ast-evo) | | | HOF shader procedural noise function composition | [Demo](https://demo.thi.ng/umbrella/shader-ast-noise/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/shader-ast-noise) | diff --git a/packages/shader-ast/README.md b/packages/shader-ast/README.md index 46bc369964..992998827f 100644 --- a/packages/shader-ast/README.md +++ b/packages/shader-ast/README.md @@ -206,7 +206,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| ---------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------- | --------------------------------------------------------- | -------------------------------------------------------------------------------------- | +|:-----------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------|:----------------------------------------------------------|:---------------------------------------------------------------------------------------| | | 2D canvas shader emulation | [Demo](https://demo.thi.ng/umbrella/shader-ast-canvas2d/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/shader-ast-canvas2d) | | | Evolutionary shader generation using genetic programming | [Demo](https://demo.thi.ng/umbrella/shader-ast-evo/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/shader-ast-evo) | | | HOF shader procedural noise function composition | [Demo](https://demo.thi.ng/umbrella/shader-ast-noise/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/shader-ast-noise) | diff --git a/packages/soa/README.md b/packages/soa/README.md index 696416c3ca..c0f1305d1b 100644 --- a/packages/soa/README.md +++ b/packages/soa/README.md @@ -93,7 +93,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| ------------------------------------------------------------------------------------------------------------------- | -------------------------------------------- | ------------------------------------------------ | ----------------------------------------------------------------------------- | +|:--------------------------------------------------------------------------------------------------------------------|:---------------------------------------------|:-------------------------------------------------|:------------------------------------------------------------------------------| | | Entity Component System w/ 100k 3D particles | [Demo](https://demo.thi.ng/umbrella/soa-ecs/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/soa-ecs) | | | WebGL multi-colored cube mesh | [Demo](https://demo.thi.ng/umbrella/webgl-cube/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/webgl-cube) | diff --git a/packages/strings/README.md b/packages/strings/README.md index 7f90caf6da..3fbcfa7c7d 100644 --- a/packages/strings/README.md +++ b/packages/strings/README.md @@ -151,7 +151,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| -------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------- | --------------------------------------------------------- | -------------------------------------------------------------------------------------- | +|:---------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------|:----------------------------------------------------------|:---------------------------------------------------------------------------------------| | | Basic crypto-currency candle chart with multiple moving averages plots | [Demo](https://demo.thi.ng/umbrella/crypto-chart/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/crypto-chart) | | | Basic SPA example with atom-based UI router | [Demo](https://demo.thi.ng/umbrella/login-form/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/login-form) | | | rstream based spreadsheet w/ S-expression formula DSL | [Demo](https://demo.thi.ng/umbrella/rstream-spreadsheet/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/rstream-spreadsheet) | diff --git a/packages/text-canvas/README.md b/packages/text-canvas/README.md index ccb35a908d..1c911fc33d 100644 --- a/packages/text-canvas/README.md +++ b/packages/text-canvas/README.md @@ -81,7 +81,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| ------------------------------------------------------------------------------------------------------------------------ | -------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------------------------------------ | +|:-------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------|:--------------------------------------------------------|:-------------------------------------------------------------------------------------| | | 3D wireframe textmode demo | [Demo](https://demo.thi.ng/umbrella/text-canvas/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/text-canvas) | | | Textmode image warping w/ 16bit color output | [Demo](https://demo.thi.ng/umbrella/text-canvas-image/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/text-canvas-image) | diff --git a/packages/transducers-binary/README.md b/packages/transducers-binary/README.md index 600a033b55..461f7213cb 100644 --- a/packages/transducers-binary/README.md +++ b/packages/transducers-binary/README.md @@ -81,7 +81,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------- | ------------------------------------------------------ | ----------------------------------------------------------------------------------- | +|:------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------|:-------------------------------------------------------|:------------------------------------------------------------------------------------| | | Figlet-style bitmap font creation with transducers | [Demo](https://demo.thi.ng/umbrella/bitmap-font/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/bitmap-font) | | | 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) | | | 1D Wolfram automata with OBJ point cloud export | [Demo](https://demo.thi.ng/umbrella/wolfram/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/wolfram) | diff --git a/packages/transducers-hdom/README.md b/packages/transducers-hdom/README.md index 6621f6ae01..7794640684 100644 --- a/packages/transducers-hdom/README.md +++ b/packages/transducers-hdom/README.md @@ -94,7 +94,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| ------------------------------------------------------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------- | --------------------------------------------------------- | -------------------------------------------------------------------------------------- | +|:-------------------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------|:----------------------------------------------------------|:---------------------------------------------------------------------------------------| | | Interactive image processing (adaptive threshold) | [Demo](https://demo.thi.ng/umbrella/adaptive-threshold/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/adaptive-threshold) | | | Figlet-style bitmap font creation with transducers | [Demo](https://demo.thi.ng/umbrella/bitmap-font/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/bitmap-font) | | | Basic crypto-currency candle chart with multiple moving averages plots | [Demo](https://demo.thi.ng/umbrella/crypto-chart/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/crypto-chart) | diff --git a/packages/transducers-stats/README.md b/packages/transducers-stats/README.md index 578a45d07a..48f6a5dc66 100644 --- a/packages/transducers-stats/README.md +++ b/packages/transducers-stats/README.md @@ -90,7 +90,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| ------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------- | -------------------------------------------------------- | ------------------------------------------------------------------------------------- | +|:--------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------|:---------------------------------------------------------|:--------------------------------------------------------------------------------------| | | Basic crypto-currency candle chart with multiple moving averages plots | [Demo](https://demo.thi.ng/umbrella/crypto-chart/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/crypto-chart) | | | Fork-join worker-based raymarch renderer | [Demo](https://demo.thi.ng/umbrella/shader-ast-workers/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/shader-ast-workers) | diff --git a/packages/transducers/README.md b/packages/transducers/README.md index 8171e830bc..15fc7c378e 100644 --- a/packages/transducers/README.md +++ b/packages/transducers/README.md @@ -169,7 +169,7 @@ yarn add @thi.ng/transducers ``` -Package sizes (gzipped, pre-treeshake): ESM: 8.53 KB / CJS: 9.12 KB / UMD: 8.28 KB +Package sizes (gzipped, pre-treeshake): ESM: 8.53 KB / CJS: 9.11 KB / UMD: 8.28 KB ## Dependencies @@ -191,7 +191,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| ------------------------------------------------------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------- | --------------------------------------------------------- | -------------------------------------------------------------------------------------- | +|:-------------------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------|:----------------------------------------------------------|:---------------------------------------------------------------------------------------| | | Interactive image processing (adaptive threshold) | [Demo](https://demo.thi.ng/umbrella/adaptive-threshold/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/adaptive-threshold) | | | Figlet-style bitmap font creation with transducers | [Demo](https://demo.thi.ng/umbrella/bitmap-font/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/bitmap-font) | | | 2D transducer based cellular automata | [Demo](https://demo.thi.ng/umbrella/cellular-automata/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/cellular-automata) | diff --git a/packages/vector-pools/README.md b/packages/vector-pools/README.md index 75f0e5d447..9b00edfbd7 100644 --- a/packages/vector-pools/README.md +++ b/packages/vector-pools/README.md @@ -89,7 +89,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| ----------------------------------------------------------------------------------------------------------------- | ------------------------------------------- | ------------------------------------------------ | ----------------------------------------------------------------------------- | +|:------------------------------------------------------------------------------------------------------------------|:--------------------------------------------|:-------------------------------------------------|:------------------------------------------------------------------------------| | | WebGL MSDF text rendering & particle system | [Demo](https://demo.thi.ng/umbrella/webgl-msdf/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/webgl-msdf) | ## API diff --git a/packages/vectors/README.md b/packages/vectors/README.md index fbcb909aec..0ac55f520b 100644 --- a/packages/vectors/README.md +++ b/packages/vectors/README.md @@ -191,7 +191,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| ------------------------------------------------------------------------------------------------------------------------------------ | -------------------------------------------------------------------- | ----------------------------------------------------------- | ---------------------------------------------------------------------------------------- | +|:-------------------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------|:------------------------------------------------------------|:-----------------------------------------------------------------------------------------| | | Canvas based dial widget | [Demo](https://demo.thi.ng/umbrella/canvas-dial/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/canvas-dial) | | | Interactive visualization of closest points on ellipses | [Demo](https://demo.thi.ng/umbrella/ellipse-proximity/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/ellipse-proximity) | | | Doodle w/ K-nearest neighbor search result visualization | [Demo](https://demo.thi.ng/umbrella/geom-knn/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/geom-knn) | diff --git a/packages/webgl-msdf/README.md b/packages/webgl-msdf/README.md index da08e8bb98..e7bec8d519 100644 --- a/packages/webgl-msdf/README.md +++ b/packages/webgl-msdf/README.md @@ -75,7 +75,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| ----------------------------------------------------------------------------------------------------------------- | ------------------------------------------- | ------------------------------------------------ | ----------------------------------------------------------------------------- | +|:------------------------------------------------------------------------------------------------------------------|:--------------------------------------------|:-------------------------------------------------|:------------------------------------------------------------------------------| | | WebGL MSDF text rendering & particle system | [Demo](https://demo.thi.ng/umbrella/webgl-msdf/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/webgl-msdf) | ## API diff --git a/packages/webgl-shadertoy/README.md b/packages/webgl-shadertoy/README.md index 84e294ccb5..3d6e836c99 100644 --- a/packages/webgl-shadertoy/README.md +++ b/packages/webgl-shadertoy/README.md @@ -67,7 +67,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| ---------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------- | ----------------------------------------------------- | ---------------------------------------------------------------------------------- | +|:-----------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------|:------------------------------------------------------|:-----------------------------------------------------------------------------------| | | Evolutionary shader generation using genetic programming | [Demo](https://demo.thi.ng/umbrella/shader-ast-evo/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/shader-ast-evo) | | | Shadertoy-like WebGL setup | [Demo](https://demo.thi.ng/umbrella/webgl-shadertoy/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/webgl-shadertoy) | diff --git a/packages/webgl/README.md b/packages/webgl/README.md index fbbb5ccf94..d72a5e7025 100644 --- a/packages/webgl/README.md +++ b/packages/webgl/README.md @@ -120,7 +120,7 @@ directory are using this package. A selection: | Screenshot | Description | Live demo | Source | -| ---------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------- | --------------------------------------------------------- | -------------------------------------------------------------------------------------- | +|:-----------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------|:----------------------------------------------------------|:---------------------------------------------------------------------------------------| | | Evolutionary shader generation using genetic programming | [Demo](https://demo.thi.ng/umbrella/shader-ast-evo/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/shader-ast-evo) | | | HOF shader procedural noise function composition | [Demo](https://demo.thi.ng/umbrella/shader-ast-noise/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/shader-ast-noise) | | | WebGL & JS canvas2D raymarch shader cross-compilation | [Demo](https://demo.thi.ng/umbrella/shader-ast-raymarch/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/shader-ast-raymarch) | From 932dda65f1e9e3529b86ddb358b689bd784125f3 Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Tue, 24 Aug 2021 15:18:59 +0200 Subject: [PATCH 33/76] build(markdown-table): fix/update deps --- packages/markdown-table/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/markdown-table/package.json b/packages/markdown-table/package.json index 1586e2d1f6..f377a6fa54 100644 --- a/packages/markdown-table/package.json +++ b/packages/markdown-table/package.json @@ -39,6 +39,7 @@ }, "dependencies": { "@thi.ng/api": "^7.1.9", + "@thi.ng/compose": "^1.4.35", "@thi.ng/strings": "^2.1.6", "@thi.ng/transducers": "^7.9.1" }, From 33b553a3b3f1531c25d04407539a7ea287e6093f Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Tue, 24 Aug 2021 17:17:52 +0200 Subject: [PATCH 34/76] docs: update pkg list main readme --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 2bd7bdbfbb..207c274cbb 100644 --- a/README.md +++ b/README.md @@ -144,6 +144,7 @@ feature or `develop` branches) | [`@thi.ng/geom-isoline`](./packages/geom-isoline) | [![version](https://img.shields.io/npm/v/@thi.ng/geom-isoline.svg)](https://www.npmjs.com/package/@thi.ng/geom-isoline) | [changelog](./packages/geom-isoline/CHANGELOG.md) | 2D contour line extraction | | [`@thi.ng/k-means`](./packages/k-means) | [![version](https://img.shields.io/npm/v/@thi.ng/k-means.svg)](https://www.npmjs.com/package/@thi.ng/k-means) | [changelog](./packages/k-means/CHANGELOG.md) | K-means clustering of n-D data | | [`@thi.ng/ksuid`](./packages/ksuid) | [![version](https://img.shields.io/npm/v/@thi.ng/ksuid.svg)](https://www.npmjs.com/package/@thi.ng/ksuid) | [changelog](./packages/ksuid/CHANGELOG.md) | K-sortable unique identifiers, binary & base-N encoded | +| [`@thi.ng/markdown-table`](./packages/markdown-table) | [![version](https://img.shields.io/npm/v/@thi.ng/markdown-table.svg)](https://www.npmjs.com/package/@thi.ng/markdown-table) | [changelog](./packages/markdown-table/CHANGELOG.md) | Markdown table generator / formatter | | [`@thi.ng/pixel`](./packages/pixel) | [![version](https://img.shields.io/npm/v/@thi.ng/pixel.svg)](https://www.npmjs.com/package/@thi.ng/pixel) | [changelog](./packages/pixel/CHANGELOG.md) | Multi-format pixel buffers | | [`@thi.ng/rdom`](./packages/rdom) | [![version](https://img.shields.io/npm/v/@thi.ng/rdom.svg)](https://www.npmjs.com/package/@thi.ng/rdom) | [changelog](./packages/rdom/CHANGELOG.md) | Reactive, diff-less, async UI components | | [`@thi.ng/rdom-components`](./packages/rdom-components) | [![version](https://img.shields.io/npm/v/@thi.ng/rdom-components.svg)](https://www.npmjs.com/package/@thi.ng/rdom-components) | [changelog](./packages/rdom-components/CHANGELOG.md) | Unstyled, customizable component collection | @@ -210,6 +211,7 @@ feature or `develop` branches) | [`@thi.ng/hiccup-markdown`](./packages/hiccup-markdown) | [![version](https://img.shields.io/npm/v/@thi.ng/hiccup-markdown.svg)](https://www.npmjs.com/package/@thi.ng/hiccup-markdown) | [changelog](./packages/hiccup-markdown/CHANGELOG.md) | Hiccup-to-Markdown serialization | | [`@thi.ng/hiccup-svg`](./packages/hiccup-svg) | [![version](https://img.shields.io/npm/v/@thi.ng/hiccup-svg.svg)](https://www.npmjs.com/package/@thi.ng/hiccup-svg) | [changelog](./packages/hiccup-svg/CHANGELOG.md) | hiccup based SVG vocab | | [`@thi.ng/iges`](./packages/iges) | [![version](https://img.shields.io/npm/v/@thi.ng/iges.svg)](https://www.npmjs.com/package/@thi.ng/iges) | [changelog](./packages/iges/CHANGELOG.md) | IGES format geometry serialization | +| [`@thi.ng/markdown-table`](./packages/markdown-table) | [![version](https://img.shields.io/npm/v/@thi.ng/markdown-table.svg)](https://www.npmjs.com/package/@thi.ng/markdown-table) | [changelog](./packages/markdown-table/CHANGELOG.md) | Markdown table generator / formatter | | [`@thi.ng/mime`](./packages/mime) | [![version](https://img.shields.io/npm/v/@thi.ng/mime.svg)](https://www.npmjs.com/package/@thi.ng/mime) | [changelog](./packages/mime/CHANGELOG.md) | File extension to MIME type mappings | | [`@thi.ng/pixel-io-netpbm`](./packages/pixel-io-netpbm) | [![version](https://img.shields.io/npm/v/@thi.ng/pixel-io-netpbm.svg)](https://www.npmjs.com/package/@thi.ng/pixel-io-netpbm) | [changelog](./packages/pixel-io-netpbm/CHANGELOG.md) | 1/8/16/24bit NetPBM image format reader/writer | | [`@thi.ng/prefixes`](./packages/prefixes) | [![version](https://img.shields.io/npm/v/@thi.ng/prefixes.svg)](https://www.npmjs.com/package/@thi.ng/prefixes) | [changelog](./packages/prefixes/CHANGELOG.md) | Linked Data, RDF & xmlns prefixes/URLs | From b6baa4829554847fef1e3980ed8f2767202d44f9 Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Tue, 24 Aug 2021 17:18:19 +0200 Subject: [PATCH 35/76] Publish - @thi.ng/base-n@1.0.5 - @thi.ng/color-palettes@0.3.0 - @thi.ng/ksuid@1.0.5 - @thi.ng/leb128@1.0.68 - @thi.ng/markdown-table@0.1.0 --- packages/base-n/CHANGELOG.md | 11 +++++++++++ packages/base-n/package.json | 2 +- packages/color-palettes/CHANGELOG.md | 12 ++++++++++++ packages/color-palettes/package.json | 2 +- packages/ksuid/CHANGELOG.md | 8 ++++++++ packages/ksuid/package.json | 4 ++-- packages/leb128/CHANGELOG.md | 8 ++++++++ packages/leb128/package.json | 2 +- packages/markdown-table/CHANGELOG.md | 11 +++++++++++ packages/markdown-table/package.json | 2 +- 10 files changed, 56 insertions(+), 6 deletions(-) create mode 100644 packages/markdown-table/CHANGELOG.md diff --git a/packages/base-n/CHANGELOG.md b/packages/base-n/CHANGELOG.md index 106493e618..5d8fbc129e 100644 --- a/packages/base-n/CHANGELOG.md +++ b/packages/base-n/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/base-n@1.0.4...@thi.ng/base-n@1.0.5) (2021-08-24) + + +### Bug Fixes + +* **base-n:** fix [#308](https://github.com/thi-ng/umbrella/issues/308), remove unintentional int cast ([27a0d7e](https://github.com/thi-ng/umbrella/commit/27a0d7e5052d6c40b247bfe4ef8c1611b9907a6a)) + + + + + # [0.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/base-n@0.1.8...@thi.ng/base-n@0.2.0) (2021-08-07) diff --git a/packages/base-n/package.json b/packages/base-n/package.json index b4b9bcbc71..a250e72be6 100644 --- a/packages/base-n/package.json +++ b/packages/base-n/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/base-n", - "version": "1.0.4", + "version": "1.0.5", "description": "Arbitrary base-n conversions w/ presets for base16/32/36/58/62/64/85, support for arrays & bigints", "module": "./index.js", "main": "./lib/index.js", diff --git a/packages/color-palettes/CHANGELOG.md b/packages/color-palettes/CHANGELOG.md index c9ad84f783..24589c8c5a 100644 --- a/packages/color-palettes/CHANGELOG.md +++ b/packages/color-palettes/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.3.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/color-palettes@0.2.0...@thi.ng/color-palettes@0.3.0) (2021-08-24) + + +### Features + +* **color-palettes:** add new palettes, update readme ([14f2952](https://github.com/thi-ng/umbrella/commit/14f29523554b82540bba020d52d6fffde8347348)) +* **color-palettes:** update/simplify swatch gen ([3187949](https://github.com/thi-ng/umbrella/commit/31879491ed4b59e4d91c818939f9c9beee980779)) + + + + + # [0.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/color-palettes@0.1.0...@thi.ng/color-palettes@0.2.0) (2021-08-22) diff --git a/packages/color-palettes/package.json b/packages/color-palettes/package.json index 0049f46459..e1c4552218 100644 --- a/packages/color-palettes/package.json +++ b/packages/color-palettes/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/color-palettes", - "version": "0.2.0", + "version": "0.3.0", "description": "Collection of 100 image based color palettes", "module": "./index.js", "main": "./lib/index.js", diff --git a/packages/ksuid/CHANGELOG.md b/packages/ksuid/CHANGELOG.md index e7f625106a..560e29a924 100644 --- a/packages/ksuid/CHANGELOG.md +++ b/packages/ksuid/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/ksuid@1.0.4...@thi.ng/ksuid@1.0.5) (2021-08-24) + +**Note:** Version bump only for package @thi.ng/ksuid + + + + + # [0.4.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/ksuid@0.3.0...@thi.ng/ksuid@0.4.0) (2021-08-07) diff --git a/packages/ksuid/package.json b/packages/ksuid/package.json index 22d66a7b19..359fa0e9cc 100644 --- a/packages/ksuid/package.json +++ b/packages/ksuid/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/ksuid", - "version": "1.0.4", + "version": "1.0.5", "description": "Configurable K-sortable unique IDs, ULIDs, binary & base-N encoded, 32/48/64bit time resolutions", "module": "./index.js", "main": "./lib/index.js", @@ -40,7 +40,7 @@ }, "dependencies": { "@thi.ng/api": "^7.1.9", - "@thi.ng/base-n": "^1.0.4", + "@thi.ng/base-n": "^1.0.5", "@thi.ng/random": "^2.4.7", "@thi.ng/strings": "^2.1.6" }, diff --git a/packages/leb128/CHANGELOG.md b/packages/leb128/CHANGELOG.md index d45d5109d1..c74e4a3e16 100644 --- a/packages/leb128/CHANGELOG.md +++ b/packages/leb128/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.68](https://github.com/thi-ng/umbrella/compare/@thi.ng/leb128@1.0.67...@thi.ng/leb128@1.0.68) (2021-08-24) + +**Note:** Version bump only for package @thi.ng/leb128 + + + + + ## [1.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/leb128@1.0.0...@thi.ng/leb128@1.0.1) (2019-11-30) ### Bug Fixes diff --git a/packages/leb128/package.json b/packages/leb128/package.json index b41a1422b3..fedf535188 100644 --- a/packages/leb128/package.json +++ b/packages/leb128/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/leb128", - "version": "1.0.67", + "version": "1.0.68", "description": "WASM based LEB128 encoder / decoder (signed & unsigned)", "module": "./index.js", "main": "./lib/index.js", diff --git a/packages/markdown-table/CHANGELOG.md b/packages/markdown-table/CHANGELOG.md new file mode 100644 index 0000000000..491f038e54 --- /dev/null +++ b/packages/markdown-table/CHANGELOG.md @@ -0,0 +1,11 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# 0.1.0 (2021-08-24) + + +### Features + +* **markdown-table:** import as new pkg ([4c8597e](https://github.com/thi-ng/umbrella/commit/4c8597ef271d5ccbd69e01b8abae3b0fa18e3ee3)) diff --git a/packages/markdown-table/package.json b/packages/markdown-table/package.json index f377a6fa54..b0ce3aa813 100644 --- a/packages/markdown-table/package.json +++ b/packages/markdown-table/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/markdown-table", - "version": "0.0.1", + "version": "0.1.0", "description": "Markdown table formatter/generator with support for column alignments", "module": "./index.js", "main": "./lib/index.js", From 1e59ef86708c1f2bf4cf5f9cab189ea4765d2405 Mon Sep 17 00:00:00 2001 From: "allcontributors[bot]" <46447321+allcontributors[bot]@users.noreply.github.com> Date: Tue, 24 Aug 2021 15:27:55 +0000 Subject: [PATCH 36/76] docs: update README.md [skip ci] --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 207c274cbb..6844d135ed 100644 --- a/README.md +++ b/README.md @@ -476,6 +476,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
Shakthi Prasad G S

🐛 💻
Robin Gower

🐛
Michael Latzoni

🐛 +
Z Yin

🐛 From fca00469122b37b12d8fa61ff94a7ad63fd91dbb Mon Sep 17 00:00:00 2001 From: "allcontributors[bot]" <46447321+allcontributors[bot]@users.noreply.github.com> Date: Tue, 24 Aug 2021 15:27:56 +0000 Subject: [PATCH 37/76] docs: update .all-contributorsrc [skip ci] --- .all-contributorsrc | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.all-contributorsrc b/.all-contributorsrc index 36fb10770c..294827480f 100644 --- a/.all-contributorsrc +++ b/.all-contributorsrc @@ -335,6 +335,15 @@ "contributions": [ "bug" ] + }, + { + "login": "ZYinMD", + "name": "Z Yin", + "avatar_url": "https://avatars.githubusercontent.com/u/32368482?v=4", + "profile": "https://github.com/ZYinMD", + "contributions": [ + "bug" + ] } ], "contributorsPerLine": 7, From a309faca831651f611b9b056d9c7587f85b60087 Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Thu, 26 Aug 2021 09:57:25 +0200 Subject: [PATCH 38/76] feat(api): add DeepArrayValue type --- packages/api/src/api/tuple.ts | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/packages/api/src/api/tuple.ts b/packages/api/src/api/tuple.ts index b7e1ea3b49..aff897cbf1 100644 --- a/packages/api/src/api/tuple.ts +++ b/packages/api/src/api/tuple.ts @@ -1,8 +1,23 @@ +import type { TypedArray } from "./typedarray"; + /** - * Returns an array's value type. + * Returns an array's value type. Assumes array is homogeneous (only type of + * first element will be considered). */ export type ArrayValue = T[0]; +/** + * Somewhat similar, but recursive version of {@link ArrayValue}. If `T` is an + * array/typedarray recursively descends into it or (if not an array) returns + * `T`. Assumes arrays at each level are homogeneous (only type of first + * elements will be considered). + */ +export type DeepArrayValue = T extends unknown[] + ? DeepArrayValue + : T extends TypedArray + ? number + : T; + /** * Defines a fixed sized, iterable tuple with elements of type `T` and * length `N`. @@ -47,13 +62,10 @@ export type Prepend = [T, ...U]; type ReverseReducer = { // case when we got 0 elements 0: C; - // case when we got 1 element 1: Prepend, C>; - // case when we got more than 1 element 2: ReverseReducer, Prepend, C>>; - // switch between cases }[Tail extends [] ? (Head extends never ? 0 : 1) : 2]; From bfbd7269fe506c0f40c109f1701a1ea50dc944e9 Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Fri, 27 Aug 2021 08:42:17 +0200 Subject: [PATCH 39/76] fix(transducers): fix #310, update flatten/flattenWith - fix `flatten()`/`flattenWith()` return types - update generics to allow specifying explicit result type, but use new `DeepArrayValue` mapped type as default - update `flattenWith()` predicate arg type to `any` since current restriction on top-level input type was (potentially) wrong for deeper levels. Also lift restriction and update pred's return type to `MaybeIterable` (for same reason). --- .../transducers/src/xform/flatten-with.ts | 24 +++++++++---------- packages/transducers/src/xform/flatten.ts | 11 +++++---- 2 files changed, 19 insertions(+), 16 deletions(-) diff --git a/packages/transducers/src/xform/flatten-with.ts b/packages/transducers/src/xform/flatten-with.ts index 9a2d2fa6e7..c90ef40db3 100644 --- a/packages/transducers/src/xform/flatten-with.ts +++ b/packages/transducers/src/xform/flatten-with.ts @@ -1,4 +1,4 @@ -import type { Fn, Nullable } from "@thi.ng/api"; +import type { DeepArrayValue, Fn, Nullable } from "@thi.ng/api"; import { isIterable, isString } from "@thi.ng/checks"; import type { Reducer, Transducer } from "../api"; import { compR } from "../func/compr"; @@ -36,20 +36,20 @@ type MaybeIterable = Nullable>; * @param fn - * @param src - */ -export function flattenWith( - fn: Fn> -): Transducer, T>; -export function flattenWith( - fn: Fn>, - src: Iterable> -): IterableIterator; -export function flattenWith( - fn: Fn>, - src?: Iterable> +export function flattenWith>( + fn: Fn> +): Transducer; +export function flattenWith>( + fn: Fn>, + src: Iterable +): IterableIterator; +export function flattenWith( + fn: Fn>, + src?: Iterable ): any { return isIterable(src) ? iterator(flattenWith(fn), isString(src) ? [src] : src) - : (rfn: Reducer) => { + : (rfn: Reducer) => { const reduce = rfn[2]; const flatten = (acc: any, x: any) => { const xx = fn(x); diff --git a/packages/transducers/src/xform/flatten.ts b/packages/transducers/src/xform/flatten.ts index 5f0337529f..99111ad0dc 100644 --- a/packages/transducers/src/xform/flatten.ts +++ b/packages/transducers/src/xform/flatten.ts @@ -1,3 +1,4 @@ +import type { DeepArrayValue } from "@thi.ng/api"; import { isNotStringAndIterable } from "@thi.ng/checks"; import type { Transducer } from "../api"; import { flattenWith } from "./flatten-with"; @@ -21,10 +22,12 @@ import { flattenWith } from "./flatten-with"; * * @param src - */ -export function flatten(): Transducer, T>; -export function flatten(src: Iterable>): IterableIterator; -export function flatten(src?: Iterable>): any { - return flattenWith( +export function flatten>(): Transducer; +export function flatten>( + src: Iterable +): IterableIterator; +export function flatten(src?: Iterable): any { + return flattenWith( (x) => (isNotStringAndIterable(x) ? x : undefined), src! ); From 9b36b844f35deb4bcc2fef622a7d4602b9e90f54 Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Fri, 27 Aug 2021 08:44:28 +0200 Subject: [PATCH 40/76] refactor(examples): add generics in wolfram ex --- examples/wolfram/src/index.ts | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/examples/wolfram/src/index.ts b/examples/wolfram/src/index.ts index 3ca22fb930..33145e6e66 100644 --- a/examples/wolfram/src/index.ts +++ b/examples/wolfram/src/index.ts @@ -105,8 +105,7 @@ const app = ({ id, ksize, sim }: any) => [ [ "a.link.blue", { - href: - "https://en.wikipedia.org/wiki/Elementary_cellular_automaton#Random_initial_state", + href: "https://en.wikipedia.org/wiki/Elementary_cellular_automaton#Random_initial_state", }, "Wikipedia", ], @@ -153,9 +152,7 @@ wolfram .transform(slidingWindow(WIDTH)) // sidechainToggle is only letting new values through if enabled by // objExport stream - .subscribe( - sidechainToggle(objExport, { initial: false }) - ) + .subscribe(sidechainToggle(objExport, { initial: false })) // actual OBJ conversion & export .transform( map((grid) => @@ -165,7 +162,7 @@ wolfram map(([[x, y]]) => `v ${x} ${y} 0`) ), str("\n"), - zip(range2d(WIDTH, WIDTH), flatten(grid)) + zip(range2d(WIDTH, WIDTH), flatten(grid)) ) ), map((obj: string) => From 65061fbd4990c50f44ddd20b80533c479b8ba36e Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Fri, 27 Aug 2021 22:50:11 +0200 Subject: [PATCH 41/76] feat(tools): add S3 upload for dependency tool --- tools/src/adjacency.ts | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/tools/src/adjacency.ts b/tools/src/adjacency.ts index d447929d06..c103024287 100644 --- a/tools/src/adjacency.ts +++ b/tools/src/adjacency.ts @@ -13,6 +13,7 @@ import { import { PI } from "@thi.ng/math"; import { XML_SVG } from "@thi.ng/prefixes"; import { comp, filter, iterator, map, range } from "@thi.ng/transducers"; +import { execSync } from "child_process"; import { writeFileSync } from "fs"; import { files, readJSON } from "./io"; import { shortName } from "./partials/package"; @@ -302,4 +303,12 @@ svg.addEventListener("touchstart", handleInteraction);`, }) ); -writeFileSync("deps.svg", serialize(doc)); +writeFileSync("assets/deps.svg", serialize(doc)); +execSync("gzip -9 -f assets/deps.svg"); + +console.log("uploading..."); +console.log( + execSync( + `aws s3 cp assets/deps.svg.gz s3://dependencies.thi.ng/index.svg --content-type image/svg+xml --content-encoding gzip --acl public-read --profile thing-umbrella` + ).toString() +); From d6507ad8a3821fd2839a6c0d34d7d254d81790de Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Sun, 29 Aug 2021 17:13:29 +0200 Subject: [PATCH 42/76] feat(vectors): add statistics related vector ops - add vmean(), vmedian() - add center(), standardize(), sd(), variance() --- packages/vectors/src/center.ts | 14 ++++++++++++++ packages/vectors/src/mean.ts | 14 ++++++++++++++ packages/vectors/src/median.ts | 16 ++++++++++++++++ packages/vectors/src/standardize.ts | 21 +++++++++++++++++++++ packages/vectors/src/variance.ts | 8 ++++++++ 5 files changed, 73 insertions(+) create mode 100644 packages/vectors/src/center.ts create mode 100644 packages/vectors/src/standardize.ts create mode 100644 packages/vectors/src/variance.ts diff --git a/packages/vectors/src/center.ts b/packages/vectors/src/center.ts new file mode 100644 index 0000000000..afa33a6c6d --- /dev/null +++ b/packages/vectors/src/center.ts @@ -0,0 +1,14 @@ +import type { ReadonlyVec, Vec } from "./api"; +import { vmean } from "./mean"; +import { subN } from "./subn"; + +/** + * Creates a mean-centered version of `a`, i.e. subtracts {@link vmean} of `a` + * from each component and writes result to `out` (or back into `a` iff `out` is + * null). + * + * @param out + * @param a + */ +export const center = (out: Vec | null, a: ReadonlyVec) => + subN(out, a, vmean(a)); diff --git a/packages/vectors/src/mean.ts b/packages/vectors/src/mean.ts index 8302f2604a..503f5d9b16 100644 --- a/packages/vectors/src/mean.ts +++ b/packages/vectors/src/mean.ts @@ -3,6 +3,7 @@ import type { ReadonlyVec, Vec } from "./api"; import { ensureInputs } from "./internal/ensure"; import { mulN } from "./muln"; import { set } from "./set"; +import { sum } from "./sum"; /** * Takes an array of vectors (of uniform dimensions) and computes the @@ -28,3 +29,16 @@ export const mean = (out: Vec | null, src: ReadonlyVec[]) => { } return mulN(out, out, 1 / src.length); }; + +/** + * Computes the mean of components of given vector. + * + * @example + * ```ts + * vmean([5, 10, 15, 20]) + * // 12.5 + * ``` + * + * @param a + */ +export const vmean = (a: ReadonlyVec) => sum(a) / a.length; diff --git a/packages/vectors/src/median.ts b/packages/vectors/src/median.ts index d66eb3ba6e..99ce1c0584 100644 --- a/packages/vectors/src/median.ts +++ b/packages/vectors/src/median.ts @@ -24,3 +24,19 @@ export const median = (out: Vec | null, src: ReadonlyVec[]) => { } return out; }; + +/** + * Computes the median component of given vector. + * + * @example + * ```ts + * vmean([10, 20, 5, 15]) + * // 10 + * ``` + * + * @param a + */ +export const vmedian = (a: ReadonlyVec) => { + a = [...a].sort((a, b) => a - b); + return a[a.length >> 1]; +}; diff --git a/packages/vectors/src/standardize.ts b/packages/vectors/src/standardize.ts new file mode 100644 index 0000000000..c8fa36bf5f --- /dev/null +++ b/packages/vectors/src/standardize.ts @@ -0,0 +1,21 @@ +import type { ReadonlyVec, Vec } from "./api"; +import { center } from "./center"; +import { magSq } from "./magsq"; +import { mulN } from "./muln"; + +/** + * Returns standardized version of `a`, i.e. `a' / sd(a')`, where `a'` is the + * {@link center}'ed version of `a`. + * + * @remarks + * If `mag(a')` is zero, the returned vector will have all components + * zero-valued too. + * + * @param out + * @param a + */ +export const standardize = (out: Vec | null, a: ReadonlyVec) => { + out = center(out, a); + const m = magSq(out); + return mulN(null, out, m > 0 ? 1 / Math.sqrt(m / (out.length - 1)) : 0); +}; diff --git a/packages/vectors/src/variance.ts b/packages/vectors/src/variance.ts new file mode 100644 index 0000000000..6d419b3636 --- /dev/null +++ b/packages/vectors/src/variance.ts @@ -0,0 +1,8 @@ +import type { ReadonlyVec } from "./api"; +import { center } from "./center"; +import { magSq } from "./magsq"; + +export const variance = (a: ReadonlyVec) => + magSq(center([], a)) / (a.length - 1); + +export const sd = (a: ReadonlyVec) => Math.sqrt(variance(a)); From 2bbb54ee322bd3b22f73e36d430c4477fd2a25cd Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Sun, 29 Aug 2021 18:53:54 +0200 Subject: [PATCH 43/76] feat(vectors): add formatter support - add ToStringOpts, defFormat(), FORMATTER - update AVec and GVec impls --- packages/vectors/src/api.ts | 26 +++++++++++ packages/vectors/src/gvec.ts | 5 +-- packages/vectors/src/internal/avec.ts | 5 +++ packages/vectors/src/string.ts | 63 +++++++++++++++++++++++++++ packages/vectors/src/vec2.ts | 4 -- packages/vectors/src/vec3.ts | 4 -- packages/vectors/src/vec4.ts | 4 -- 7 files changed, 96 insertions(+), 15 deletions(-) create mode 100644 packages/vectors/src/string.ts diff --git a/packages/vectors/src/api.ts b/packages/vectors/src/api.ts index 24ba28ca84..51b631a0f9 100644 --- a/packages/vectors/src/api.ts +++ b/packages/vectors/src/api.ts @@ -306,3 +306,29 @@ export const Z4: ReadonlyVec = Object.freeze([0, 0, 1, 0]); export const W4: ReadonlyVec = Object.freeze([0, 0, 0, 1]); export type Template = (syms: string[], i?: number) => string; + +export interface ToStringOpts { + /** + * Number of fractional digits + * + * @defaultValue 3 + */ + prec: number; + /** + * If given, each formatted vector component will be padded to given number + * of characters. + */ + width: number; + /** + * Inter-component delimiter. + * + * @defaultValue ", " + */ + delim: string; + /** + * Prefix/suffix wrapper strings. + * + * @defaultValue "[" and "]" + */ + wrap: ArrayLike; +} diff --git a/packages/vectors/src/gvec.ts b/packages/vectors/src/gvec.ts index 88f52b6f8a..c50c725a78 100644 --- a/packages/vectors/src/gvec.ts +++ b/packages/vectors/src/gvec.ts @@ -7,6 +7,7 @@ import { eqDeltaS } from "./eqdelta"; import { stridedValues } from "./internal/vec-utils"; import { zeroes } from "./setn"; import { setS } from "./sets"; +import { FORMATTER } from "./string"; const SYM_B = "buf"; const SYM_L = "length"; @@ -131,9 +132,7 @@ export const gvec = ( eqDeltaS(buf, o, size, eps, offset, 0, stride, 1); case SYM_STR: return () => - JSON.stringify([ - ...stridedValues(obj, size, offset, stride), - ]); + FORMATTER(stridedValues(obj, size, offset, stride)); default: const j = parseInt(id); return !isNaN(j) && j >= 0 && j < size diff --git a/packages/vectors/src/internal/avec.ts b/packages/vectors/src/internal/avec.ts index 6fbf47eb3b..4e345beadf 100644 --- a/packages/vectors/src/internal/avec.ts +++ b/packages/vectors/src/internal/avec.ts @@ -1,5 +1,6 @@ import type { NumericArray } from "@thi.ng/api"; import type { StridedVec } from "../api"; +import { FORMATTER } from "../string"; export abstract class AVec implements StridedVec { buf: NumericArray; @@ -15,4 +16,8 @@ export abstract class AVec implements StridedVec { abstract get length(): number; abstract [Symbol.iterator](): IterableIterator; + + toString() { + return FORMATTER(this); + } } diff --git a/packages/vectors/src/string.ts b/packages/vectors/src/string.ts new file mode 100644 index 0000000000..7fb549fb43 --- /dev/null +++ b/packages/vectors/src/string.ts @@ -0,0 +1,63 @@ +import { isFunction } from "@thi.ng/checks"; +import { float, floatFixedWidth, Stringer } from "@thi.ng/strings"; +import type { ToStringOpts } from "./api"; + +/** + * Returns a new generic vector formatter for given options (all optional). The + * returned function accepts a single vector(like) value and returns its + * formatted string representation. + * + * @remarks + * See {@link ToStringOpts} for further details. Also see {@link setFormat} to + * set default formatter. + * + * @example + * ```ts + * defFormat()([1, -2, 3]) + * // [1.000, -2.000, 3.000] + * + * defFormat({ width: 10, wrap: "||", delim: "|\n|" })([1, -2, 3]) + * // | 1.000| + * // | -2.000| + * // | 3.000| + * + * defFormat({ prec: 5, delim: " " })([1, -2, 3]) + * // [1.00000 -2.00000 3.00000] + * ``` + * + * @param prec + * @param width + */ +export const defFormat = ( + opts?: Partial +): Stringer> => { + const { prec, width, delim, wrap } = { + prec: 3, + delim: ", ", + wrap: "[]", + ...opts, + }; + const fmt = width ? floatFixedWidth(width, prec) : float(prec); + return (src) => { + let res: string[] = []; + for (let x of src) res.push(fmt(x)); + return `${wrap[0]}${res.join(delim)}${wrap[1]}`; + }; +}; + +/** + * Sets package-wide default vector formatter. See {@link defFormat}, + * {@link FORMATTER}. + * + * @param fmt + */ +export const setFormat = ( + fmt: Stringer> | Partial +) => { + FORMATTER = isFunction(fmt) ? fmt : defFormat(fmt); +}; + +/** + * Package-wide default vector formatter. + */ +export let FORMATTER: Stringer> = defFormat(); diff --git a/packages/vectors/src/vec2.ts b/packages/vectors/src/vec2.ts index e9b785e09c..476fc6330b 100644 --- a/packages/vectors/src/vec2.ts +++ b/packages/vectors/src/vec2.ts @@ -124,10 +124,6 @@ export class Vec2 extends AVec implements IHash, IVector { toJSON() { return [this.x, this.y]; } - - toString() { - return `[${this.x}, ${this.y}]`; - } } declareIndices(Vec2.prototype, ["x", "y"]); diff --git a/packages/vectors/src/vec3.ts b/packages/vectors/src/vec3.ts index fefd28106a..b8e9f78095 100644 --- a/packages/vectors/src/vec3.ts +++ b/packages/vectors/src/vec3.ts @@ -127,10 +127,6 @@ export class Vec3 extends AVec implements IHash, IVector { toJSON() { return [this.x, this.y, this.z]; } - - toString() { - return `[${this.x}, ${this.y}, ${this.z}]`; - } } declareIndices(Vec3.prototype, ["x", "y", "z"]); diff --git a/packages/vectors/src/vec4.ts b/packages/vectors/src/vec4.ts index 9d7ea6cd1c..ce9a71476d 100644 --- a/packages/vectors/src/vec4.ts +++ b/packages/vectors/src/vec4.ts @@ -128,10 +128,6 @@ export class Vec4 extends AVec implements IHash, IVector { toJSON() { return [this.x, this.y, this.z, this.w]; } - - toString() { - return `[${this.x}, ${this.y}, ${this.z}, ${this.w}]`; - } } declareIndices(Vec4.prototype, ["x", "y", "z", "w"]); From 9c34793950e9cb831dee46d5dbbc19b0dfb982df Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Sun, 29 Aug 2021 21:56:16 +0200 Subject: [PATCH 44/76] feat(vectors): add generic strided dot product - add `dotS()` for arbitrary sized strided vectors --- packages/vectors/src/dots.ts | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/packages/vectors/src/dots.ts b/packages/vectors/src/dots.ts index c94f8bfff8..b42b55d882 100644 --- a/packages/vectors/src/dots.ts +++ b/packages/vectors/src/dots.ts @@ -1,7 +1,21 @@ -import type { VecOpSRoVV } from "./api"; +import type { ReadonlyVec, VecOpSRoVV } from "./api"; import { compile, SARGS_V } from "./internal/codegen"; import { DOT } from "./internal/templates"; +export const dotS = ( + a: ReadonlyVec, + b: ReadonlyVec, + n: number, + ia = 0, + ib = 0, + sa = 1, + sb = 1 +) => { + let sum = 0; + for (; --n >= 0; ia += sa, ib += sb) sum += a[ia] * b[ib]; + return sum; +}; + const $ = (dim: number): VecOpSRoVV => compile(dim, DOT, `o,a,${SARGS_V}`, "o,a", "", "+", "return ", ";", true); From b8d661dadebb725868fe48650e6461567706e47b Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Sun, 29 Aug 2021 21:59:24 +0200 Subject: [PATCH 45/76] feat(vectors): add covariance(), correlation() fns --- packages/vectors/src/correlation.ts | 30 +++++++++++++++++++++++++++++ packages/vectors/src/covariance.ts | 18 +++++++++++++++++ 2 files changed, 48 insertions(+) create mode 100644 packages/vectors/src/correlation.ts create mode 100644 packages/vectors/src/covariance.ts diff --git a/packages/vectors/src/correlation.ts b/packages/vectors/src/correlation.ts new file mode 100644 index 0000000000..9321f931c6 --- /dev/null +++ b/packages/vectors/src/correlation.ts @@ -0,0 +1,30 @@ +import type { ReadonlyVec } from "./api"; +import { center } from "./center"; +import { mag } from "./mag"; +import { mul } from "./mul"; +import { sum } from "./sum"; + +/** + * Computes the Pearson correlation coefficient between `a` and `b`. Returns + * `undefined` if the denominator (see below) is zero. + * + * @remarks + * ```text + * sum(a' * b') / (mag(a') * mag(b')) + * ``` + * + * ...where `a'` and `b'` are {@link center}'ed versions of given input vectors. + * + * References: + * - https://en.wikipedia.org/wiki/Correlation + * - https://www.youtube.com/watch?v=2bcmklvrXTQ + * + * @param a + * @param b + */ +export const correlation = (a: ReadonlyVec, b: ReadonlyVec) => { + a = center([], a); + b = center([], b); + const m = mag(a) * mag(b); + return m !== 0 ? sum(mul(null, a, b)) / m : undefined; +}; diff --git a/packages/vectors/src/covariance.ts b/packages/vectors/src/covariance.ts new file mode 100644 index 0000000000..78ccfdcb24 --- /dev/null +++ b/packages/vectors/src/covariance.ts @@ -0,0 +1,18 @@ +import type { ReadonlyVec } from "./api"; +import { center } from "./center"; +import { mul } from "./mul"; +import { sum } from "./sum"; + +/** + * Computes the covariance coefficient between the two given vectors. + * + * @remarks + * References: + * - https://en.wikipedia.org/wiki/Covariance + * - https://www.youtube.com/watch?v=2bcmklvrXTQ + * + * @param a + * @param b + */ +export const covariance = (a: ReadonlyVec, b: ReadonlyVec) => + sum(mul(null, center([], a), center([], b))) / (a.length - 1); From 92e7f730741b09018dae92e4428fe635b02125ab Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Sun, 29 Aug 2021 22:00:55 +0200 Subject: [PATCH 46/76] feat(vectors): add new module re-exports --- packages/vectors/src/index.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/packages/vectors/src/index.ts b/packages/vectors/src/index.ts index 62fa627d54..d137abb9fa 100644 --- a/packages/vectors/src/index.ts +++ b/packages/vectors/src/index.ts @@ -33,14 +33,17 @@ export * from "./bit-xor"; export * from "./buffer"; export * from "./cartesian"; export * from "./ceil"; +export * from "./center"; export * from "./clamp"; export * from "./clampn"; export * from "./clockwise"; export * from "./compare"; export * from "./convert"; export * from "./copy"; +export * from "./correlation"; export * from "./cos"; export * from "./cosh"; +export * from "./covariance"; export * from "./cross"; export * from "./crosss"; export * from "./degrees"; @@ -170,6 +173,8 @@ export * from "./some"; export * from "./sqrt"; export * from "./step"; export * from "./smoothstep"; +export * from "./standardize"; +export * from "./string"; export * from "./sub"; export * from "./subi"; export * from "./subm"; @@ -185,6 +190,7 @@ export * from "./tan"; export * from "./tanh"; export * from "./tensor"; export * from "./trunc"; +export * from "./variance"; export * from "./vec-of"; export * from "./wrap"; From cbd95760715d8fbd1d2b974f87c0cf80db08bbb5 Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Mon, 30 Aug 2021 23:45:44 +0200 Subject: [PATCH 47/76] feat(vectors): add strided versions of various ops - add/update codegen for strided vector ops: - add assembleS(), compileS() - update defOpS() / defHopOpS() - add new supporting fn types for strided ops - add magS() - add normalizeS() - add randomS(), randNormS(), randMinMaxS() - add arbitrary size impls to various other strided vector ops --- packages/vectors/src/addmns.ts | 10 +- packages/vectors/src/addms.ts | 7 +- packages/vectors/src/addns.ts | 7 +- packages/vectors/src/adds.ts | 6 +- packages/vectors/src/api.ts | 131 +++++++++++++++++++++++ packages/vectors/src/divns.ts | 7 +- packages/vectors/src/divs.ts | 6 +- packages/vectors/src/internal/codegen.ts | 71 +++++++++--- packages/vectors/src/maddns.ts | 10 +- packages/vectors/src/madds.ts | 7 +- packages/vectors/src/mags.ts | 7 +- packages/vectors/src/mixns.ts | 7 +- packages/vectors/src/mixs.ts | 7 +- packages/vectors/src/msubns.ts | 10 +- packages/vectors/src/msubs.ts | 7 +- packages/vectors/src/mulns.ts | 7 +- packages/vectors/src/muls.ts | 6 +- packages/vectors/src/normalizes.ts | 37 ++++++- packages/vectors/src/randoms.ts | 75 +++++++++---- packages/vectors/src/setns.ts | 7 +- packages/vectors/src/sets.ts | 22 +--- packages/vectors/src/submns.ts | 10 +- packages/vectors/src/subms.ts | 7 +- packages/vectors/src/subns.ts | 7 +- packages/vectors/src/subs.ts | 6 +- 25 files changed, 363 insertions(+), 121 deletions(-) diff --git a/packages/vectors/src/addmns.ts b/packages/vectors/src/addmns.ts index faec7d545e..fd9bf1681a 100644 --- a/packages/vectors/src/addmns.ts +++ b/packages/vectors/src/addmns.ts @@ -1,8 +1,8 @@ -import type { VecOpSVNV } from "./api"; +import type { VecOpSGVNV, VecOpSVNV } from "./api"; import { ARGS_VVN, defOpS, SARGS_VV } from "./internal/codegen"; import { MATH2_N } from "./internal/templates"; -export const [addmNS2, addmNS3, addmNS4] = defOpS( - MATH2_N("+", "*"), - `${ARGS_VVN},${SARGS_VV}` -); +export const [addmNS, addmNS2, addmNS3, addmNS4] = defOpS< + VecOpSGVNV, + VecOpSVNV +>(MATH2_N("+", "*"), ARGS_VVN, SARGS_VV); diff --git a/packages/vectors/src/addms.ts b/packages/vectors/src/addms.ts index 6139883035..5d3f44c9f0 100644 --- a/packages/vectors/src/addms.ts +++ b/packages/vectors/src/addms.ts @@ -1,9 +1,10 @@ -import type { VecOpSVVV } from "./api"; +import type { VecOpSGVVV, VecOpSVVV } from "./api"; import { ARGS_VVV, defOpS, SARGS_VVV } from "./internal/codegen"; import { MATH2 } from "./internal/templates"; -export const [addmS2, addmS3, addmS4] = defOpS( +export const [addmS, addmS2, addmS3, addmS4] = defOpS( MATH2("+", "*"), - `${ARGS_VVV},${SARGS_VVV}`, + ARGS_VVV, + SARGS_VVV, ARGS_VVV ); diff --git a/packages/vectors/src/addns.ts b/packages/vectors/src/addns.ts index 7b148b8926..a53b3128b8 100644 --- a/packages/vectors/src/addns.ts +++ b/packages/vectors/src/addns.ts @@ -1,9 +1,10 @@ -import type { VecOpSVN } from "./api"; +import type { VecOpSGVN, VecOpSVN } from "./api"; import { ARGS_V, ARGS_VN, defOpS, SARGS_V } from "./internal/codegen"; import { MATH_N } from "./internal/templates"; -export const [addNS2, addNS3, addNS4] = defOpS( +export const [addNS, addNS2, addNS3, addNS4] = defOpS( MATH_N("+"), - `${ARGS_VN},${SARGS_V}`, + ARGS_VN, + SARGS_V, ARGS_V ); diff --git a/packages/vectors/src/adds.ts b/packages/vectors/src/adds.ts index 56f0a0335c..c278e57f51 100644 --- a/packages/vectors/src/adds.ts +++ b/packages/vectors/src/adds.ts @@ -1,5 +1,7 @@ -import type { VecOpSVV } from "./api"; +import type { VecOpSGVV, VecOpSVV } from "./api"; import { defOpS } from "./internal/codegen"; import { MATH } from "./internal/templates"; -export const [addS2, addS3, addS4] = defOpS(MATH("+")); +export const [addS, addS2, addS3, addS4] = defOpS( + MATH("+") +); diff --git a/packages/vectors/src/api.ts b/packages/vectors/src/api.ts index 51b631a0f9..0245cd71e0 100644 --- a/packages/vectors/src/api.ts +++ b/packages/vectors/src/api.ts @@ -133,6 +133,15 @@ export type VecOpSV = ( so?: number, sa?: number ) => Vec; +export type VecOpSGV = ( + out: Vec | null, + a: ReadonlyVec, + num: number, + io?: number, + ia?: number, + so?: number, + sa?: number +) => Vec; export type VecOpSVN = ( out: Vec | null, @@ -143,6 +152,16 @@ export type VecOpSVN = ( so?: number, sa?: number ) => Vec; +export type VecOpSGVN = ( + out: Vec | null, + a: ReadonlyVec, + n: number, + num: number, + io?: number, + ia?: number, + so?: number, + sa?: number +) => Vec; export type VecOpSVV = ( out: Vec | null, @@ -155,6 +174,18 @@ export type VecOpSVV = ( sa?: number, sb?: number ) => Vec; +export type VecOpSGVV = ( + out: Vec | null, + a: ReadonlyVec, + b: ReadonlyVec, + num: number, + io?: number, + ia?: number, + ib?: number, + so?: number, + sa?: number, + sb?: number +) => Vec; export type VecOpSVNV = ( out: Vec | null, @@ -168,6 +199,19 @@ export type VecOpSVNV = ( sa?: number, sb?: number ) => Vec; +export type VecOpSGVNV = ( + out: Vec | null, + a: ReadonlyVec, + n: number, + b: ReadonlyVec, + num: number, + io?: number, + ia?: number, + ib?: number, + so?: number, + sa?: number, + sb?: number +) => Vec; export type VecOpSVVN = ( out: Vec | null, @@ -181,6 +225,19 @@ export type VecOpSVVN = ( sa?: number, sb?: number ) => Vec; +export type VecOpSGVVN = ( + out: Vec | null, + a: ReadonlyVec, + b: ReadonlyVec, + n: number, + num: number, + io?: number, + ia?: number, + ib?: number, + so?: number, + sa?: number, + sb?: number +) => Vec; export type VecOpSVVV = ( out: Vec | null, @@ -196,8 +253,29 @@ export type VecOpSVVV = ( sb?: number, sc?: number ) => Vec; +export type VecOpSGVVV = ( + out: Vec | null, + a: ReadonlyVec, + b: ReadonlyVec, + c: ReadonlyVec, + num: number, + io?: number, + ia?: number, + ib?: number, + ic?: number, + so?: number, + sa?: number, + sb?: number, + sc?: number +) => Vec; export type VecOpSRoV = (a: ReadonlyVec, ia?: number, sa?: number) => T; +export type VecOpSGRoV = ( + a: ReadonlyVec, + num: number, + ia?: number, + sa?: number +) => T; export type VecOpSRoVV = ( a: ReadonlyVec, @@ -217,6 +295,16 @@ export type VecOpSVO = ( so?: number, sa?: number ) => Vec; +export type VecOpSGVO = ( + out: Vec | null, + a: ReadonlyVec, + num: number, + b?: T, + io?: number, + ia?: number, + so?: number, + sa?: number +) => Vec; export type VecOpSOO = ( a: Vec | null, @@ -225,6 +313,14 @@ export type VecOpSOO = ( ia?: number, sa?: number ) => Vec; +export type VecOpSGOO = ( + a: Vec | null, + num: number, + opt1?: A, + opt2?: B, + ia?: number, + sa?: number +) => Vec; export type VecOpSOOO = ( a: Vec | null, @@ -234,6 +330,41 @@ export type VecOpSOOO = ( ia?: number, sa?: number ) => Vec; +export type VecOpSGOOO = ( + a: Vec | null, + num: number, + opt1?: A, + opt2?: B, + opt3?: C, + ia?: number, + sa?: number +) => Vec; + +export type VecOpSVVO = ( + out: Vec | null, + a: ReadonlyVec, + b: ReadonlyVec, + opt?: O, + io?: number, + ia?: number, + ib?: number, + so?: number, + sa?: number, + sb?: number +) => Vec; +export type VecOpSGVVO = ( + out: Vec | null, + a: ReadonlyVec, + b: ReadonlyVec, + num: number, + opt?: O, + io?: number, + ia?: number, + ib?: number, + so?: number, + sa?: number, + sb?: number +) => Vec; export type MultiVecOpImpl = T & MultiVecOp; diff --git a/packages/vectors/src/divns.ts b/packages/vectors/src/divns.ts index d273a85096..650afc2e8b 100644 --- a/packages/vectors/src/divns.ts +++ b/packages/vectors/src/divns.ts @@ -1,9 +1,10 @@ -import type { VecOpSVN } from "./api"; +import type { VecOpSGVN, VecOpSVN } from "./api"; import { ARGS_V, ARGS_VN, defOpS, SARGS_V } from "./internal/codegen"; import { MATH_N } from "./internal/templates"; -export const [divNS2, divNS3, divNS4] = defOpS( +export const [divNS, divNS2, divNS3, divNS4] = defOpS( MATH_N("/"), - `${ARGS_VN},${SARGS_V}`, + ARGS_VN, + SARGS_V, ARGS_V ); diff --git a/packages/vectors/src/divs.ts b/packages/vectors/src/divs.ts index fe1cc51240..f52db58bd5 100644 --- a/packages/vectors/src/divs.ts +++ b/packages/vectors/src/divs.ts @@ -1,5 +1,7 @@ -import type { VecOpSVV } from "./api"; +import type { VecOpSGVV, VecOpSVV } from "./api"; import { defOpS } from "./internal/codegen"; import { MATH } from "./internal/templates"; -export const [divS2, divS3, divS4] = defOpS(MATH("/")); +export const [divS, divS2, divS3, divS4] = defOpS( + MATH("/") +); diff --git a/packages/vectors/src/internal/codegen.ts b/packages/vectors/src/internal/codegen.ts index c3e565aef0..a27981e382 100644 --- a/packages/vectors/src/internal/codegen.ts +++ b/packages/vectors/src/internal/codegen.ts @@ -159,6 +159,21 @@ const assembleG = ( ret !== null ? `return ${ret};` : "", ]; +const assembleS = ( + tpl: Template, + syms = ARGS_VV, + ret = "o", + pre = DEFAULT_OUT, + post?: string +) => [ + pre, + "while(k-->0) {", + tpl(syms.split(",").map((x) => `${x}[i${x}+k*s${x}]`)), + "}", + post, + ret !== null ? `return ${ret};` : "", +]; + /** @internal */ export const defaultOut: FnU2 = (o, args) => `!${o} && (${o}=${args.split(",")[1]});`; @@ -228,6 +243,16 @@ export const compileG = ( ) ); +/** @internal */ +export const compileS = ( + tpl: Template, + args: string, + syms = args, + ret?: string, + pre?: string, + post?: string +) => new Function(args, assembleS(tpl, syms, ret, pre, post).join("")); + /** @internal */ export const compileGHOF = ( fns: any[], @@ -254,14 +279,14 @@ export const compileGHOF = ( )(...fns) ); -export const defOp = ( +export const defOp = ( tpl: Template, args = ARGS_VV, syms?: string, ret = "o", dispatch = 1, pre?: string -): [M, V, V, V] => { +): [MULTI, ...FIXED[]] => { syms = syms || args; pre = pre != null ? pre : defaultOut(ret, args); const fn: any = vop(dispatch); @@ -271,9 +296,10 @@ export const defOp = ( return [fn, $(2), $(3), $(4)]; }; -export const defFnOp = (op: string) => defOp(FN(op), ARGS_V); +export const defFnOp = (op: string) => + defOp(FN(op), ARGS_V); -export const defHofOp = ( +export const defHofOp = ( op: any, tpl?: Template, args = ARGS_V, @@ -281,7 +307,7 @@ export const defHofOp = ( ret = "o", dispatch = 1, pre?: string -): [M, V, V, V] => { +): [MULTI, ...FIXED[]] => { const _tpl = tpl || FN("op"); syms = syms || args; pre = pre != null ? pre : defaultOut(ret, args); @@ -292,19 +318,21 @@ export const defHofOp = ( return [fn, $(2), $(3), $(4)]; }; -export const defOpS = ( +export const defOpS = ( tpl: Template, - args = `${ARGS_VV},${SARGS_VV}`, + args = ARGS_VV, + idxArgs = SARGS_VV, syms = ARGS_VV, ret = "o", pre?: string, sizes = [2, 3, 4] -): V[] => - sizes.map((dim) => +): [GENERIC, ...FIXED[]] => [ + compileS(tpl, `${args},k,${idxArgs}`, syms, ret, pre), + ...sizes.map((dim) => compile( dim, tpl, - args, + `${args},${idxArgs}`, syms, ret, "", @@ -312,24 +340,32 @@ export const defOpS = ( "", true ) - ); + ), +]; -export const defHofOpS = ( +export const defHofOpS = ( op: any, tpl: Template, - args = `${ARGS_VV},${SARGS_VV}`, + args = ARGS_VV, + idxArgs = SARGS_VV, syms = ARGS_VV, ret = "o", pre?: string, sizes = [2, 3, 4] -): V[] => - sizes.map((dim) => +): [GENERIC, ...FIXED[]] => [ + new Function( + "op", + `return (${args},k,${idxArgs})=>{${assembleS(tpl, syms, ret, pre).join( + "" + )}}` + )(op), + ...sizes.map((dim) => compileHOF( dim, [op], tpl, "op", - args, + `${args},${idxArgs}`, syms, ret, "", @@ -337,7 +373,8 @@ export const defHofOpS = ( "", true ) - ); + ), +]; export const defMathOp = (op: string) => defOp(MATH(op)); diff --git a/packages/vectors/src/maddns.ts b/packages/vectors/src/maddns.ts index 6a38683795..7955b9525a 100644 --- a/packages/vectors/src/maddns.ts +++ b/packages/vectors/src/maddns.ts @@ -1,8 +1,8 @@ -import type { VecOpSVNV } from "./api"; +import type { VecOpSGVNV, VecOpSVNV } from "./api"; import { ARGS_VNV, defOpS, SARGS_VV } from "./internal/codegen"; import { MATH2A_N } from "./internal/templates"; -export const [maddNS2, maddNS3, maddNS4] = defOpS( - MATH2A_N("*", "+"), - `${ARGS_VNV},${SARGS_VV}` -); +export const [maddNS, maddNS2, maddNS3, maddNS4] = defOpS< + VecOpSGVNV, + VecOpSVNV +>(MATH2A_N("*", "+"), ARGS_VNV, SARGS_VV); diff --git a/packages/vectors/src/madds.ts b/packages/vectors/src/madds.ts index 7a46d00f0a..d47b83440a 100644 --- a/packages/vectors/src/madds.ts +++ b/packages/vectors/src/madds.ts @@ -1,9 +1,10 @@ -import type { VecOpSVVV } from "./api"; +import type { VecOpSGVVV, VecOpSVVV } from "./api"; import { ARGS_VVV, defOpS, SARGS_VVV } from "./internal/codegen"; import { MATH2 } from "./internal/templates"; -export const [maddS2, maddS3, maddS4] = defOpS( +export const [maddS, maddS2, maddS3, maddS4] = defOpS( MATH2("*", "+"), - `${ARGS_VVV},${SARGS_VVV}`, + ARGS_VVV, + SARGS_VVV, ARGS_VVV ); diff --git a/packages/vectors/src/mags.ts b/packages/vectors/src/mags.ts index b48b0b8703..41748b4b68 100644 --- a/packages/vectors/src/mags.ts +++ b/packages/vectors/src/mags.ts @@ -1,5 +1,8 @@ -import type { VecOpSRoV } from "./api"; -import { dotS2, dotS3, dotS4 } from "./dots"; +import type { VecOpSGRoV, VecOpSRoV } from "./api"; +import { dotS, dotS2, dotS3, dotS4 } from "./dots"; + +export const magS: VecOpSGRoV = (a, num, ia, sa) => + Math.sqrt(dotS(a, a, num, ia, ia, sa, sa)); export const magS2: VecOpSRoV = (a, ia, sa) => Math.sqrt(dotS2(a, a, ia, ia, sa, sa)); diff --git a/packages/vectors/src/mixns.ts b/packages/vectors/src/mixns.ts index 074a790d2b..48800ff61d 100644 --- a/packages/vectors/src/mixns.ts +++ b/packages/vectors/src/mixns.ts @@ -1,8 +1,9 @@ -import type { VecOpSVVN } from "./api"; +import type { VecOpSGVVN, VecOpSVVN } from "./api"; import { ARGS_VVN, defOpS, SARGS_VV } from "./internal/codegen"; import { MIX_N } from "./internal/templates"; -export const [mixNS2, mixNS3, mixNS4] = defOpS( +export const [mixNS, mixNS2, mixNS3, mixNS4] = defOpS( MIX_N, - `${ARGS_VVN},${SARGS_VV}` + ARGS_VVN, + SARGS_VV ); diff --git a/packages/vectors/src/mixs.ts b/packages/vectors/src/mixs.ts index 947d15d385..b1036b4f0e 100644 --- a/packages/vectors/src/mixs.ts +++ b/packages/vectors/src/mixs.ts @@ -1,9 +1,10 @@ -import type { VecOpSVVV } from "./api"; +import type { VecOpSGVVV, VecOpSVVV } from "./api"; import { ARGS_VVV, defOpS, SARGS_VVV } from "./internal/codegen"; import { MIX } from "./internal/templates"; -export const [mixS2, mixS3, mixS4] = defOpS( +export const [mixS, mixS2, mixS3, mixS4] = defOpS( MIX, - `${ARGS_VVV},${SARGS_VVV}`, + ARGS_VVV, + SARGS_VVV, ARGS_VVV ); diff --git a/packages/vectors/src/msubns.ts b/packages/vectors/src/msubns.ts index c08a9d7587..540d0b49f3 100644 --- a/packages/vectors/src/msubns.ts +++ b/packages/vectors/src/msubns.ts @@ -1,8 +1,8 @@ -import type { VecOpSVNV } from "./api"; +import type { VecOpSGVNV, VecOpSVNV } from "./api"; import { ARGS_VNV, defOpS, SARGS_VV } from "./internal/codegen"; import { MATH2A_N } from "./internal/templates"; -export const [msubNS2, msubNS3, msubNS4] = defOpS( - MATH2A_N("*", "-"), - `${ARGS_VNV},${SARGS_VV}` -); +export const [msubNS, msubNS2, msubNS3, msubNS4] = defOpS< + VecOpSGVNV, + VecOpSVNV +>(MATH2A_N("*", "-"), ARGS_VNV, SARGS_VV); diff --git a/packages/vectors/src/msubs.ts b/packages/vectors/src/msubs.ts index 5b98b37ccb..e553e057ea 100644 --- a/packages/vectors/src/msubs.ts +++ b/packages/vectors/src/msubs.ts @@ -1,9 +1,10 @@ -import type { VecOpSVVV } from "./api"; +import type { VecOpSGVVV, VecOpSVVV } from "./api"; import { ARGS_VVV, defOpS, SARGS_VVV } from "./internal/codegen"; import { MATH2 } from "./internal/templates"; -export const [msubS2, msubS3, msubS4] = defOpS( +export const [msubS, msubS2, msubS3, msubS4] = defOpS( MATH2("*", "-"), - `${ARGS_VVV},${SARGS_VVV}`, + ARGS_VVV, + SARGS_VVV, ARGS_VVV ); diff --git a/packages/vectors/src/mulns.ts b/packages/vectors/src/mulns.ts index a62567190f..028ff34542 100644 --- a/packages/vectors/src/mulns.ts +++ b/packages/vectors/src/mulns.ts @@ -1,9 +1,10 @@ -import type { VecOpSVN } from "./api"; +import type { VecOpSGVN, VecOpSVN } from "./api"; import { ARGS_V, ARGS_VN, defOpS, SARGS_V } from "./internal/codegen"; import { MATH_N } from "./internal/templates"; -export const [mulNS2, mulNS3, mulNS4] = defOpS( +export const [mulNS, mulNS2, mulNS3, mulNS4] = defOpS( MATH_N("*"), - `${ARGS_VN},${SARGS_V}`, + ARGS_VN, + SARGS_V, ARGS_V ); diff --git a/packages/vectors/src/muls.ts b/packages/vectors/src/muls.ts index b2dd3e6346..30be8288bf 100644 --- a/packages/vectors/src/muls.ts +++ b/packages/vectors/src/muls.ts @@ -1,5 +1,7 @@ -import type { VecOpSVV } from "./api"; +import type { VecOpSGVV, VecOpSVV } from "./api"; import { defOpS } from "./internal/codegen"; import { MATH } from "./internal/templates"; -export const [mulS2, mulS3, mulS4] = defOpS(MATH("*")); +export const [mulS, mulS2, mulS3, mulS4] = defOpS( + MATH("*") +); diff --git a/packages/vectors/src/normalizes.ts b/packages/vectors/src/normalizes.ts index 4c46720694..50825e5cc3 100644 --- a/packages/vectors/src/normalizes.ts +++ b/packages/vectors/src/normalizes.ts @@ -1,11 +1,38 @@ import { EPS } from "@thi.ng/math"; -import type { VecOpSVO } from "./api"; -import { magS2, magS3, magS4 } from "./mags"; -import { mulNS2, mulNS3, mulNS4 } from "./mulns"; -import { setS2, setS3, setS4 } from "./sets"; +import type { VecOpSGVO, VecOpSVO } from "./api"; +import { magS, magS2, magS3, magS4 } from "./mags"; +import { mulNS, mulNS2, mulNS3, mulNS4 } from "./mulns"; +import { setS, setS2, setS3, setS4 } from "./sets"; /** - * Normalizes vector to given (optional) length (default: 1). If `out` + * Normalizes strided vector to given (optional) length (default: 1). If `out` + * is null, modifies `v` in place. + * + * @param out - + * @param v - + * @param n - + */ +export const normalizeS: VecOpSGVO = ( + out, + v, + num, + n = 1, + io = 0, + ia = 0, + so = 1, + sa = 1 +) => { + !out && (out = v); + const m = magS(v, num, ia, sa); + return m >= EPS + ? mulNS(out, v, n / m, num, io, ia, so, sa) + : out !== v + ? setS(out, v, num, io, ia, so, sa) + : out; +}; + +/** + * Normalizes strided 2D vector to given (optional) length (default: 1). If `out` * is null, modifies `v` in place. * * @param out - diff --git a/packages/vectors/src/randoms.ts b/packages/vectors/src/randoms.ts index d391b48327..b60fa14550 100644 --- a/packages/vectors/src/randoms.ts +++ b/packages/vectors/src/randoms.ts @@ -1,7 +1,20 @@ import { IRandom, SYSTEM } from "@thi.ng/random"; -import type { ReadonlyVec, VecOpSOO, VecOpSOOO, VecOpSVO } from "./api"; +import type { + VecOpSGOO, + VecOpSGOOO, + VecOpSGVVO, + VecOpSOO, + VecOpSOOO, + VecOpSVO, + VecOpSVVO, +} from "./api"; import { defHofOpS, SARGS_VV } from "./internal/codegen"; -import { normalizeS2, normalizeS3, normalizeS4 } from "./normalizes"; +import { + normalizeS, + normalizeS2, + normalizeS3, + normalizeS4, +} from "./normalizes"; /** * Randomizes `v` with each component in interval `[n..m)`. If no `rnd` @@ -15,32 +28,58 @@ import { normalizeS2, normalizeS3, normalizeS4 } from "./normalizes"; * @param ia - * @param sa - */ -export const [randomS2, randomS3, randomS4] = defHofOpS< +export const [randomS, randomS2, randomS3, randomS4] = defHofOpS< + VecOpSGOOO, VecOpSOOO >( SYSTEM, ([a]) => `${a}=rnd.minmax(n,m);`, - "a,n=-1,m=1,rnd=op,ia=0,sa=1", + "a", + "n=-1,m=1,rnd=op,ia=0,sa=1", "a", "a", "!a && (a=[]);" ); -const $norm = ( - normalize: VecOpSVO, - random: VecOpSOOO -): VecOpSOO => (a, n = 1, rnd?, ia = 0, sa = 1) => - normalize((a = random(a, -1, 1, rnd, ia, sa)), a, n, ia, ia, sa, sa); +const $norm = + ( + normalize: VecOpSVO, + random: VecOpSOOO + ): VecOpSOO => + (a, n = 1, rnd?, ia = 0, sa = 1) => + normalize((a = random(a, -1, 1, rnd, ia, sa)), a, n, ia, ia, sa, sa); /** - * Sets `v` to random vector, normalized to length `n` (default: 1). If + * Sets `v` to random strided vector, normalized to length `n` (default: 1). If * no `rnd` instance is given, uses {@link @thi.ng/random#SYSTEM}, i.e. * `Math.random`. * * @param v - + * @param num - * @param n - * @param rnd - + * @param ia - + * @param sa - */ +export const randNormS: VecOpSGOO = ( + a, + num, + n = 1, + rnd?, + ia = 0, + sa = 1 +) => + normalizeS( + (a = randomS(a, num, -1, 1, rnd, ia, sa)), + a, + num, + n, + ia, + ia, + sa, + sa + ); + export const randNormS2 = $norm(normalizeS2, randomS2); export const randNormS3 = $norm(normalizeS3, randomS3); @@ -56,11 +95,11 @@ export const randNormS4 = $norm(normalizeS4, randomS4); * @param max - * @param rnd - */ -export const [randMinMaxS2, randMinMaxS3, randMinMaxS4] = defHofOpS< - VecOpSOOO ->( - SYSTEM, - ([o, a, b]) => `${o}=rnd.minmax(${a},${b});`, - `o,a,b,rnd=op,${SARGS_VV}`, - "o,a,b" -); +export const [randMinMaxS, randMinMaxS2, randMinMaxS3, randMinMaxS4] = + defHofOpS, VecOpSVVO>( + SYSTEM, + ([o, a, b]) => `${o}=rnd.minmax(${a},${b});`, + "o,a,b", + `rnd=op,${SARGS_VV}`, + "o,a,b" + ); diff --git a/packages/vectors/src/setns.ts b/packages/vectors/src/setns.ts index 115c5e35ec..15ead62e0c 100644 --- a/packages/vectors/src/setns.ts +++ b/packages/vectors/src/setns.ts @@ -1,10 +1,11 @@ -import type { VecOpSV } from "./api"; +import type { VecOpSGV, VecOpSV } from "./api"; import { defOpS } from "./internal/codegen"; import { SET_N } from "./internal/templates"; -export const [setNS2, setNS3, setNS4] = defOpS( +export const [setNS, setNS2, setNS3, setNS4] = defOpS( SET_N, - "o,n,io=0,so=1", + "o,n", + "io=0,so=1", "o", "o", "" diff --git a/packages/vectors/src/sets.ts b/packages/vectors/src/sets.ts index a48b6abe97..0299986007 100644 --- a/packages/vectors/src/sets.ts +++ b/packages/vectors/src/sets.ts @@ -1,26 +1,12 @@ -import type { ReadonlyVec, Vec, VecOpSV } from "./api"; +import type { VecOpSGV, VecOpSV } from "./api"; import { defOpS, NEW_OUT, SARGS_V } from "./internal/codegen"; import { SET } from "./internal/templates"; -export const [setS2, setS3, setS4] = defOpS( +export const [setS, setS2, setS3, setS4] = defOpS( SET, - `o,a,${SARGS_V}`, + "o,a", + SARGS_V, "o,a", "o", NEW_OUT ); - -export const setS = ( - out: Vec, - a: ReadonlyVec, - n: number, - io = 0, - ia = 0, - so = 1, - sa = 1 -) => { - for (let i = 0; i < n; i++) { - out[io + i * so] = a[ia + i * sa]; - } - return out; -}; diff --git a/packages/vectors/src/submns.ts b/packages/vectors/src/submns.ts index f4b1805695..2a168d01be 100644 --- a/packages/vectors/src/submns.ts +++ b/packages/vectors/src/submns.ts @@ -1,8 +1,8 @@ -import type { VecOpSVNV } from "./api"; +import type { VecOpSGVNV, VecOpSVNV } from "./api"; import { ARGS_VVN, defOpS, SARGS_VV } from "./internal/codegen"; import { MATH2_N } from "./internal/templates"; -export const [submNS2, submNS3, submNS4] = defOpS( - MATH2_N("-", "*"), - `${ARGS_VVN},${SARGS_VV}` -); +export const [submNS, submNS2, submNS3, submNS4] = defOpS< + VecOpSGVNV, + VecOpSVNV +>(MATH2_N("-", "*"), ARGS_VVN, SARGS_VV); diff --git a/packages/vectors/src/subms.ts b/packages/vectors/src/subms.ts index 23c7dcffbb..7bdae6afdc 100644 --- a/packages/vectors/src/subms.ts +++ b/packages/vectors/src/subms.ts @@ -1,9 +1,10 @@ -import type { VecOpSVVV } from "./api"; +import type { VecOpSGVVV, VecOpSVVV } from "./api"; import { ARGS_VVV, defOpS, SARGS_VVV } from "./internal/codegen"; import { MATH2 } from "./internal/templates"; -export const [submS2, submS3, submS4] = defOpS( +export const [submS, submS2, submS3, submS4] = defOpS( MATH2("-", "*"), - `${ARGS_VVV},${SARGS_VVV}`, + ARGS_VVV, + SARGS_VVV, ARGS_VVV ); diff --git a/packages/vectors/src/subns.ts b/packages/vectors/src/subns.ts index 1b7c527ee9..6b84c8f17a 100644 --- a/packages/vectors/src/subns.ts +++ b/packages/vectors/src/subns.ts @@ -1,9 +1,10 @@ -import type { VecOpSVN } from "./api"; +import type { VecOpSGVN, VecOpSVN } from "./api"; import { ARGS_V, ARGS_VN, defOpS, SARGS_V } from "./internal/codegen"; import { MATH_N } from "./internal/templates"; -export const [subNS2, subNS3, subNS4] = defOpS( +export const [subNS, subNS2, subNS3, subNS4] = defOpS( MATH_N("-"), - `${ARGS_VN},${SARGS_V}`, + ARGS_VN, + SARGS_V, ARGS_V ); diff --git a/packages/vectors/src/subs.ts b/packages/vectors/src/subs.ts index c0e66f2bf5..88a96ad7af 100644 --- a/packages/vectors/src/subs.ts +++ b/packages/vectors/src/subs.ts @@ -1,5 +1,7 @@ -import type { VecOpSVV } from "./api"; +import type { VecOpSGVV, VecOpSVV } from "./api"; import { defOpS } from "./internal/codegen"; import { MATH } from "./internal/templates"; -export const [subS2, subS3, subS4] = defOpS(MATH("-")); +export const [subS, subS2, subS3, subS4] = defOpS( + MATH("-") +); From 3817d6562fc9ab749f1dde25d57e8108c91ebefc Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Tue, 31 Aug 2021 00:42:29 +0200 Subject: [PATCH 48/76] fix(vectors): add correct type for setNS() --- packages/vectors/src/api.ts | 14 ++++++++++++++ packages/vectors/src/setns.ts | 4 ++-- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/packages/vectors/src/api.ts b/packages/vectors/src/api.ts index 0245cd71e0..e25c9f03fc 100644 --- a/packages/vectors/src/api.ts +++ b/packages/vectors/src/api.ts @@ -143,6 +143,20 @@ export type VecOpSGV = ( sa?: number ) => Vec; +export type VecOpSN = ( + out: Vec | null, + n: number, + io?: number, + so?: number +) => Vec; +export type VecOpSGN = ( + out: Vec | null, + n: number, + num: number, + io?: number, + so?: number +) => Vec; + export type VecOpSVN = ( out: Vec | null, a: ReadonlyVec, diff --git a/packages/vectors/src/setns.ts b/packages/vectors/src/setns.ts index 15ead62e0c..66e266cb0a 100644 --- a/packages/vectors/src/setns.ts +++ b/packages/vectors/src/setns.ts @@ -1,8 +1,8 @@ -import type { VecOpSGV, VecOpSV } from "./api"; +import type { VecOpSGN, VecOpSN } from "./api"; import { defOpS } from "./internal/codegen"; import { SET_N } from "./internal/templates"; -export const [setNS, setNS2, setNS3, setNS4] = defOpS( +export const [setNS, setNS2, setNS3, setNS4] = defOpS( SET_N, "o,n", "io=0,so=1", From e87b979d54026f3a104762fac30105e51f93eef5 Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Tue, 31 Aug 2021 00:49:50 +0200 Subject: [PATCH 49/76] perf(vectors): update standardize() - avoid final multiply if mag=0 --- packages/vectors/src/standardize.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/vectors/src/standardize.ts b/packages/vectors/src/standardize.ts index c8fa36bf5f..5615e2f82b 100644 --- a/packages/vectors/src/standardize.ts +++ b/packages/vectors/src/standardize.ts @@ -17,5 +17,5 @@ import { mulN } from "./muln"; export const standardize = (out: Vec | null, a: ReadonlyVec) => { out = center(out, a); const m = magSq(out); - return mulN(null, out, m > 0 ? 1 / Math.sqrt(m / (out.length - 1)) : 0); + return m > 0 ? mulN(null, out, 1 / Math.sqrt(m / (out.length - 1))) : out; }; From 1de245bff0d2c1d9436e39240ecd648cef744488 Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Tue, 31 Aug 2021 21:03:03 +0200 Subject: [PATCH 50/76] fix(math): removing deprecated eqDeltaFixed() --- packages/math/src/eqdelta.ts | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/packages/math/src/eqdelta.ts b/packages/math/src/eqdelta.ts index e88cbf52e0..8b5c44ee3f 100644 --- a/packages/math/src/eqdelta.ts +++ b/packages/math/src/eqdelta.ts @@ -4,7 +4,7 @@ const abs = Math.abs; const max = Math.max; /** - * Similar to {@link eqDelta}, but used given `eps` as is. + * Similar to {@link eqDeltaScaled}, but uses given `eps` as is. * * @param a - left value * @param b - right value @@ -12,11 +12,6 @@ const max = Math.max; */ export const eqDelta = (a: number, b: number, eps = EPS) => abs(a - b) <= eps; -/** - * @deprecated - */ -export const eqDeltaFixed = eqDelta; - /** * Checks if `|a - b| <= ε` and adapts given epsilon value to the given * arguments: From 24aa2f43060ad2030797c6de031437a65ab783da Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Tue, 31 Aug 2021 23:57:06 +0200 Subject: [PATCH 51/76] feat(vectors): add new distance metrics - add distBrayCurtis() - add distCanberra() - add distHamming() - add distJaccard() - add distMinkowski() - add distSorensenDice() --- packages/vectors/src/dist-braycurtis.ts | 26 +++++++++++++++++++++++ packages/vectors/src/dist-canberra.ts | 19 +++++++++++++++++ packages/vectors/src/dist-chebyshev.ts | 4 ++++ packages/vectors/src/dist-hamming.ts | 19 +++++++++++++++++ packages/vectors/src/dist-jaccard.ts | 20 +++++++++++++++++ packages/vectors/src/dist-manhattan.ts | 4 ++++ packages/vectors/src/dist-minkowski.ts | 19 +++++++++++++++++ packages/vectors/src/dist-sorensendice.ts | 20 +++++++++++++++++ packages/vectors/src/index.ts | 6 ++++++ 9 files changed, 137 insertions(+) create mode 100644 packages/vectors/src/dist-braycurtis.ts create mode 100644 packages/vectors/src/dist-canberra.ts create mode 100644 packages/vectors/src/dist-hamming.ts create mode 100644 packages/vectors/src/dist-jaccard.ts create mode 100644 packages/vectors/src/dist-minkowski.ts create mode 100644 packages/vectors/src/dist-sorensendice.ts diff --git a/packages/vectors/src/dist-braycurtis.ts b/packages/vectors/src/dist-braycurtis.ts new file mode 100644 index 0000000000..d37ac32829 --- /dev/null +++ b/packages/vectors/src/dist-braycurtis.ts @@ -0,0 +1,26 @@ +import type { DistanceFn } from "./api"; + +/** + * Bray-Curtis **dissimilarity** metric. Result always in [0..1] interval. + * + * @remarks + * Reference: https://en.wikipedia.org/wiki/Bray%E2%80%93Curtis_dissimilarity + * + * @example + * ```ts + * distBrayCurtis([6, 7, 4], [10, 0, 6]) + * // 0.393939... + * ``` + * + * @param a + * @param b + */ +export const distBrayCurtis: DistanceFn = (a, b) => { + let c = 0; + let s = 0; + for (let i = a.length; i-- > 0; ) { + c += Math.abs(a[i] - b[i]); + s += Math.abs(a[i] + b[i]); + } + return s > 0 ? c / s : 0; +}; diff --git a/packages/vectors/src/dist-canberra.ts b/packages/vectors/src/dist-canberra.ts new file mode 100644 index 0000000000..3504437ca8 --- /dev/null +++ b/packages/vectors/src/dist-canberra.ts @@ -0,0 +1,19 @@ +import type { DistanceFn } from "./api"; + +/** + * @remarks + * Reference: https://en.wikipedia.org/wiki/Canberra_distance + * + * @param a + * @param b + */ +export const distCanberra: DistanceFn = (a, b) => { + let delta = 0; + for (let i = a.length; --i >= 0; ) { + const aa = a[i]; + const bb = b[i]; + const d = Math.abs(aa) + Math.abs(bb); + d > 0 && (delta += Math.abs(aa - bb) / d); + } + return delta; +}; diff --git a/packages/vectors/src/dist-chebyshev.ts b/packages/vectors/src/dist-chebyshev.ts index cf441462e9..1532aa6e2f 100644 --- a/packages/vectors/src/dist-chebyshev.ts +++ b/packages/vectors/src/dist-chebyshev.ts @@ -17,6 +17,10 @@ const $ = (dim: number) => ) ); +/** + * @remarks + * Reference: https://en.wikipedia.org/wiki/Chebyshev_distance + */ export const distChebyshev: MultiVecOpRoVV = vop(); distChebyshev.default((a, b) => { diff --git a/packages/vectors/src/dist-hamming.ts b/packages/vectors/src/dist-hamming.ts new file mode 100644 index 0000000000..1a838d8fd0 --- /dev/null +++ b/packages/vectors/src/dist-hamming.ts @@ -0,0 +1,19 @@ +import type { DistanceFn } from "./api"; + +/** + * Normalized Hamming distance between `a` and `b`, i.e. number of differing + * components divided by vector size. + * + * @remarks + * Reference: https://en.wikipedia.org/wiki/Hamming_distance + * + * @param a + * @param b + */ +export const distHamming: DistanceFn = (a, b) => { + let delta = 0; + for (let i = a.length; --i >= 0; ) { + a[i] !== b[i] && delta++; + } + return delta / a.length; +}; diff --git a/packages/vectors/src/dist-jaccard.ts b/packages/vectors/src/dist-jaccard.ts new file mode 100644 index 0000000000..2be2f0c291 --- /dev/null +++ b/packages/vectors/src/dist-jaccard.ts @@ -0,0 +1,20 @@ +import type { DistanceFn } from "./api"; + +/** + * @remarks + * Reference: https://en.wikipedia.org/wiki/Jaccard_index + * + * @param a + * @param b + */ +export const distJaccard: DistanceFn = (a, b) => { + let numNZ = 0; + let numEQ = 0; + for (let i = a.length; --i >= 0; ) { + const aa = a[i] !== 0; + const bb = b[i] !== 0; + numNZ += ~~(aa || bb); + numEQ += ~~(aa && bb); + } + return numNZ ? (numNZ - numEQ) / numNZ : 0; +}; diff --git a/packages/vectors/src/dist-manhattan.ts b/packages/vectors/src/dist-manhattan.ts index c7bc820200..386423650a 100644 --- a/packages/vectors/src/dist-manhattan.ts +++ b/packages/vectors/src/dist-manhattan.ts @@ -17,6 +17,10 @@ const $ = (dim: number) => ) ); +/** + * @remarks + * Reference: https://en.wikipedia.org/wiki/Taxicab_geometry + */ export const distManhattan: MultiVecOpRoVV = vop(); distManhattan.default( diff --git a/packages/vectors/src/dist-minkowski.ts b/packages/vectors/src/dist-minkowski.ts new file mode 100644 index 0000000000..6cfc5fdfa6 --- /dev/null +++ b/packages/vectors/src/dist-minkowski.ts @@ -0,0 +1,19 @@ +import type { ReadonlyVec } from "./api"; + +/** + * @remarks + * The Minkowski power `p` MUST be > 0. + * + * Reference: https://en.wikipedia.org/wiki/Minkowski_distance + * + * @param a + * @param b + * @param p + */ +export const distMinkowski = (a: ReadonlyVec, b: ReadonlyVec, p: number) => { + let delta = 0; + for (let i = a.length; --i >= 0; ) { + delta += Math.abs(a[i] - b[i]) ** p; + } + return delta ** (1 / p); +}; diff --git a/packages/vectors/src/dist-sorensendice.ts b/packages/vectors/src/dist-sorensendice.ts new file mode 100644 index 0000000000..b118061495 --- /dev/null +++ b/packages/vectors/src/dist-sorensendice.ts @@ -0,0 +1,20 @@ +import type { DistanceFn } from "./api"; + +/** + * @remarks + * Reference: https://en.wikipedia.org/wiki/S%C3%B8rensen%E2%80%93Dice_coefficient + * + * @param a + * @param b + */ +export const distSorensenDice: DistanceFn = (a, b) => { + let numTP = 0; + let numFP = 0; + for (let i = a.length; i-- > 0; ) { + const aa = a[i] !== 0; + const bb = b[i] !== 0; + numTP += ~~(aa && bb); + numFP += ~~(aa !== bb); + } + return numFP ? numFP / (2 * numTP + numFP) : 0; +}; diff --git a/packages/vectors/src/index.ts b/packages/vectors/src/index.ts index d137abb9fa..3dd1f4df2f 100644 --- a/packages/vectors/src/index.ts +++ b/packages/vectors/src/index.ts @@ -49,9 +49,15 @@ export * from "./crosss"; export * from "./degrees"; export * from "./direction"; export * from "./dist"; +export * from "./dist-braycurtis"; +export * from "./dist-canberra"; export * from "./dist-chebyshev"; +export * from "./dist-hamming"; export * from "./dist-haversine"; +export * from "./dist-jaccard"; export * from "./dist-manhattan"; +export * from "./dist-minkowski"; +export * from "./dist-sorensendice"; export * from "./dist-weighted"; export * from "./distsq"; export * from "./div"; From c81247643ebeea8e3d9d79b6b82678cd7c2f346a Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Wed, 1 Sep 2021 14:15:25 +0200 Subject: [PATCH 52/76] feat(examples): add rdom-delayed-update example --- examples/rdom-delayed-update/.gitignore | 6 + examples/rdom-delayed-update/README.md | 16 +++ examples/rdom-delayed-update/package.json | 31 +++++ .../rdom-delayed-update/public/index.html | 31 +++++ .../rdom-delayed-update/snowpack.config.js | 34 +++++ examples/rdom-delayed-update/src/index.ts | 118 ++++++++++++++++++ examples/rdom-delayed-update/src/static.d.ts | 51 ++++++++ examples/rdom-delayed-update/tsconfig.json | 8 ++ 8 files changed, 295 insertions(+) create mode 100644 examples/rdom-delayed-update/.gitignore create mode 100644 examples/rdom-delayed-update/README.md create mode 100644 examples/rdom-delayed-update/package.json create mode 100644 examples/rdom-delayed-update/public/index.html create mode 100644 examples/rdom-delayed-update/snowpack.config.js create mode 100644 examples/rdom-delayed-update/src/index.ts create mode 100644 examples/rdom-delayed-update/src/static.d.ts create mode 100644 examples/rdom-delayed-update/tsconfig.json diff --git a/examples/rdom-delayed-update/.gitignore b/examples/rdom-delayed-update/.gitignore new file mode 100644 index 0000000000..211b157174 --- /dev/null +++ b/examples/rdom-delayed-update/.gitignore @@ -0,0 +1,6 @@ +build +dev +node_modules +yarn.lock +!snowpack.config.js +!*.d.ts diff --git a/examples/rdom-delayed-update/README.md b/examples/rdom-delayed-update/README.md new file mode 100644 index 0000000000..17107b60ab --- /dev/null +++ b/examples/rdom-delayed-update/README.md @@ -0,0 +1,16 @@ +# rdom-delayed-update + +[Live demo](http://demo.thi.ng/umbrella/rdom-delayed-update/) + +Bare-bones example demonstrating different ways to implement a dashboard of +dynamically loaded images, each w/ its own preload state... + +Please refer to the [example build instructions](https://github.com/thi-ng/umbrella/wiki/Example-build-instructions) on the wiki. + +## Authors + +- Karsten Schmidt + +## License + +© 2021 Karsten Schmidt // Apache Software License 2.0 diff --git a/examples/rdom-delayed-update/package.json b/examples/rdom-delayed-update/package.json new file mode 100644 index 0000000000..16089af191 --- /dev/null +++ b/examples/rdom-delayed-update/package.json @@ -0,0 +1,31 @@ +{ + "name": "rdom-delayed-update", + "version": "0.0.1", + "description": "TODO", + "repository": "https://github.com/thi-ng/umbrella", + "author": "Karsten Schmidt ", + "license": "Apache-2.0", + "scripts": { + "clean": "../../node_modules/.bin/rimraf build node_modules/.cache", + "start": "../../node_modules/.bin/snowpack dev --reload", + "build": "../../node_modules/.bin/snowpack build" + }, + "devDependencies": { + "@thi.ng/snowpack-env": "^2.3.3" + }, + "dependencies": { + "@thi.ng/api": "latest", + "@thi.ng/rdom": "latest" + }, + "browserslist": [ + "last 3 Chrome versions" + ], + "browser": { + "process": false + }, + "thi.ng": { + "skip": true, + "readme": false, + "screenshot": "examples/" + } +} diff --git a/examples/rdom-delayed-update/public/index.html b/examples/rdom-delayed-update/public/index.html new file mode 100644 index 0000000000..9dd70d799e --- /dev/null +++ b/examples/rdom-delayed-update/public/index.html @@ -0,0 +1,31 @@ + + + + + + + rdom-delayed-update + + + + + +
+
+ + + diff --git a/examples/rdom-delayed-update/snowpack.config.js b/examples/rdom-delayed-update/snowpack.config.js new file mode 100644 index 0000000000..7ada217bbd --- /dev/null +++ b/examples/rdom-delayed-update/snowpack.config.js @@ -0,0 +1,34 @@ +/** @type {import("snowpack").SnowpackUserConfig } */ +module.exports = { + mount: { + public: "/", + src: "/_dist_", + }, + plugins: [ + "@snowpack/plugin-typescript", + [ + "@snowpack/plugin-webpack", + { + extendConfig: (config) => { + config.node = false; + config.resolve = { + alias: { + process: false, + util: false, + }, + }; + return config; + }, + }, + ], + ], + packageOptions: { + source: "local", + types: true, + knownEntrypoints: ["tslib"], + }, + buildOptions: { + baseUrl: "/umbrella/rdom-delayed-update", + }, + workspaceRoot: "../..", +}; diff --git a/examples/rdom-delayed-update/src/index.ts b/examples/rdom-delayed-update/src/index.ts new file mode 100644 index 0000000000..e8fda28b03 --- /dev/null +++ b/examples/rdom-delayed-update/src/index.ts @@ -0,0 +1,118 @@ +import { delayed } from "@thi.ng/compose"; +import { SYSTEM } from "@thi.ng/random"; +import { + $compile, + $klist, + $refresh, + Component, + NumOrElement, +} from "@thi.ng/rdom"; +import { fromPromise, merge, reactive } from "@thi.ng/rstream"; +import { cycle } from "@thi.ng/transducers"; + +interface UserSummary { + id: number; + name: string; +} + +const users = reactive([ + { id: 1, name: "alice" }, + { id: 2, name: "bob" }, + { id: 3, name: "charlie" }, + { id: 4, name: "dora" }, + { id: 5, name: "emma" }, + { id: 6, name: "fred" }, + { id: 7, name: "gina" }, +]); + +const colors = cycle(["f00", "0ff", "f0f", "f90", "00f", "0f0"]); + +/** + * User thumbnail component. Image element w/ reactive `src` attrib. + * + * @param srcUrl + */ +const userThumb = (srcUrl: Promise) => [ + "img.db.w-100", + { + // src image attribute + src: merge({ + // stream sources + src: [ + // preloader image (should be local really) + reactive( + "https://via.placeholder.com/640x360.png?text=wait+for+it..." + ), + // final image + fromPromise(srcUrl), + ///.... + ], + }), + }, +]; + +/** + * Alternative project thumbnail with custom inner pre-loader component. + * + * @param srcUrl + */ +const userThumbAlt = (srcUrl: Promise) => [ + "div.aspect-ratio.aspect-ratio--16x9.tc", + {}, + $refresh( + fromPromise(srcUrl), + async (src) => ["img.w-100", { src }], + async (x) => ["img.w-100", { src: "broken.png" }], + async () => ["div", { style: { padding: "25% 0" } }, "loading..."] + ), +]; + +class UserComponent extends Component { + constructor(public user: UserSummary) { + super(); + } + + async mount(parent: Element, index?: NumOrElement): Promise { + this.el = await this.$tree( + this.$compile([ + "div.bg-black.white", + {}, + // also try out userThumbAlt... + userThumb( + // intentionally delay + delayed( + `https://via.placeholder.com/640x360.png/${ + colors.next().value + }/fff?text=${this.user.name}`, + SYSTEM.minmax(0.5, 1) * 2000 + ) + ), + [ + "h3.pa2.ma0.f6", + {}, + `Project #${this.user.id}: ${this.user.name}`, + ], + ]), + parent, + index + ); + return this.el!; + } +} + +// main root component +$compile( + $klist( + users, + "div", + { + style: { + display: "grid", + "grid-template-columns": "1fr 1fr 1fr", + gap: "0.25rem", + }, + }, + (user) => new UserComponent(user), + (user) => user.id + ) +).mount(document.getElementById("app")!); diff --git a/examples/rdom-delayed-update/src/static.d.ts b/examples/rdom-delayed-update/src/static.d.ts new file mode 100644 index 0000000000..67d9623753 --- /dev/null +++ b/examples/rdom-delayed-update/src/static.d.ts @@ -0,0 +1,51 @@ +/* Use this file to declare any custom file extensions for importing */ +/* Use this folder to also add/extend a package d.ts file, if needed. */ + +/* CSS MODULES */ +declare module "*.module.css" { + const classes: { [key: string]: string }; + export default classes; +} +declare module "*.module.scss" { + const classes: { [key: string]: string }; + export default classes; +} +declare module "*.module.sass" { + const classes: { [key: string]: string }; + export default classes; +} +declare module "*.module.less" { + const classes: { [key: string]: string }; + export default classes; +} +declare module "*.module.styl" { + const classes: { [key: string]: string }; + export default classes; +} + +/* CSS */ +declare module "*.css"; +declare module "*.scss"; +declare module "*.sass"; +declare module "*.less"; +declare module "*.styl"; + +/* IMAGES */ +declare module "*.svg" { + const ref: string; + export default ref; +} +declare module "*.gif" { + const ref: string; + export default ref; +} +declare module "*.jpg" { + const ref: string; + export default ref; +} +declare module "*.png" { + const ref: string; + export default ref; +} + +/* CUSTOM: ADD YOUR OWN HERE */ diff --git a/examples/rdom-delayed-update/tsconfig.json b/examples/rdom-delayed-update/tsconfig.json new file mode 100644 index 0000000000..48d558b4f8 --- /dev/null +++ b/examples/rdom-delayed-update/tsconfig.json @@ -0,0 +1,8 @@ +{ + "extends": "../tsconfig.json", + "include": ["src"], + "compilerOptions": { + "baseUrl": "./", + "paths": { "*": ["web_modules/.types/*"] } + } +} From 972e91453f4ec7d4f397e86da5764a4ae1f867f5 Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Wed, 1 Sep 2021 17:52:55 +0200 Subject: [PATCH 53/76] feat(examples): add pixel-indexed example --- examples/pixel-indexed/.gitignore | 6 +++ examples/pixel-indexed/README.md | 15 ++++++ examples/pixel-indexed/package.json | 31 +++++++++++ examples/pixel-indexed/public/assets/test.jpg | Bin 0 -> 36524 bytes examples/pixel-indexed/public/index.html | 43 +++++++++++++++ examples/pixel-indexed/snowpack.config.js | 34 ++++++++++++ examples/pixel-indexed/src/index.ts | 42 +++++++++++++++ examples/pixel-indexed/src/static.d.ts | 51 ++++++++++++++++++ examples/pixel-indexed/tsconfig.json | 8 +++ 9 files changed, 230 insertions(+) create mode 100644 examples/pixel-indexed/.gitignore create mode 100644 examples/pixel-indexed/README.md create mode 100644 examples/pixel-indexed/package.json create mode 100644 examples/pixel-indexed/public/assets/test.jpg create mode 100644 examples/pixel-indexed/public/index.html create mode 100644 examples/pixel-indexed/snowpack.config.js create mode 100644 examples/pixel-indexed/src/index.ts create mode 100644 examples/pixel-indexed/src/static.d.ts create mode 100644 examples/pixel-indexed/tsconfig.json diff --git a/examples/pixel-indexed/.gitignore b/examples/pixel-indexed/.gitignore new file mode 100644 index 0000000000..211b157174 --- /dev/null +++ b/examples/pixel-indexed/.gitignore @@ -0,0 +1,6 @@ +build +dev +node_modules +yarn.lock +!snowpack.config.js +!*.d.ts diff --git a/examples/pixel-indexed/README.md b/examples/pixel-indexed/README.md new file mode 100644 index 0000000000..48ba34e66d --- /dev/null +++ b/examples/pixel-indexed/README.md @@ -0,0 +1,15 @@ +# pixel-indexed + +![screenshot](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/pixel/pixel-indexed.png) + +[Live demo](http://demo.thi.ng/umbrella/pixel-indexed/) + +Please refer to the [example build instructions](https://github.com/thi-ng/umbrella/wiki/Example-build-instructions) on the wiki. + +## Authors + +- Karsten Schmidt + +## License + +© 2021 Karsten Schmidt // Apache Software License 2.0 diff --git a/examples/pixel-indexed/package.json b/examples/pixel-indexed/package.json new file mode 100644 index 0000000000..be94681d2a --- /dev/null +++ b/examples/pixel-indexed/package.json @@ -0,0 +1,31 @@ +{ + "name": "pixel-indexed", + "version": "0.0.1", + "description": "TODO", + "repository": "https://github.com/thi-ng/umbrella", + "author": "Karsten Schmidt ", + "license": "Apache-2.0", + "scripts": { + "clean": "../../node_modules/.bin/rimraf build node_modules/.cache", + "start": "../../node_modules/.bin/snowpack dev --reload", + "build": "../../node_modules/.bin/snowpack build" + }, + "devDependencies": { + "@thi.ng/snowpack-env": "^2.3.3" + }, + "dependencies": { + "@thi.ng/api": "latest", + "@thi.ng/rdom": "latest" + }, + "browserslist": [ + "last 3 Chrome versions" + ], + "browser": { + "process": false + }, + "thi.ng": { + "skip": true, + "readme": false, + "screenshot": "examples/" + } +} diff --git a/examples/pixel-indexed/public/assets/test.jpg b/examples/pixel-indexed/public/assets/test.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0582af7d1dd1ef401df78fd69c6fdb17c1c8b42f GIT binary patch literal 36524 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 w0P^OI7K + + + + + + pixel-indexed + + + + + +
+
+ + + + diff --git a/examples/pixel-indexed/snowpack.config.js b/examples/pixel-indexed/snowpack.config.js new file mode 100644 index 0000000000..84e9213ae6 --- /dev/null +++ b/examples/pixel-indexed/snowpack.config.js @@ -0,0 +1,34 @@ +/** @type {import("snowpack").SnowpackUserConfig } */ +module.exports = { + mount: { + public: "/", + src: "/_dist_", + }, + plugins: [ + "@snowpack/plugin-typescript", + [ + "@snowpack/plugin-webpack", + { + extendConfig: (config) => { + config.node = false; + config.resolve = { + alias: { + process: false, + util: false, + } + }; + return config; + }, + }, + ], + ], + packageOptions: { + source: "local", + types: true, + knownEntrypoints: ["tslib"], + }, + buildOptions: { + baseUrl: "/umbrella/pixel-indexed", + }, + workspaceRoot: "../..", +}; diff --git a/examples/pixel-indexed/src/index.ts b/examples/pixel-indexed/src/index.ts new file mode 100644 index 0000000000..49ea169c2e --- /dev/null +++ b/examples/pixel-indexed/src/index.ts @@ -0,0 +1,42 @@ +import { parseHex, srgbIntArgb32 } from "@thi.ng/color"; +import { THEMES } from "@thi.ng/color-palettes"; +import { + ARGB8888, + canvas2d, + defIndexed, + dominantColors, + floatBuffer, + FLOAT_RGB, + imagePromise, + PackedBuffer, +} from "@thi.ng/pixel"; + +(async () => { + const img = await imagePromise("assets/test.jpg"); + + const root = document.getElementById("app")!; + root.appendChild(img); + + const processImage = (buf: PackedBuffer, palette: number[]) => + buf + .copy() + .dither(8, 3) + .as(defIndexed(palette)) + .blitCanvas(canvas2d(buf.width, buf.height, root).canvas); + + // dither image and convert to indexed color using given palette + const buf = PackedBuffer.fromImage(img, ARGB8888); + + // extract palette from image and use it + // to create indexed color version + processImage( + buf, + dominantColors(floatBuffer(buf.scale(1 / 4), FLOAT_RGB), 6).map((c) => + srgbIntArgb32(c.color) + ) + ); + + // another version using a preset palette + // see https://github.com/thi-ng/umbrella/tree/develop/packages/color-palettes#available-palettes + processImage(buf, THEMES["00QMxescYuh8eYT39"].map(parseHex)); +})(); diff --git a/examples/pixel-indexed/src/static.d.ts b/examples/pixel-indexed/src/static.d.ts new file mode 100644 index 0000000000..67d9623753 --- /dev/null +++ b/examples/pixel-indexed/src/static.d.ts @@ -0,0 +1,51 @@ +/* Use this file to declare any custom file extensions for importing */ +/* Use this folder to also add/extend a package d.ts file, if needed. */ + +/* CSS MODULES */ +declare module "*.module.css" { + const classes: { [key: string]: string }; + export default classes; +} +declare module "*.module.scss" { + const classes: { [key: string]: string }; + export default classes; +} +declare module "*.module.sass" { + const classes: { [key: string]: string }; + export default classes; +} +declare module "*.module.less" { + const classes: { [key: string]: string }; + export default classes; +} +declare module "*.module.styl" { + const classes: { [key: string]: string }; + export default classes; +} + +/* CSS */ +declare module "*.css"; +declare module "*.scss"; +declare module "*.sass"; +declare module "*.less"; +declare module "*.styl"; + +/* IMAGES */ +declare module "*.svg" { + const ref: string; + export default ref; +} +declare module "*.gif" { + const ref: string; + export default ref; +} +declare module "*.jpg" { + const ref: string; + export default ref; +} +declare module "*.png" { + const ref: string; + export default ref; +} + +/* CUSTOM: ADD YOUR OWN HERE */ diff --git a/examples/pixel-indexed/tsconfig.json b/examples/pixel-indexed/tsconfig.json new file mode 100644 index 0000000000..48d558b4f8 --- /dev/null +++ b/examples/pixel-indexed/tsconfig.json @@ -0,0 +1,8 @@ +{ + "extends": "../tsconfig.json", + "include": ["src"], + "compilerOptions": { + "baseUrl": "./", + "paths": { "*": ["web_modules/.types/*"] } + } +} From 091f872e12dd6ba404a22be8b33bfa97ff345557 Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Wed, 1 Sep 2021 23:56:01 +0200 Subject: [PATCH 54/76] feat(dual-algebra): add mix(), add vector ops --- packages/dual-algebra/src/index.ts | 1 + packages/dual-algebra/src/ops.ts | 24 +++++++++----- packages/dual-algebra/src/vector.ts | 51 +++++++++++++++++++++++++++++ 3 files changed, 67 insertions(+), 9 deletions(-) create mode 100644 packages/dual-algebra/src/vector.ts diff --git a/packages/dual-algebra/src/index.ts b/packages/dual-algebra/src/index.ts index 5611fb85f1..d616ca4511 100644 --- a/packages/dual-algebra/src/index.ts +++ b/packages/dual-algebra/src/index.ts @@ -1,3 +1,4 @@ export * from "./api"; export * from "./ops"; export * from "./poly"; +export * from "./vector"; diff --git a/packages/dual-algebra/src/ops.ts b/packages/dual-algebra/src/ops.ts index 4a6bcb6f20..0d8504fd7f 100644 --- a/packages/dual-algebra/src/ops.ts +++ b/packages/dual-algebra/src/ops.ts @@ -1,4 +1,4 @@ -import type { Op1, Op1N, Op2, Op3, Op4 } from "./api"; +import type { Dual, Op1, Op1N, Op2, Op3, Op4 } from "./api"; /** * Creates a multivariate dual number. @@ -7,7 +7,7 @@ import type { Op1, Op1N, Op2, Op3, Op4 } from "./api"; * @param n - number of variables (default: 1) * @param i - variable index (0 < i <= n) */ -export const dual = (real: number, n = 1, i = 0) => { +export const dual = (real: number, n = 1, i = 0): Dual => { const out = new Array(n + 1).fill(0, 1); out[0] = real; i > 0 && (out[i] = 1); @@ -53,7 +53,7 @@ export const defOp = ( ): T => ( ((...xs: any[]) => - xs[dispatch].length > 2 ? multi(...xs) : single(...xs)) + xs[dispatch].length < 3 ? single(...xs) : multi(...xs)) ); export const add = defOp( @@ -219,6 +219,15 @@ export const atan = defOp( } ); +/** + * Linear interpolation for dual numbers: `a + (b - a) * t` + * + * @param a + * @param b + * @param t + */ +export const mix = (a: Dual, b: Dual, t: Dual) => add(a, mul(sub(b, a), t)); + /** * Higher order function. Takes a 2-multivariate {@link Op2} and returns new * function which takes two real numbers `x` and `y` representing variables in @@ -250,9 +259,6 @@ export const evalFn3 = (fn: Op3) => (x: number, y: number, z: number) => * * @param fn */ -export const evalFn4 = (fn: Op4) => ( - x: number, - y: number, - z: number, - w: number -) => fn([x, 1, 0, 0, 0], [y, 0, 1, 0, 0], [z, 0, 0, 1, 0], [w, 0, 0, 0, 1]); +export const evalFn4 = + (fn: Op4) => (x: number, y: number, z: number, w: number) => + fn([x, 1, 0, 0, 0], [y, 0, 1, 0, 0], [z, 0, 0, 1, 0], [w, 0, 0, 0, 1]); diff --git a/packages/dual-algebra/src/vector.ts b/packages/dual-algebra/src/vector.ts new file mode 100644 index 0000000000..3171e78974 --- /dev/null +++ b/packages/dual-algebra/src/vector.ts @@ -0,0 +1,51 @@ +import type { Dual } from "./api"; +import { add, div, dual, mul, sub } from "./ops"; + +/** + * Dual vector addition. Applies {@link add} in a component-wise manner. Returns + * new (dual) vector. + * + * @param a + * @param b + */ +export const vadd = (a: Dual[], b: Dual[]): Dual[] => + a.map((a, i) => add(a, b[i])); + +/** + * Dual vector subtraction. Applies {@link sub} in a component-wise manner. + * Returns new (dual) vector. + * + * @param a + * @param b + */ +export const vsub = (a: Dual[], b: Dual[]): Dual[] => + a.map((a, i) => sub(a, b[i])); + +/** + * Dual vector multiplication. Applies {@link mul} in a component-wise manner. + * Returns new (dual) vector. + * + * @param a + * @param b + */ +export const vmul = (a: Dual[], b: Dual[]): Dual[] => + a.map((a, i) => mul(a, b[i])); + +/** + * Dual vector division. Applies {@link div} in a component-wise manner. + * Returns new (dual) vector. + * + * @param a + * @param b + */ +export const vdiv = (a: Dual[], b: Dual[]): Dual[] => + a.map((a, i) => div(a, b[i])); + +/** + * Computes dot product of 2 dual vectors. + * + * @param a + * @param b + */ +export const dot = (a: Dual[], b: Dual[]): Dual => + a.reduce((acc, a, i) => add(acc, mul(a, b[i])), dual(0, a[0].length)); From 7d541c469fc81663efb85f6eb125aad4a0fbccfb Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Wed, 1 Sep 2021 23:58:45 +0200 Subject: [PATCH 55/76] feat(examples): add spline-tangent example --- examples/spline-tangent/.gitignore | 6 ++ examples/spline-tangent/README.md | 15 +++++ examples/spline-tangent/package.json | 31 +++++++++ examples/spline-tangent/public/index.html | 18 +++++ examples/spline-tangent/snowpack.config.js | 34 ++++++++++ examples/spline-tangent/src/index.ts | 78 ++++++++++++++++++++++ examples/spline-tangent/src/static.d.ts | 51 ++++++++++++++ examples/spline-tangent/tsconfig.json | 8 +++ 8 files changed, 241 insertions(+) create mode 100644 examples/spline-tangent/.gitignore create mode 100644 examples/spline-tangent/README.md create mode 100644 examples/spline-tangent/package.json create mode 100644 examples/spline-tangent/public/index.html create mode 100644 examples/spline-tangent/snowpack.config.js create mode 100644 examples/spline-tangent/src/index.ts create mode 100644 examples/spline-tangent/src/static.d.ts create mode 100644 examples/spline-tangent/tsconfig.json diff --git a/examples/spline-tangent/.gitignore b/examples/spline-tangent/.gitignore new file mode 100644 index 0000000000..211b157174 --- /dev/null +++ b/examples/spline-tangent/.gitignore @@ -0,0 +1,6 @@ +build +dev +node_modules +yarn.lock +!snowpack.config.js +!*.d.ts diff --git a/examples/spline-tangent/README.md b/examples/spline-tangent/README.md new file mode 100644 index 0000000000..e0b7594607 --- /dev/null +++ b/examples/spline-tangent/README.md @@ -0,0 +1,15 @@ +# spline-tangent + +![screenshot](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/spline-tangent.png) + +[Live demo](http://demo.thi.ng/umbrella/spline-tangent/) + +Please refer to the [example build instructions](https://github.com/thi-ng/umbrella/wiki/Example-build-instructions) on the wiki. + +## Authors + +- Karsten Schmidt + +## License + +© 2020 Karsten Schmidt // Apache Software License 2.0 diff --git a/examples/spline-tangent/package.json b/examples/spline-tangent/package.json new file mode 100644 index 0000000000..cf433f7f65 --- /dev/null +++ b/examples/spline-tangent/package.json @@ -0,0 +1,31 @@ +{ + "name": "spline-tangent", + "version": "0.0.1", + "description": "Cubic spline position & tangent via Dual Numbers", + "repository": "https://github.com/thi-ng/umbrella", + "author": "Karsten Schmidt ", + "license": "Apache-2.0", + "scripts": { + "clean": "../../node_modules/.bin/rimraf build node_modules/.cache", + "start": "../../node_modules/.bin/snowpack dev --reload", + "build": "../../node_modules/.bin/snowpack build" + }, + "devDependencies": { + "@thi.ng/snowpack-env": "^2.3.3" + }, + "dependencies": { + "@thi.ng/api": "latest", + "@thi.ng/rdom": "latest" + }, + "browserslist": [ + "last 3 Chrome versions" + ], + "browser": { + "process": false + }, + "thi.ng": { + "skip": true, + "readme": false, + "screenshot": "examples/" + } +} diff --git a/examples/spline-tangent/public/index.html b/examples/spline-tangent/public/index.html new file mode 100644 index 0000000000..d512b438ce --- /dev/null +++ b/examples/spline-tangent/public/index.html @@ -0,0 +1,18 @@ + + + + + + + spline-tangent + + + + + +
+ + + + diff --git a/examples/spline-tangent/snowpack.config.js b/examples/spline-tangent/snowpack.config.js new file mode 100644 index 0000000000..af4482835e --- /dev/null +++ b/examples/spline-tangent/snowpack.config.js @@ -0,0 +1,34 @@ +/** @type {import("snowpack").SnowpackUserConfig } */ +module.exports = { + mount: { + public: "/", + src: "/_dist_", + }, + plugins: [ + "@snowpack/plugin-typescript", + [ + "@snowpack/plugin-webpack", + { + extendConfig: (config) => { + config.node = false; + config.resolve = { + alias: { + process: false, + util: false, + }, + }; + return config; + }, + }, + ], + ], + packageOptions: { + source: "local", + types: true, + knownEntrypoints: ["tslib"], + }, + buildOptions: { + baseUrl: "/umbrella/spline-tangent", + }, + workspaceRoot: "../..", +}; diff --git a/examples/spline-tangent/src/index.ts b/examples/spline-tangent/src/index.ts new file mode 100644 index 0000000000..f87ac66192 --- /dev/null +++ b/examples/spline-tangent/src/index.ts @@ -0,0 +1,78 @@ +import { $, dot, mul, sub } from "@thi.ng/dual-algebra"; +import { asSvg, circle, cubic, line, svgDoc, text } from "@thi.ng/geom"; +import { fract } from "@thi.ng/math"; +import { vector } from "@thi.ng/strings"; +import { add2, normalize, sub2 } from "@thi.ng/vectors"; + +/** + * Computes point at `t` (in [0..1] range) on given cubic curve using dual + * numbers, i.e. it computes (jointly) both the position *AND* the first + * derivative (aka tangent) at this point. + * + * @param a + * @param b + * @param c + * @param d + * @param t + */ +const splinePosAndTangent = ( + a: number, + b: number, + c: number, + d: number, + _t: number +) => { + const t = $(_t, 1); // dual variable + const s = sub($(1), t); // dual variable (1 - t) + const s2 = mul(s, s); // squared + const t2 = mul(t, t); // ... + // dot product of... + return dot( + // vector of coordinates (as dual numbers) + [$(a), $(b), $(c), $(d)], + // Bernstein coefficients (also dual numbers) + [mul(s, s2), mul(mul(s2, t), $(3)), mul(mul(t2, s), $(3)), mul(t, t2)] + ); +}; + +// curve definition +const a = [0, 10]; +const b = [150, 10]; +const c = [-50, 100]; +const d = [100, 80]; +const curve = cubic(a, b, c, d, { stroke: "red" }); + +let t = 0; + +const root = document.getElementById("app")!; + +setInterval(() => { + t = fract(t + 0.001); + + const [x, dx] = splinePosAndTangent(a[0], b[0], c[0], d[0], t); + const [y, dy] = splinePosAndTangent(a[1], b[1], c[1], d[1], t); + + const pos = [x, y]; + const dir = normalize(null, [dx, dy], 20); + + root.innerHTML = asSvg( + svgDoc( + { + width: 600, + height: 600, + viewBox: "0 0 100 100", + fill: "none", + "stroke-width": 0.2, + }, + curve, + circle(pos, 1, { stroke: "blue" }), + line(sub2([], pos, dir), add2([], pos, dir), { + stroke: "blue", + }), + text([5, 95], vector(2)(dir), { + fill: "black", + "font-size": "2px", + }) + ) + ); +}, 16); diff --git a/examples/spline-tangent/src/static.d.ts b/examples/spline-tangent/src/static.d.ts new file mode 100644 index 0000000000..67d9623753 --- /dev/null +++ b/examples/spline-tangent/src/static.d.ts @@ -0,0 +1,51 @@ +/* Use this file to declare any custom file extensions for importing */ +/* Use this folder to also add/extend a package d.ts file, if needed. */ + +/* CSS MODULES */ +declare module "*.module.css" { + const classes: { [key: string]: string }; + export default classes; +} +declare module "*.module.scss" { + const classes: { [key: string]: string }; + export default classes; +} +declare module "*.module.sass" { + const classes: { [key: string]: string }; + export default classes; +} +declare module "*.module.less" { + const classes: { [key: string]: string }; + export default classes; +} +declare module "*.module.styl" { + const classes: { [key: string]: string }; + export default classes; +} + +/* CSS */ +declare module "*.css"; +declare module "*.scss"; +declare module "*.sass"; +declare module "*.less"; +declare module "*.styl"; + +/* IMAGES */ +declare module "*.svg" { + const ref: string; + export default ref; +} +declare module "*.gif" { + const ref: string; + export default ref; +} +declare module "*.jpg" { + const ref: string; + export default ref; +} +declare module "*.png" { + const ref: string; + export default ref; +} + +/* CUSTOM: ADD YOUR OWN HERE */ diff --git a/examples/spline-tangent/tsconfig.json b/examples/spline-tangent/tsconfig.json new file mode 100644 index 0000000000..48d558b4f8 --- /dev/null +++ b/examples/spline-tangent/tsconfig.json @@ -0,0 +1,8 @@ +{ + "extends": "../tsconfig.json", + "include": ["src"], + "compilerOptions": { + "baseUrl": "./", + "paths": { "*": ["web_modules/.types/*"] } + } +} From a262e064b234ff6ee9227beb930a16528e8c9fbe Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Thu, 2 Sep 2021 00:33:01 +0200 Subject: [PATCH 56/76] chore(examples): update deps, screenshots, minor changes --- assets/examples/pixel-indexed.jpg | Bin 0 -> 61887 bytes assets/examples/rdom-delayed-update.jpg | Bin 0 -> 56764 bytes assets/examples/spline-tangent.png | Bin 0 -> 58654 bytes examples/adaptive-threshold/package.json | 1 - examples/color-themes/package.json | 6 ++- examples/dominant-colors/package.json | 6 +++ examples/geom-tessel/src/index.ts | 2 +- examples/mandelbrot/src/static.d.ts | 59 ++++++++++++++++++++++ examples/pixel-indexed/package.json | 12 ++--- examples/pixel-sorting/package.json | 1 + examples/rdom-delayed-update/package.json | 16 +++--- examples/rdom-delayed-update/src/index.ts | 16 +++--- examples/rstream-event-loop/package.json | 1 - examples/rstream-hdom/package.json | 1 - examples/shader-ast-tunnel/package.json | 2 +- examples/soa-ecs/package.json | 1 - examples/spline-tangent/package.json | 18 ++++--- examples/text-canvas/package.json | 7 ++- examples/webgl-msdf/package.json | 1 - 19 files changed, 115 insertions(+), 35 deletions(-) create mode 100644 assets/examples/pixel-indexed.jpg create mode 100644 assets/examples/rdom-delayed-update.jpg create mode 100644 assets/examples/spline-tangent.png create mode 100644 examples/mandelbrot/src/static.d.ts diff --git a/assets/examples/pixel-indexed.jpg b/assets/examples/pixel-indexed.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d7a0e2d5a7f54bd55d8f0549d9a79ea51a6fffa5 GIT binary patch literal 61887 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 OKW4wDC0_q?>Hh$Hc@Oyj literal 0 HcmV?d00001 diff --git a/assets/examples/rdom-delayed-update.jpg b/assets/examples/rdom-delayed-update.jpg new file mode 100644 index 0000000000000000000000000000000000000000..907d6bc6681bd096bf3f5d4eba4294589440df96 GIT binary patch literal 56764 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", "license": "Apache-2.0", @@ -14,8 +14,9 @@ "@thi.ng/snowpack-env": "^2.3.3" }, "dependencies": { - "@thi.ng/api": "latest", - "@thi.ng/rdom": "latest" + "@thi.ng/color": "latest", + "@thi.ng/color-palettes": "latest", + "@thi.ng/pixel": "latest" }, "browserslist": [ "last 3 Chrome versions" @@ -24,8 +25,7 @@ "process": false }, "thi.ng": { - "skip": true, - "readme": false, - "screenshot": "examples/" + "readme": true, + "screenshot": "examples/pixel-indexed.jpg" } } diff --git a/examples/pixel-sorting/package.json b/examples/pixel-sorting/package.json index 3dbed45bf5..8c9df13cc0 100644 --- a/examples/pixel-sorting/package.json +++ b/examples/pixel-sorting/package.json @@ -14,6 +14,7 @@ "@thi.ng/snowpack-env": "^2.3.3" }, "dependencies": { + "@thi.ng/bench": "latest", "@thi.ng/color": "latest", "@thi.ng/hiccup-html": "latest", "@thi.ng/intervals": "latest", diff --git a/examples/rdom-delayed-update/package.json b/examples/rdom-delayed-update/package.json index 16089af191..b24bdeb9cb 100644 --- a/examples/rdom-delayed-update/package.json +++ b/examples/rdom-delayed-update/package.json @@ -1,7 +1,7 @@ { "name": "rdom-delayed-update", "version": "0.0.1", - "description": "TODO", + "description": "Dynamically loaded images w/ preloader state", "repository": "https://github.com/thi-ng/umbrella", "author": "Karsten Schmidt ", "license": "Apache-2.0", @@ -14,8 +14,11 @@ "@thi.ng/snowpack-env": "^2.3.3" }, "dependencies": { - "@thi.ng/api": "latest", - "@thi.ng/rdom": "latest" + "@thi.ng/compose": "latest", + "@thi.ng/random": "latest", + "@thi.ng/rdom": "latest", + "@thi.ng/rstream": "latest", + "@thi.ng/transducers": "latest" }, "browserslist": [ "last 3 Chrome versions" @@ -24,8 +27,9 @@ "process": false }, "thi.ng": { - "skip": true, - "readme": false, - "screenshot": "examples/" + "readme": [ + "rdom" + ], + "screenshot": "examples/rdom-delayed-update.jpg" } } diff --git a/examples/rdom-delayed-update/src/index.ts b/examples/rdom-delayed-update/src/index.ts index e8fda28b03..8fedd6c01e 100644 --- a/examples/rdom-delayed-update/src/index.ts +++ b/examples/rdom-delayed-update/src/index.ts @@ -16,13 +16,13 @@ interface UserSummary { } const users = reactive([ - { id: 1, name: "alice" }, - { id: 2, name: "bob" }, - { id: 3, name: "charlie" }, - { id: 4, name: "dora" }, - { id: 5, name: "emma" }, - { id: 6, name: "fred" }, - { id: 7, name: "gina" }, + { id: 1, name: "Alice" }, + { id: 2, name: "Bob" }, + { id: 3, name: "Charlie" }, + { id: 4, name: "Dora" }, + { id: 5, name: "Emma" }, + { id: 6, name: "Fred" }, + { id: 7, name: "Gina" }, ]); const colors = cycle(["f00", "0ff", "f0f", "f90", "00f", "0f0"]); @@ -90,7 +90,7 @@ class UserComponent extends Component { [ "h3.pa2.ma0.f6", {}, - `Project #${this.user.id}: ${this.user.name}`, + `User #${this.user.id}: ${this.user.name}`, ], ]), parent, diff --git a/examples/rstream-event-loop/package.json b/examples/rstream-event-loop/package.json index 74a4a13e84..222e26fd78 100644 --- a/examples/rstream-event-loop/package.json +++ b/examples/rstream-event-loop/package.json @@ -12,7 +12,6 @@ }, "dependencies": { "@thi.ng/api": "latest", - "@thi.ng/arrays": "latest", "@thi.ng/paths": "latest", "@thi.ng/rstream": "latest", "@thi.ng/transducers": "latest", diff --git a/examples/rstream-hdom/package.json b/examples/rstream-hdom/package.json index 817cdb27ae..885bed9181 100644 --- a/examples/rstream-hdom/package.json +++ b/examples/rstream-hdom/package.json @@ -11,7 +11,6 @@ "build": "../../node_modules/.bin/snowpack build" }, "dependencies": { - "@thi.ng/arrays": "latest", "@thi.ng/rstream": "latest", "@thi.ng/transducers": "latest", "@thi.ng/transducers-hdom": "latest" diff --git a/examples/shader-ast-tunnel/package.json b/examples/shader-ast-tunnel/package.json index 4e601d3882..029622144e 100644 --- a/examples/shader-ast-tunnel/package.json +++ b/examples/shader-ast-tunnel/package.json @@ -11,8 +11,8 @@ "build": "../../node_modules/.bin/snowpack build" }, "dependencies": { - "@thi.ng/binary": "latest", "@thi.ng/color": "latest", + "@thi.ng/pixel": "latest", "@thi.ng/shader-ast": "latest", "@thi.ng/shader-ast-glsl": "latest", "@thi.ng/shader-ast-js": "latest", diff --git a/examples/soa-ecs/package.json b/examples/soa-ecs/package.json index 936615ccf2..f5837d5b20 100644 --- a/examples/soa-ecs/package.json +++ b/examples/soa-ecs/package.json @@ -12,7 +12,6 @@ }, "dependencies": { "@thi.ng/adapt-dpi": "latest", - "@thi.ng/api": "latest", "@thi.ng/ecs": "latest", "@thi.ng/hdom": "latest", "@thi.ng/hdom-components": "latest", diff --git a/examples/spline-tangent/package.json b/examples/spline-tangent/package.json index cf433f7f65..1a5a81f7fc 100644 --- a/examples/spline-tangent/package.json +++ b/examples/spline-tangent/package.json @@ -1,7 +1,7 @@ { "name": "spline-tangent", "version": "0.0.1", - "description": "Cubic spline position & tangent via Dual Numbers", + "description": "Compute cubic spline position & tangent using Dual Numbers", "repository": "https://github.com/thi-ng/umbrella", "author": "Karsten Schmidt ", "license": "Apache-2.0", @@ -14,8 +14,11 @@ "@thi.ng/snowpack-env": "^2.3.3" }, "dependencies": { - "@thi.ng/api": "latest", - "@thi.ng/rdom": "latest" + "@thi.ng/dual-algebra": "latest", + "@thi.ng/geom": "latest", + "@thi.ng/math": "latest", + "@thi.ng/strings": "latest", + "@thi.ng/vectors": "latest" }, "browserslist": [ "last 3 Chrome versions" @@ -24,8 +27,11 @@ "process": false }, "thi.ng": { - "skip": true, - "readme": false, - "screenshot": "examples/" + "readme": [ + "dual-algebra", + "geom", + "vectors" + ], + "screenshot": "examples/spline-tangent.png" } } diff --git a/examples/text-canvas/package.json b/examples/text-canvas/package.json index 9f3badb15b..df1049e2da 100644 --- a/examples/text-canvas/package.json +++ b/examples/text-canvas/package.json @@ -24,7 +24,12 @@ "process": false }, "thi.ng": { - "readme": true, + "readme": [ + "geom", + "matrices", + "text-canvas", + "vectors" + ], "screenshot": "examples/text-canvas.png" }, "devDependencies": { diff --git a/examples/webgl-msdf/package.json b/examples/webgl-msdf/package.json index 541a216dd6..7587a0851d 100644 --- a/examples/webgl-msdf/package.json +++ b/examples/webgl-msdf/package.json @@ -12,7 +12,6 @@ }, "dependencies": { "@thi.ng/adapt-dpi": "latest", - "@thi.ng/api": "latest", "@thi.ng/hdom": "latest", "@thi.ng/hdom-components": "latest", "@thi.ng/math": "latest", From 238f6ee915e45844ff4281bcc6591b0ba6d1c339 Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Thu, 2 Sep 2021 00:33:40 +0200 Subject: [PATCH 57/76] docs(examples): update table of examples (now 105) --- examples/README.md | 104 +++++++++++++++++++++++---------------------- 1 file changed, 53 insertions(+), 51 deletions(-) diff --git a/examples/README.md b/examples/README.md index 2895f6db07..9f183cf811 100644 --- a/examples/README.md +++ b/examples/README.md @@ -1,7 +1,7 @@ # @thi.ng/umbrella examples -This directory contains a growing number (currently 102) of standalone +This directory contains a growing number (currently 105) of standalone example projects, including live online versions, build instructions and commented source code. @@ -9,7 +9,7 @@ If you want to [contribute](../CONTRIBUTING.md) an example, please get in touch via PR, issue tracker, email or twitter! | # | Screenshot | Name | Description | -| --- | ----------------------------------------------------------------------------- | ------------------------------------------------- | -------------------------------------------------------------------------------- | +|:----|:------------------------------------------------------------------------------|:--------------------------------------------------|:---------------------------------------------------------------------------------| | 001 | | [adaptive-threshold](./adaptive-threshold/) | Interactive image processing (adaptive threshold) | | 002 | | [async-effect](./async-effect/) | Minimal demo using interceptors with an async side effect | | 003 | | [bitmap-font](./bitmap-font/) | Figlet-style bitmap font creation with transducers | @@ -64,52 +64,54 @@ in touch via PR, issue tracker, email or twitter! | 052 | | [package-stats](./package-stats/) | CLI util to visualize umbrella pkg stats | | 053 | | [parse-playground](./parse-playground/) | Parser grammar livecoding editor/playground & codegen | | 054 | | [pixel-basics](./pixel-basics/) | Pixel buffer manipulations | -| 055 | | [pixel-sorting](./pixel-sorting/) | Interactive pixel sorting tool using thi.ng/color & thi.ng/pixel | -| 056 | | [pointfree-svg](./pointfree-svg/) | Generate SVG using pointfree DSL | -| 057 | | [poisson-circles](./poisson-circles/) | 2D Poisson-disc sampler with procedural gradient map | -| 058 | | [poly-spline](./poly-spline/) | Polygon to cubic curve conversion & visualization | -| 059 | | [porter-duff](./porter-duff/) | Port-Duff image compositing / alpha blending | -| 060 | | [ramp-synth](./ramp-synth/) | Unison wavetable synth with waveform editor | -| 061 | | [rdom-basics](./rdom-basics/) | Demonstates various rdom usage patterns | -| 062 | | [rdom-dnd](./rdom-dnd/) | rdom drag & drop example | -| 063 | | [rdom-lissajous](./rdom-lissajous/) | rdom & hiccup-canvas interop test | -| 064 | | [rdom-search-docs](./rdom-search-docs/) | Full umbrella repo doc string search w/ paginated results | -| 065 | | [rdom-svg-nodes](./rdom-svg-nodes/) | rdom powered SVG graph with draggable nodes | -| 066 | | [rotating-voronoi](./rotating-voronoi/) | Animated Voronoi diagram, cubic splines & SVG download | -| 067 | | [router-basics](./router-basics/) | Complete mini SPA app w/ router & async content loading | -| 068 | | [rstream-dataflow](./rstream-dataflow/) | Minimal rstream dataflow graph | -| 069 | | [rstream-event-loop](./rstream-event-loop/) | Minimal demo of using rstream constructs to form an interceptor-style event loop | -| 070 | | [rstream-grid](./rstream-grid/) | Interactive grid generator, SVG generation & export, undo/redo support | -| 071 | | [rstream-hdom](./rstream-hdom/) | rstream based UI updates & state handling | -| 072 | | [rstream-spreadsheet](./rstream-spreadsheet/) | rstream based spreadsheet w/ S-expression formula DSL | -| 073 | | [scenegraph](./scenegraph/) | 2D scenegraph & shape picking | -| 074 | | [scenegraph-image](./scenegraph-image/) | 2D scenegraph & image map based geometry manipulation | -| 075 | | [shader-ast-canvas2d](./shader-ast-canvas2d/) | 2D canvas shader emulation | -| 076 | | [shader-ast-evo](./shader-ast-evo/) | Evolutionary shader generation using genetic programming | -| 077 | | [shader-ast-noise](./shader-ast-noise/) | HOF shader procedural noise function composition | -| 078 | | [shader-ast-raymarch](./shader-ast-raymarch/) | WebGL & JS canvas2D raymarch shader cross-compilation | -| 079 | | [shader-ast-sdf2d](./shader-ast-sdf2d/) | WebGL & JS canvas 2D SDF | -| 080 | | [shader-ast-tunnel](./shader-ast-tunnel/) | WebGL & Canvas2D textured tunnel shader | -| 081 | | [shader-ast-workers](./shader-ast-workers/) | Fork-join worker-based raymarch renderer | -| 082 | | [shader-graph](./shader-graph/) | Minimal shader graph developed during livestream #2 | -| 083 | | [soa-ecs](./soa-ecs/) | Entity Component System w/ 100k 3D particles | -| 084 | | [stratified-grid](./stratified-grid/) | 2D Stratified grid sampling example | -| 085 | | [svg-barchart](./svg-barchart/) | Simplistic SVG bar chart component | -| 086 | | [svg-particles](./svg-particles/) | Basic 2D particle system w/ SVG shapes | -| 087 | | [svg-waveform](./svg-waveform/) | Additive waveform synthesis & SVG visualization with undo/redo | -| 088 | | [talk-slides](./talk-slides/) | hdom based slide deck viewer & slides from my ClojureX 2018 keynote | -| 089 | | [text-canvas](./text-canvas/) | 3D wireframe textmode demo | -| 090 | | [text-canvas-image](./text-canvas-image/) | Textmode image warping w/ 16bit color output | -| 091 | | [todo-list](./todo-list/) | Obligatory to-do list example with undo/redo | -| 092 | | [transducers-hdom](./transducers-hdom/) | Transducer & rstream based hdom UI updates | -| 093 | | [triple-query](./triple-query/) | Triple store query results & sortable table | -| 094 | | [webgl-cube](./webgl-cube/) | WebGL multi-colored cube mesh | -| 095 | | [webgl-cubemap](./webgl-cubemap/) | WebGL cube maps with async texture loading | -| 096 | | [webgl-grid](./webgl-grid/) | WebGL instancing, animated grid | -| 097 | | [webgl-msdf](./webgl-msdf/) | WebGL MSDF text rendering & particle system | -| 098 | | [webgl-multipass](./webgl-multipass/) | Minimal multi-pass / GPGPU example | -| 099 | | [webgl-shadertoy](./webgl-shadertoy/) | Shadertoy-like WebGL setup | -| 100 | | [webgl-ssao](./webgl-ssao/) | WebGL screenspace ambient occlusion | -| 101 | | [wolfram](./wolfram/) | 1D Wolfram automata with OBJ point cloud export | -| 102 | | [xml-converter](./xml-converter/) | XML/HTML/SVG to hiccup/JS conversion | - +| 055 | | [pixel-indexed](./pixel-indexed/) | Image dithering and remapping using indexed palettes | +| 056 | | [pixel-sorting](./pixel-sorting/) | Interactive pixel sorting tool using thi.ng/color & thi.ng/pixel | +| 057 | | [pointfree-svg](./pointfree-svg/) | Generate SVG using pointfree DSL | +| 058 | | [poisson-circles](./poisson-circles/) | 2D Poisson-disc sampler with procedural gradient map | +| 059 | | [poly-spline](./poly-spline/) | Polygon to cubic curve conversion & visualization | +| 060 | | [porter-duff](./porter-duff/) | Port-Duff image compositing / alpha blending | +| 061 | | [ramp-synth](./ramp-synth/) | Unison wavetable synth with waveform editor | +| 062 | | [rdom-basics](./rdom-basics/) | Demonstates various rdom usage patterns | +| 063 | | [rdom-delayed-update](./rdom-delayed-update/) | Dynamically loaded images w/ preloader state | +| 064 | | [rdom-dnd](./rdom-dnd/) | rdom drag & drop example | +| 065 | | [rdom-lissajous](./rdom-lissajous/) | rdom & hiccup-canvas interop test | +| 066 | | [rdom-search-docs](./rdom-search-docs/) | Full umbrella repo doc string search w/ paginated results | +| 067 | | [rdom-svg-nodes](./rdom-svg-nodes/) | rdom powered SVG graph with draggable nodes | +| 068 | | [rotating-voronoi](./rotating-voronoi/) | Animated Voronoi diagram, cubic splines & SVG download | +| 069 | | [router-basics](./router-basics/) | Complete mini SPA app w/ router & async content loading | +| 070 | | [rstream-dataflow](./rstream-dataflow/) | Minimal rstream dataflow graph | +| 071 | | [rstream-event-loop](./rstream-event-loop/) | Minimal demo of using rstream constructs to form an interceptor-style event loop | +| 072 | | [rstream-grid](./rstream-grid/) | Interactive grid generator, SVG generation & export, undo/redo support | +| 073 | | [rstream-hdom](./rstream-hdom/) | rstream based UI updates & state handling | +| 074 | | [rstream-spreadsheet](./rstream-spreadsheet/) | rstream based spreadsheet w/ S-expression formula DSL | +| 075 | | [scenegraph](./scenegraph/) | 2D scenegraph & shape picking | +| 076 | | [scenegraph-image](./scenegraph-image/) | 2D scenegraph & image map based geometry manipulation | +| 077 | | [shader-ast-canvas2d](./shader-ast-canvas2d/) | 2D canvas shader emulation | +| 078 | | [shader-ast-evo](./shader-ast-evo/) | Evolutionary shader generation using genetic programming | +| 079 | | [shader-ast-noise](./shader-ast-noise/) | HOF shader procedural noise function composition | +| 080 | | [shader-ast-raymarch](./shader-ast-raymarch/) | WebGL & JS canvas2D raymarch shader cross-compilation | +| 081 | | [shader-ast-sdf2d](./shader-ast-sdf2d/) | WebGL & JS canvas 2D SDF | +| 082 | | [shader-ast-tunnel](./shader-ast-tunnel/) | WebGL & Canvas2D textured tunnel shader | +| 083 | | [shader-ast-workers](./shader-ast-workers/) | Fork-join worker-based raymarch renderer | +| 084 | | [shader-graph](./shader-graph/) | Minimal shader graph developed during livestream #2 | +| 085 | | [soa-ecs](./soa-ecs/) | Entity Component System w/ 100k 3D particles | +| 086 | | [spline-tangent](./spline-tangent/) | Compute cubic spline position & tangent using Dual Numbers | +| 087 | | [stratified-grid](./stratified-grid/) | 2D Stratified grid sampling example | +| 088 | | [svg-barchart](./svg-barchart/) | Simplistic SVG bar chart component | +| 089 | | [svg-particles](./svg-particles/) | Basic 2D particle system w/ SVG shapes | +| 090 | | [svg-waveform](./svg-waveform/) | Additive waveform synthesis & SVG visualization with undo/redo | +| 091 | | [talk-slides](./talk-slides/) | hdom based slide deck viewer & slides from my ClojureX 2018 keynote | +| 092 | | [text-canvas](./text-canvas/) | 3D wireframe textmode demo | +| 093 | | [text-canvas-image](./text-canvas-image/) | Textmode image warping w/ 16bit color output | +| 094 | | [todo-list](./todo-list/) | Obligatory to-do list example with undo/redo | +| 095 | | [transducers-hdom](./transducers-hdom/) | Transducer & rstream based hdom UI updates | +| 096 | | [triple-query](./triple-query/) | Triple store query results & sortable table | +| 097 | | [webgl-cube](./webgl-cube/) | WebGL multi-colored cube mesh | +| 098 | | [webgl-cubemap](./webgl-cubemap/) | WebGL cube maps with async texture loading | +| 099 | | [webgl-grid](./webgl-grid/) | WebGL instancing, animated grid | +| 100 | | [webgl-msdf](./webgl-msdf/) | WebGL MSDF text rendering & particle system | +| 101 | | [webgl-multipass](./webgl-multipass/) | Minimal multi-pass / GPGPU example | +| 102 | | [webgl-shadertoy](./webgl-shadertoy/) | Shadertoy-like WebGL setup | +| 103 | | [webgl-ssao](./webgl-ssao/) | WebGL screenspace ambient occlusion | +| 104 | | [wolfram](./wolfram/) | 1D Wolfram automata with OBJ point cloud export | +| 105 | | [xml-converter](./xml-converter/) | XML/HTML/SVG to hiccup/JS conversion | From 04483176c1fa9c0ed7b19f9f3e92d8292abe9b0c Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Thu, 2 Sep 2021 00:34:25 +0200 Subject: [PATCH 58/76] feat(tools): add err handling for check-imports tool --- tools/src/check-imports.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tools/src/check-imports.ts b/tools/src/check-imports.ts index 8b8f140fe0..ae6d21cef5 100644 --- a/tools/src/check-imports.ts +++ b/tools/src/check-imports.ts @@ -61,7 +61,11 @@ const updateProjects = (parent: string, latest = false) => { for (let pkg of readdirSync(parent)) { pkg = `${parent}/${pkg}`; if (statSync(pkg).isDirectory()) { - updateImports(pkg, latest); + try { + updateImports(pkg, latest); + } catch (e) { + console.warn("\terror processing package", pkg); + } } } }; From 45cdcc052991febfaff9109bd5983b9856e829dd Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Thu, 2 Sep 2021 00:37:40 +0200 Subject: [PATCH 59/76] docs(examples): fix image url --- examples/pixel-indexed/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/pixel-indexed/README.md b/examples/pixel-indexed/README.md index 48ba34e66d..7e5762ecc3 100644 --- a/examples/pixel-indexed/README.md +++ b/examples/pixel-indexed/README.md @@ -1,6 +1,6 @@ # pixel-indexed -![screenshot](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/pixel/pixel-indexed.png) +![screenshot](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/pixel/pixel-indexed.jpg) [Live demo](http://demo.thi.ng/umbrella/pixel-indexed/) From 5dae3e17a6a98c141c344ea10ff9ec3875a4df7a Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Thu, 2 Sep 2021 00:38:32 +0200 Subject: [PATCH 60/76] docs(examples): fix image url --- examples/pixel-indexed/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/pixel-indexed/README.md b/examples/pixel-indexed/README.md index 7e5762ecc3..0fc15861c2 100644 --- a/examples/pixel-indexed/README.md +++ b/examples/pixel-indexed/README.md @@ -1,6 +1,6 @@ # pixel-indexed -![screenshot](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/pixel/pixel-indexed.jpg) +![screenshot](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/pixel-indexed.jpg) [Live demo](http://demo.thi.ng/umbrella/pixel-indexed/) From 282e7b44e949fb4e66ae792a472dcfae43724511 Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Fri, 3 Sep 2021 09:54:38 +0200 Subject: [PATCH 61/76] build: update deps, incl. TS4.4.2 --- package.json | 30 ++-- yarn.lock | 407 ++++++++++++++++++++++++++++----------------------- 2 files changed, 239 insertions(+), 198 deletions(-) diff --git a/package.json b/package.json index cbeabe954f..83870f8e70 100644 --- a/package.json +++ b/package.json @@ -5,33 +5,33 @@ ], "devDependencies": { "@istanbuljs/nyc-config-typescript": "^1.0.1", - "@microsoft/api-documenter": "^7.13.34", - "@microsoft/api-extractor": "^7.18.4", + "@microsoft/api-documenter": "^7.13.44", + "@microsoft/api-extractor": "^7.18.7", "@snowpack/plugin-typescript": "^1.2.1", "@snowpack/plugin-webpack": "^3.0.0", "@types/mocha": "^9.0.0", - "@types/node": "^16.4.11", + "@types/node": "^16.7.10", "@types/snowpack-env": "^2.3.4", "benchmark": "^2.1.4", - "browserslist": "^4.16.7", + "browserslist": "^4.16.8", "file-loader": "^6.2.0", "gzip-size": "^6.0.0", - "html-minifier-terser": "^5.1.1", + "html-minifier-terser": "^6.0.2", "lerna": "^4.0.0", - "mocha": "^9.0.3", + "mocha": "^9.1.1", "nyc": "^15.1.0", "postcss": "^8.3.6", "rimraf": "^3.0.2", - "rollup": "^2.55.1", + "rollup": "^2.56.3", "rollup-plugin-cleanup": "^3.2.1", - "snowpack": "^3.8.3", - "terser": "^5.7.1", + "snowpack": "^3.8.8", + "terser": "^5.7.2", "ts-loader": "^9.2.5", - "ts-node": "^10.1.0", - "typedoc": "^0.21.5", - "typescript": "4.3.5", - "webpack": "^5.48.0", - "webpack-cli": "^4.7.2" + "ts-node": "^10.2.1", + "typedoc": "^0.21.9", + "typescript": "4.4.2", + "webpack": "^5.51.2", + "webpack-cli": "^4.8.0" }, "dependencies": { "@ygoe/msgpack": "^1.0.3" @@ -59,6 +59,6 @@ "tool:searchindex": "ts-node -P tools/tsconfig.json tools/src/build-search-index.ts" }, "resolutions": { - "typescript": "4.3.5" + "typescript": "4.4.2" } } diff --git a/yarn.lock b/yarn.lock index aebdb59a53..f025eb333d 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1086,6 +1086,18 @@ "@babel/helper-validator-identifier" "^7.14.5" to-fast-properties "^2.0.0" +"@cspotcode/source-map-consumer@0.8.0": + version "0.8.0" + resolved "https://registry.yarnpkg.com/@cspotcode/source-map-consumer/-/source-map-consumer-0.8.0.tgz#33bf4b7b39c178821606f669bbc447a6a629786b" + integrity sha512-41qniHzTU8yAGbCp04ohlmSrZf8bkf/iJsl3V0dRGsQN/5GFfx+LbCSsCpp2gqrqjTVg/K6O8ycoV35JIwAzAg== + +"@cspotcode/source-map-support@0.6.1": + version "0.6.1" + resolved "https://registry.yarnpkg.com/@cspotcode/source-map-support/-/source-map-support-0.6.1.tgz#118511f316e2e87ee4294761868e254d3da47960" + integrity sha512-DX3Z+T5dt1ockmPdobJS/FAsQPW4V4SrWEhD2iYQT2Cb2tQsiMnYxrcUH9By/Z3B+v0S5LMBkQtV/XOBbpLEOg== + dependencies: + "@cspotcode/source-map-consumer" "0.8.0" + "@discoveryjs/json-ext@^0.5.0": version "0.5.2" resolved "https://registry.yarnpkg.com/@discoveryjs/json-ext/-/json-ext-0.5.2.tgz#8f03a22a04de437254e8ce8cc84ba39689288752" @@ -1785,39 +1797,39 @@ npmlog "^4.1.2" write-file-atomic "^3.0.3" -"@microsoft/api-documenter@^7.13.34": - version "7.13.34" - resolved "https://registry.yarnpkg.com/@microsoft/api-documenter/-/api-documenter-7.13.34.tgz#f56866a574ca835f74f3eaaf342eb32eecfef69a" - integrity sha512-da15qQlV7j/cpWPVb/fdOh4KpXprerPg7Zka6cFPF+HPZtpPu+cFqdigaHZLdhcAOkSFbrH668a34oEKemfySA== +"@microsoft/api-documenter@^7.13.44": + version "7.13.44" + resolved "https://registry.yarnpkg.com/@microsoft/api-documenter/-/api-documenter-7.13.44.tgz#81c235985735965da0e98d5623db9b8e4cd10b80" + integrity sha512-vNLyHpeHfZQCg+G7ksmPTyOEAlr0HRpzun/CBR0r1OxXBfTBs8FPEJnYsbroWxFMyxuVs7K6O5e4uXUQN+yBkQ== dependencies: - "@microsoft/api-extractor-model" "7.13.4" + "@microsoft/api-extractor-model" "7.13.5" "@microsoft/tsdoc" "0.13.2" - "@rushstack/node-core-library" "3.39.1" - "@rushstack/ts-command-line" "4.8.1" + "@rushstack/node-core-library" "3.40.0" + "@rushstack/ts-command-line" "4.9.0" colors "~1.2.1" js-yaml "~3.13.1" resolve "~1.17.0" -"@microsoft/api-extractor-model@7.13.4": - version "7.13.4" - resolved "https://registry.yarnpkg.com/@microsoft/api-extractor-model/-/api-extractor-model-7.13.4.tgz#bff4a52a35da5d9896650041d4f7a769c970da60" - integrity sha512-NYaR3hJinh089/Gkee8fvmEFf9zKkoUvNxgkqUlKBCDXH2+Ou4tNDuL8G6zjhKBPicHkp2VcL8l7q9H6txUkjQ== +"@microsoft/api-extractor-model@7.13.5": + version "7.13.5" + resolved "https://registry.yarnpkg.com/@microsoft/api-extractor-model/-/api-extractor-model-7.13.5.tgz#7836a81ba47b9a654062ed0361e4eee69afae51e" + integrity sha512-il6AebNltYo5hEtqXZw4DMvrwBPn6+F58TxwqmsLY+U+sSJNxaYn2jYksArrjErXVPR3gUgRMqD6zsdIkg+WEQ== dependencies: "@microsoft/tsdoc" "0.13.2" "@microsoft/tsdoc-config" "~0.15.2" - "@rushstack/node-core-library" "3.39.1" + "@rushstack/node-core-library" "3.40.0" -"@microsoft/api-extractor@^7.18.4": - version "7.18.4" - resolved "https://registry.yarnpkg.com/@microsoft/api-extractor/-/api-extractor-7.18.4.tgz#2d7641b36d323b4ac710d838a972be7e4f14d32b" - integrity sha512-Wx45VuIAu09Pk9Qwzt0I57OX31BaWO2r6+mfSXqYFsJjYTqwUkdFh92G1GKYgvuR9oF/ai7w10wrFpx5WZYbGg== +"@microsoft/api-extractor@^7.18.7": + version "7.18.7" + resolved "https://registry.yarnpkg.com/@microsoft/api-extractor/-/api-extractor-7.18.7.tgz#851d2413a3c5d696f7cc914eb59de7a7882b2e8b" + integrity sha512-JhtV8LoyLuIecbgCPyZQg08G1kngIRWpai2UzwNil9mGVGYiDZVeeKx8c2phmlPcogmMDm4oQROxyuiYt5sJiw== dependencies: - "@microsoft/api-extractor-model" "7.13.4" + "@microsoft/api-extractor-model" "7.13.5" "@microsoft/tsdoc" "0.13.2" "@microsoft/tsdoc-config" "~0.15.2" - "@rushstack/node-core-library" "3.39.1" - "@rushstack/rig-package" "0.2.13" - "@rushstack/ts-command-line" "4.8.1" + "@rushstack/node-core-library" "3.40.0" + "@rushstack/rig-package" "0.3.0" + "@rushstack/ts-command-line" "4.9.0" colors "~1.2.1" lodash "~4.17.15" resolve "~1.17.0" @@ -2183,10 +2195,10 @@ estree-walker "^1.0.1" picomatch "^2.2.2" -"@rushstack/node-core-library@3.39.1": - version "3.39.1" - resolved "https://registry.yarnpkg.com/@rushstack/node-core-library/-/node-core-library-3.39.1.tgz#dd1dc270e3035ac4de270f0ca80c25724ce19cc7" - integrity sha512-HHgMEHZTXQ3NjpQzWd5+fSt2Eod9yFwj6qBPbaeaNtDNkOL8wbLoxVimQNtcH0Qhn4wxF5u2NTDNFsxf2yd1jw== +"@rushstack/node-core-library@3.40.0": + version "3.40.0" + resolved "https://registry.yarnpkg.com/@rushstack/node-core-library/-/node-core-library-3.40.0.tgz#2551915ea34e34ec2abb7172b9d7f4546144d9d4" + integrity sha512-P6uMPI7cqTdawLSPAG5BQrBu1MHlGRPqecp7ruIRgyukIEzkmh0QAnje4jAL/l1r3hw0qe4e+Dz5ZSnukT/Egg== dependencies: "@types/node" "10.17.13" colors "~1.2.1" @@ -2198,18 +2210,18 @@ timsort "~0.3.0" z-schema "~3.18.3" -"@rushstack/rig-package@0.2.13": - version "0.2.13" - resolved "https://registry.yarnpkg.com/@rushstack/rig-package/-/rig-package-0.2.13.tgz#418f0aeb4c9b33bd8bd2547759fc0ae91fd970c7" - integrity sha512-qQMAFKvfb2ooaWU9DrGIK9d8QfyHy/HiuITJbWenlKgzcDXQvQgEduk57YF4Y7LLasDJ5ZzLaaXwlfX8qCRe5Q== +"@rushstack/rig-package@0.3.0": + version "0.3.0" + resolved "https://registry.yarnpkg.com/@rushstack/rig-package/-/rig-package-0.3.0.tgz#334ad2846797861361b3445d4cc9ae9164b1885c" + integrity sha512-Lj6noF7Q4BBm1hKiBDw94e6uZvq1xlBwM/d2cBFaPqXeGdV+G6r3qaCWfRiSXK0pcHpGGpV5Tb2MdfhVcO6G/g== dependencies: resolve "~1.17.0" strip-json-comments "~3.1.1" -"@rushstack/ts-command-line@4.8.1": - version "4.8.1" - resolved "https://registry.yarnpkg.com/@rushstack/ts-command-line/-/ts-command-line-4.8.1.tgz#c233a0226112338e58e7e4fd219247b4e7cec883" - integrity sha512-rmxvYdCNRbyRs+DYAPye3g6lkCkWHleqO40K8UPvUAzFqEuj6+YCVssBiOmrUDCoM5gaegSNT0wFDYhz24DWtw== +"@rushstack/ts-command-line@4.9.0": + version "4.9.0" + resolved "https://registry.yarnpkg.com/@rushstack/ts-command-line/-/ts-command-line-4.9.0.tgz#781ba42cff73cae097b6d5241b6441e7cc2fe6e0" + integrity sha512-kmT8t+JfnvphISF1C5WwY56RefjwgajhSjs9J4ckvAFXZDXR6F5cvF5/RTh7fGCzIomg8esy2PHO/b52zFoZvA== dependencies: "@types/argparse" "1.0.38" argparse "~1.0.9" @@ -2279,10 +2291,10 @@ resolved "https://registry.yarnpkg.com/@tsconfig/node14/-/node14-1.0.1.tgz#95f2d167ffb9b8d2068b0b235302fafd4df711f2" integrity sha512-509r2+yARFfHHE7T6Puu2jjkoycftovhXRqW328PDXTVGKihlb1P8Z9mMZH04ebyajfRY7dedfGynlrFHJUQCg== -"@tsconfig/node16@^1.0.1": - version "1.0.1" - resolved "https://registry.yarnpkg.com/@tsconfig/node16/-/node16-1.0.1.tgz#a6ca6a9a0ff366af433f42f5f0e124794ff6b8f1" - integrity sha512-FTgBI767POY/lKNDNbIzgAX6miIDBs6NTCbdlDb8TrWovHsSvaVIZDlTqym29C6UqhzwcJx4CYr+AlrMywA0cA== +"@tsconfig/node16@^1.0.2": + version "1.0.2" + resolved "https://registry.yarnpkg.com/@tsconfig/node16/-/node16-1.0.2.tgz#423c77877d0569db20e1fc80885ac4118314010e" + integrity sha512-eZxlbI8GZscaGS7kkc/trHTT5xgrjH3/1n2JDwusC9iahPKWMRvRjJSAN5mCXviuTGQ/lHnhvv8Q1YTpnfz9gA== "@types/argparse@1.0.38": version "1.0.38" @@ -2387,10 +2399,10 @@ resolved "https://registry.yarnpkg.com/@types/node/-/node-10.17.13.tgz#ccebcdb990bd6139cd16e84c39dc2fb1023ca90c" integrity sha512-pMCcqU2zT4TjqYFrWtYHKal7Sl30Ims6ulZ4UFXxI4xbtQqK/qqKwkDoBFCfooRqqmRu9vY3xaJRwxSh673aYg== -"@types/node@^16.4.11": - version "16.4.11" - resolved "https://registry.yarnpkg.com/@types/node/-/node-16.4.11.tgz#245030af802c776c31f00eb0cdde40ee615db462" - integrity sha512-nWSFUbuNiPKJEe1IViuodSI+9cM+vpM8SWF/O6dJK7wmGRNq55U7XavJHrlRrPkSMuUZUFzg1xaZ1B+ZZCrRWw== +"@types/node@^16.7.10": + version "16.7.10" + resolved "https://registry.yarnpkg.com/@types/node/-/node-16.7.10.tgz#7aa732cc47341c12a16b7d562f519c2383b6d4fc" + integrity sha512-S63Dlv4zIPb8x6MMTgDq5WWRJQe56iBEY0O3SOFA9JrRienkOVDXSXBjjJw6HTNQYSE2JI6GMCR6LVbIMHJVvA== "@types/normalize-package-data@^2.4.0": version "2.4.0" @@ -2680,10 +2692,10 @@ dependencies: envinfo "^7.7.3" -"@webpack-cli/serve@^1.5.1": - version "1.5.1" - resolved "https://registry.yarnpkg.com/@webpack-cli/serve/-/serve-1.5.1.tgz#b5fde2f0f79c1e120307c415a4c1d5eb15a6f278" - integrity sha512-4vSVUiOPJLmr45S8rMGy7WDvpWxfFxfP/Qx/cxZFCfvoypTYpPPL1X8VIZMe0WTA+Jr7blUxwUSEZNkjoMTgSw== +"@webpack-cli/serve@^1.5.2": + version "1.5.2" + resolved "https://registry.yarnpkg.com/@webpack-cli/serve/-/serve-1.5.2.tgz#ea584b637ff63c5a477f6f21604b5a205b72c9ec" + integrity sha512-vgJ5OLWadI8aKjDlOH3rb+dYyPd2GTZuQC/Tihjct6F9GpXGZINo3Y/IVuZVTM1eDQB+/AOsjPUWH/WySDaXvw== "@xtuc/ieee754@^1.2.0": version "1.2.0" @@ -2736,6 +2748,11 @@ acorn-walk@^7.1.1: resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc" integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== +acorn-walk@^8.1.1: + version "8.1.1" + resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.1.1.tgz#3ddab7f84e4a7e2313f6c414c5b7dac85f4e3ebc" + integrity sha512-FbJdceMlPHEAWJOILDk1fXD8lnTlEIWFkqtfk+MvmL5q/qlHfN7GEHcsFZWt/Tea9jRNPWUZG4G976nqAAmU9w== + acorn@^7.1.1: version "7.4.0" resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.0.tgz#e1ad486e6c54501634c6c397c5c121daa383607c" @@ -2954,10 +2971,10 @@ asn1@~0.2.3: dependencies: safer-buffer "~2.1.0" -assemblyscript@0.19.8: - version "0.19.8" - resolved "https://registry.yarnpkg.com/assemblyscript/-/assemblyscript-0.19.8.tgz#525684e7092d728aabb977e5c8ee92a0bbc0c587" - integrity sha512-lXJHNbp9mQV8pG+l7SPBSeeLNvXbqD5l0AkJTj1xX0FMaU2QqlelIziZB7pXzgC1OQZEPXYAKKSDHWmg69ieGQ== +assemblyscript@0.19.11: + version "0.19.11" + resolved "https://registry.yarnpkg.com/assemblyscript/-/assemblyscript-0.19.11.tgz#11e61d385b9f0c7cc5ed70a3536540889b0bcf5f" + integrity sha512-Z121H4rHkrHhOswQQ6Nvv0y3UVqBm3Z6ZSYKF7dNDoR608Axd/gJPkPLGI6fVnqZT+fH6s3/erx4P2vUseMa7w== dependencies: binaryen "101.0.0-nightly.20210723" long "^4.0.0" @@ -3162,16 +3179,16 @@ browserslist@^4.16.0, browserslist@^4.16.6: escalade "^3.1.1" node-releases "^1.1.71" -browserslist@^4.16.7: - version "4.16.7" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.7.tgz#108b0d1ef33c4af1b587c54f390e7041178e4335" - integrity sha512-7I4qVwqZltJ7j37wObBe3SoTz+nS8APaNcrBOlgoirb6/HbEU2XxW/LpUDTCngM6iauwFqmRTuOMfyKnFGY5JA== +browserslist@^4.16.8: + version "4.16.8" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.8.tgz#cb868b0b554f137ba6e33de0ecff2eda403c4fb0" + integrity sha512-sc2m9ohR/49sWEbPj14ZSSZqp+kbi16aLao42Hmn3Z8FpjuMaq2xCA2l4zl9ITfyzvnvyE0hcg62YkIGKxgaNQ== dependencies: - caniuse-lite "^1.0.30001248" - colorette "^1.2.2" - electron-to-chromium "^1.3.793" + caniuse-lite "^1.0.30001251" + colorette "^1.3.0" + electron-to-chromium "^1.3.811" escalade "^3.1.1" - node-releases "^1.1.73" + node-releases "^1.1.75" buffer-from@^1.0.0: version "1.1.1" @@ -3297,13 +3314,13 @@ camel-case@^3.0.0: no-case "^2.2.0" upper-case "^1.1.1" -camel-case@^4.1.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-4.1.1.tgz#1fc41c854f00e2f7d0139dfeba1542d6896fe547" - integrity sha512-7fa2WcG4fYFkclIvEmxBbTvmibwF2/agfEBc6q3lOpVu0A13ltLsA+Hr/8Hp6kp5f+G7hKi6t8lys6XxP+1K6Q== +camel-case@^4.1.2: + version "4.1.2" + resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-4.1.2.tgz#9728072a954f805228225a6deea6b38461e1bd5a" + integrity sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw== dependencies: - pascal-case "^3.1.1" - tslib "^1.10.0" + pascal-case "^3.1.2" + tslib "^2.0.3" camelcase-keys@^2.0.0: version "2.1.0" @@ -3352,10 +3369,10 @@ caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001111, caniuse-lite@^1.0.30001164, can resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001235.tgz" integrity sha512-zWEwIVqnzPkSAXOUlQnPW2oKoYb2aLQ4Q5ejdjBcnH63rfypaW34CxaeBn1VMya2XaEU3P/R2qHpWyj+l0BT1A== -caniuse-lite@^1.0.30001248: - version "1.0.30001248" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001248.tgz#26ab45e340f155ea5da2920dadb76a533cb8ebce" - integrity sha512-NwlQbJkxUFJ8nMErnGtT0QTM2TJ33xgz4KXJSMIrjXIbDVdaYueGyjOrLKRtJC+rTiWfi6j5cnZN1NBiSBJGNw== +caniuse-lite@^1.0.30001251: + version "1.0.30001252" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001252.tgz#cb16e4e3dafe948fc4a9bb3307aea054b912019a" + integrity sha512-I56jhWDGMtdILQORdusxBOH+Nl/KgQSdDmpJezYddnAkVOmnoU8zwjTV9xAjMIYxr0iPreEAVylCGcmHCjfaOw== caseless@~0.12.0: version "0.12.0" @@ -3450,13 +3467,20 @@ cjs-module-lexer@^1.2.1: resolved "https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz#9f84ba3244a512f3a54e5277e8eef4c489864e40" integrity sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA== -clean-css@^4.2.1, clean-css@^4.2.3: +clean-css@^4.2.1: version "4.2.3" resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-4.2.3.tgz#507b5de7d97b48ee53d84adb0160ff6216380f78" integrity sha512-VcMWDN54ZN/DS+g58HYL5/n4Zrqe8vHJpGA8KdgUXFU4fuP/aHNw8eld9SyEIyabIMJX/0RaY/fplOo5hYLSFA== dependencies: source-map "~0.6.0" +clean-css@^5.1.5: + version "5.1.5" + resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-5.1.5.tgz#3b0af240dcfc9a3779a08c2332df3ebd4474f232" + integrity sha512-9dr/cU/LjMpU57PXlSvDkVRh0rPxJBXiBtD0+SgYt8ahTCsXtfKjCkNYgIoTC6mBg8CFr5EKhW3DKCaGMUbUfQ== + dependencies: + source-map "~0.6.0" + clean-stack@^2.0.0: version "2.2.0" resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" @@ -3569,6 +3593,11 @@ colorette@^1.2.2: resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.2.2.tgz#cbcc79d5e99caea2dbf10eb3a26fd8b3e6acfa94" integrity sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w== +colorette@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.3.0.tgz#ff45d2f0edb244069d3b772adeb04fed38d0a0af" + integrity sha512-ecORCqbSFP7Wm8Y6lyqMJjexBQqXSF7SSeaTyGGphogUjBlFP9m9o08wy86HL2uB7fMTxtOUzLMk7ogKcxMg1w== + colors@~1.2.1: version "1.2.5" resolved "https://registry.yarnpkg.com/colors/-/colors-1.2.5.tgz#89c7ad9a374bc030df8013241f68136ed8835afc" @@ -3594,11 +3623,6 @@ commander@^2.19.0, commander@^2.20.0, commander@^2.7.1: resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== -commander@^4.1.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068" - integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA== - commander@^7.0.0: version "7.1.0" resolved "https://registry.yarnpkg.com/commander/-/commander-7.1.0.tgz#f2eaecf131f10e36e07d894698226e36ae0eb5ff" @@ -3609,6 +3633,11 @@ commander@^7.1.0: resolved "https://registry.yarnpkg.com/commander/-/commander-7.2.0.tgz#a36cb57d0b501ce108e4d20559a150a391d97ab7" integrity sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw== +commander@^8.1.0: + version "8.1.0" + resolved "https://registry.yarnpkg.com/commander/-/commander-8.1.0.tgz#db36e3e66edf24ff591d639862c6ab2c52664362" + integrity sha512-mf45ldcuHSYShkplHHGKWb4TrmwQadxOn7v4WuhDJy0ZVoY5JFajaRDKD0PNe5qXzBX0rhovjTnP6Kz9LETcuA== + common-ancestor-path@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/common-ancestor-path/-/common-ancestor-path-1.0.1.tgz#4f7d2d1394d91b7abdf51871c62f71eadb0182a7" @@ -4194,13 +4223,13 @@ domutils@^2.5.2, domutils@^2.6.0, domutils@^2.7.0: domelementtype "^2.2.0" domhandler "^4.2.0" -dot-case@^3.0.3: - version "3.0.3" - resolved "https://registry.yarnpkg.com/dot-case/-/dot-case-3.0.3.tgz#21d3b52efaaba2ea5fda875bb1aa8124521cf4aa" - integrity sha512-7hwEmg6RiSQfm/GwPL4AAWXKy3YNNZA3oFv2Pdiey0mwkRCPZ9x6SZbkLcn8Ma5PYeVokzoD4Twv2n7LKp5WeA== +dot-case@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/dot-case/-/dot-case-3.0.4.tgz#9b2b670d00a431667a8a75ba29cd1b98809ce751" + integrity sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w== dependencies: - no-case "^3.0.3" - tslib "^1.10.0" + no-case "^3.0.4" + tslib "^2.0.3" dot-prop@^5.1.0: version "5.2.0" @@ -4244,10 +4273,10 @@ electron-to-chromium@^1.3.723: resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.749.tgz#0ecebc529ceb49dd2a7c838ae425236644c3439a" integrity sha512-F+v2zxZgw/fMwPz/VUGIggG4ZndDsYy0vlpthi3tjmDZlcfbhN5mYW0evXUsBr2sUtuDANFtle410A9u/sd/4A== -electron-to-chromium@^1.3.793: - version "1.3.795" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.795.tgz#91f09b4c77f8dab562dd592ce929b009201c24ff" - integrity sha512-4TPxrLf9Fzsi4rVgTlDm+ubxoXm3/TN67/LGHx/a4UkVubKILa6L26O6eTnHewixG/knzU9L3lLmfL39eElwlQ== +electron-to-chromium@^1.3.811: + version "1.3.827" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.827.tgz#c725e8db8c5be18b472a919e5f57904512df0fc1" + integrity sha512-ye+4uQOY/jbjRutMcE/EmOcNwUeo1qo9aKL2tPyb09cU3lmxNeyDF4RWiemmkknW+p29h7dyDqy02higTxc9/A== emoji-regex@^8.0.0: version "8.0.0" @@ -5086,18 +5115,18 @@ html-escaper@^2.0.0: resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453" integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== -html-minifier-terser@^5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz#922e96f1f3bb60832c2634b79884096389b1f054" - integrity sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg== +html-minifier-terser@^6.0.2: + version "6.0.2" + resolved "https://registry.yarnpkg.com/html-minifier-terser/-/html-minifier-terser-6.0.2.tgz#14059ad64b69bf9f8b8a33f25b53411d8321e75d" + integrity sha512-AgYO3UGhMYQx2S/FBJT3EM0ZYcKmH6m9XL9c1v77BeK/tYJxGPxT1/AtsdUi4FcP8kZGmqqnItCcjFPcX9hk6A== dependencies: - camel-case "^4.1.1" - clean-css "^4.2.3" - commander "^4.1.1" + camel-case "^4.1.2" + clean-css "^5.1.5" + commander "^8.1.0" he "^1.2.0" - param-case "^3.0.3" + param-case "^3.0.4" relateurl "^0.2.7" - terser "^4.6.3" + terser "^5.7.2" html-minifier@^4.0.0: version "4.0.0" @@ -5809,6 +5838,13 @@ json5@^2.1.2: dependencies: minimist "^1.2.5" +json5@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.0.tgz#2dfefe720c6ba525d9ebd909950f0515316c89a3" + integrity sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA== + dependencies: + minimist "^1.2.5" + jsonfile@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" @@ -6107,12 +6143,12 @@ lower-case@^1.1.1: resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-1.1.4.tgz#9a2cabd1b9e8e0ae993a4bf7d5875c39c42e8eac" integrity sha1-miyr0bno4K6ZOkv31YdcOcQujqw= -lower-case@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-2.0.1.tgz#39eeb36e396115cc05e29422eaea9e692c9408c7" - integrity sha512-LiWgfDLLb1dwbFQZsSglpRj+1ctGnayXz3Uv0/WO8n558JycT5fg6zkNcnW0G68Nn0aEldTFeEfmjCfmqry/rQ== +lower-case@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-2.0.2.tgz#6fa237c63dbdc4a82ca0fd882e4722dc5e634e28" + integrity sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg== dependencies: - tslib "^1.10.0" + tslib "^2.0.3" lowercase-keys@^2.0.0: version "2.0.0" @@ -6218,10 +6254,10 @@ map-obj@^4.0.0: resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-4.1.0.tgz#b91221b542734b9f14256c0132c897c5d7256fd5" integrity sha512-glc9y00wgtwcDmp7GaE/0b0OnxpNJsVf3ael/An6Fe2Q51LLwN1er6sdomLRzz5h0+yMpiYLhWYF5R7HeqVd4g== -marked@^2.1.1: - version "2.1.3" - resolved "https://registry.yarnpkg.com/marked/-/marked-2.1.3.tgz#bd017cef6431724fd4b27e0657f5ceb14bff3753" - integrity sha512-/Q+7MGzaETqifOMWYEA7HVMaZb4XbcRfaOzcSsHZEith83KGlvaSG33u0SKu89Mj5h+T8V2hM+8O45Qc5XTgwA== +marked@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/marked/-/marked-3.0.2.tgz#60ce97d6aec34dd882ab4bb4df82494666854e17" + integrity sha512-TMJQQ79Z0e3rJYazY0tIoMsFzteUGw9fB3FD+gzuIT3zLuG9L9ckIvUfF51apdJkcqc208jJN2KbtPbOvXtbjA== mdn-data@2.0.14: version "2.0.14" @@ -6456,10 +6492,10 @@ mkdirp@^1.0.3, mkdirp@^1.0.4: resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== -mocha@^9.0.3: - version "9.0.3" - resolved "https://registry.yarnpkg.com/mocha/-/mocha-9.0.3.tgz#128cd6bbd3ee0adcdaef715f357f76ec1e6227c7" - integrity sha512-hnYFrSefHxYS2XFGtN01x8un0EwNu2bzKvhpRFhgoybIvMaOkkL60IVPmkb5h6XDmUl4IMSB+rT5cIO4/4bJgg== +mocha@^9.1.1: + version "9.1.1" + resolved "https://registry.yarnpkg.com/mocha/-/mocha-9.1.1.tgz#33df2eb9c6262434630510c5f4283b36efda9b61" + integrity sha512-0wE74YMgOkCgBUj8VyIDwmLUjTsS13WV1Pg7l0SHea2qzZzlq7MDnfbPsHKcELBRk3+izEVkRofjmClpycudCA== dependencies: "@ungap/promise-all-settled" "1.1.2" ansi-colors "4.1.1" @@ -6545,13 +6581,13 @@ no-case@^2.2.0: dependencies: lower-case "^1.1.1" -no-case@^3.0.3: - version "3.0.3" - resolved "https://registry.yarnpkg.com/no-case/-/no-case-3.0.3.tgz#c21b434c1ffe48b39087e86cfb4d2582e9df18f8" - integrity sha512-ehY/mVQCf9BL0gKfsJBvFJen+1V//U+0HQMPrWct40ixE4jnv0bfvxDbWtAHL9EcaPEOJHVVYKoQn1TlZUB8Tw== +no-case@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/no-case/-/no-case-3.0.4.tgz#d361fd5c9800f558551a8369fc0dcd4662b6124d" + integrity sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg== dependencies: - lower-case "^2.0.1" - tslib "^1.10.0" + lower-case "^2.0.2" + tslib "^2.0.3" node-fetch@^2.6.1: version "2.6.1" @@ -6613,11 +6649,16 @@ node-releases@^1.1.67: resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.67.tgz#28ebfcccd0baa6aad8e8d4d8fe4cbc49ae239c12" integrity sha512-V5QF9noGFl3EymEwUYzO+3NTDpGfQB4ve6Qfnzf3UNydMhjQRVPR1DZTuvWiLzaFJYw2fmDwAfnRNEVb64hSIg== -node-releases@^1.1.71, node-releases@^1.1.73: +node-releases@^1.1.71: version "1.1.73" resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.73.tgz#dd4e81ddd5277ff846b80b52bb40c49edf7a7b20" integrity sha512-uW7fodD6pyW2FZNZnp/Z3hvWKeEW1Y8R1+1CnErE8cXFXzl5blBOoVB41CvMer6P6Q0S5FXDwcHgFd1Wj0U9zg== +node-releases@^1.1.75: + version "1.1.75" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.75.tgz#6dd8c876b9897a1b8e5a02de26afa79bb54ebbfe" + integrity sha512-Qe5OUajvqrqDSy6wrWFmMwfJ0jVgwiw4T3KqmbTcZ62qW0gQkheXYhcFM1+lOVcGUoRxcEcfyvFMAnDgaF1VWw== + nopt@^4.0.1: version "4.0.3" resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.3.tgz#a375cad9d02fd921278d954c2254d5aa57e15e48" @@ -7151,13 +7192,13 @@ param-case@^2.1.1: dependencies: no-case "^2.2.0" -param-case@^3.0.3: - version "3.0.3" - resolved "https://registry.yarnpkg.com/param-case/-/param-case-3.0.3.tgz#4be41f8399eff621c56eebb829a5e451d9801238" - integrity sha512-VWBVyimc1+QrzappRs7waeN2YmoZFCGXWASRYX1/rGHtXqEcrGEIDm+jqIwFa2fRXNgQEwrxaYuIrX0WcAguTA== +param-case@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/param-case/-/param-case-3.0.4.tgz#7d17fe4aa12bde34d4a77d91acfb6219caad01c5" + integrity sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A== dependencies: - dot-case "^3.0.3" - tslib "^1.10.0" + dot-case "^3.0.4" + tslib "^2.0.3" parent-module@^1.0.0: version "1.0.1" @@ -7235,13 +7276,13 @@ parse5@6.0.1, parse5@^6.0.1: resolved "https://registry.yarnpkg.com/parse5/-/parse5-6.0.1.tgz#e1a1c085c569b3dc08321184f19a39cc27f7c30b" integrity sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw== -pascal-case@^3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/pascal-case/-/pascal-case-3.1.1.tgz#5ac1975133ed619281e88920973d2cd1f279de5f" - integrity sha512-XIeHKqIrsquVTQL2crjq3NfJUxmdLasn3TYOU0VBM+UX2a6ztAWBlJQBePLGY7VHW8+2dRadeIPK5+KImwTxQA== +pascal-case@^3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/pascal-case/-/pascal-case-3.1.2.tgz#b48e0ef2b98e205e7c1dae747d0b1508237660eb" + integrity sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g== dependencies: - no-case "^3.0.3" - tslib "^1.10.0" + no-case "^3.0.4" + tslib "^2.0.3" path-exists@^2.0.0: version "2.1.0" @@ -8202,10 +8243,10 @@ rollup@^2.23.0: optionalDependencies: fsevents "~2.3.2" -rollup@^2.55.1: - version "2.55.1" - resolved "https://registry.yarnpkg.com/rollup/-/rollup-2.55.1.tgz#66a444648e2fb603d8e329e77a61c608a6510fda" - integrity sha512-1P9w5fpb6b4qroePh8vHKGIvPNxwoCQhjJpIqfZGHLKpZ0xcU2/XBmFxFbc9697/6bmHpmFTLk5R1dAQhFSo0g== +rollup@^2.56.3: + version "2.56.3" + resolved "https://registry.yarnpkg.com/rollup/-/rollup-2.56.3.tgz#b63edadd9851b0d618a6d0e6af8201955a77aeff" + integrity sha512-Au92NuznFklgQCUcV96iXlxUbHuB1vQMaH76DHl5M11TotjOHwqk9CwcrT78+Tnv4FN9uTBxq6p4EJoYkpyekg== optionalDependencies: fsevents "~2.3.2" @@ -8365,13 +8406,14 @@ shelljs@^0.8.3: interpret "^1.0.0" rechoir "^0.6.2" -shiki@^0.9.3: - version "0.9.3" - resolved "https://registry.yarnpkg.com/shiki/-/shiki-0.9.3.tgz#7bf7bcf3ed50ca525ec89cc09254abce4264d5ca" - integrity sha512-NEjg1mVbAUrzRv2eIcUt3TG7X9svX7l3n3F5/3OdFq+/BxUdmBOeKGiH4icZJBLHy354Shnj6sfBTemea2e7XA== +shiki@^0.9.8: + version "0.9.10" + resolved "https://registry.yarnpkg.com/shiki/-/shiki-0.9.10.tgz#feb8d4938b5dd71c5c8b1c1c7cd28fbbd37da087" + integrity sha512-xeM7Oc6hY+6iW5O/T5hor8ul7mEprzyl5y4r5zthEHToQNw7MIhREMgU3r2gKDB0NaMLNrkcEQagudCdzE13Lg== dependencies: + json5 "^2.2.0" onigasm "^2.2.5" - vscode-textmate "^5.2.0" + vscode-textmate "5.2.0" signal-exit@^3.0.0, signal-exit@^3.0.2, signal-exit@^3.0.3: version "3.0.3" @@ -8383,7 +8425,7 @@ skip-regex@^1.0.2: resolved "https://registry.yarnpkg.com/skip-regex/-/skip-regex-1.0.2.tgz#ac655d77e7c771ac2b9f37585fea37bff56ad65b" integrity sha512-pEjMUbwJ5Pl/6Vn6FsamXHXItJXSRftcibixDmNCWbWhic0hzHrwkMZo0IZ7fMRH9KxcWDFSkzhccB4285PutA== -skypack@^0.3.0: +skypack@^0.3.2: version "0.3.2" resolved "https://registry.yarnpkg.com/skypack/-/skypack-0.3.2.tgz#9df9fde1ed73ae6874d15111f0636e16f2cab1b9" integrity sha512-je1pix0QYER6iHuUGbgcafRJT5TI+EGUIBfzBLMqo3Wi22I2SzB9TVHQqwKCw8pzJMuHqhVTFEHc3Ey+ra25Sw== @@ -8416,10 +8458,10 @@ smart-buffer@^4.1.0: resolved "https://registry.yarnpkg.com/smart-buffer/-/smart-buffer-4.1.0.tgz#91605c25d91652f4661ea69ccf45f1b331ca21ba" integrity sha512-iVICrxOzCynf/SNaBQCw34eM9jROU/s5rzIhpOvzhzuYHfJR/DhZfDkXiZSgKXfgv26HT3Yni3AV/DGw0cGnnw== -snowpack@^3.8.3: - version "3.8.3" - resolved "https://registry.yarnpkg.com/snowpack/-/snowpack-3.8.3.tgz#5f136dcbe051189ce20092acd36759d03e6cbf87" - integrity sha512-nD699xWIDk9nGH4V9xKjgIVPA8jXWp/crUG46mu3/11rrdEv94v4xV/j373w3EvegGVQ3JdA5mlNpxDU8wk5uw== +snowpack@^3.8.8: + version "3.8.8" + resolved "https://registry.yarnpkg.com/snowpack/-/snowpack-3.8.8.tgz#237f1c0ad49c68313864f3aa4438db3affee0806" + integrity sha512-Y/4V8FdzzYpwmJU2TgXRRFytz+GFSliWULK9J5O6C72KyK60w20JKqCdRtVs1S6BuobCedF5vSBD1Gvtm+gsJg== dependencies: "@npmcli/arborist" "^2.6.4" bufferutil "^4.0.2" @@ -8448,6 +8490,7 @@ snowpack@^3.8.3: isbinaryfile "^4.0.6" jsonschema "~1.2.5" kleur "^4.1.1" + magic-string "^0.25.7" meriyah "^3.1.6" mime-types "^2.1.26" mkdirp "^1.0.3" @@ -8463,7 +8506,7 @@ snowpack@^3.8.3: rimraf "^3.0.0" rollup "~2.37.1" signal-exit "^3.0.3" - skypack "^0.3.0" + skypack "^0.3.2" slash "~3.0.0" source-map "^0.7.3" strip-ansi "^6.0.0" @@ -8515,7 +8558,7 @@ source-map-js@^0.6.2: resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-0.6.2.tgz#0bb5de631b41cfbda6cfba8bd05a80efdfd2385e" integrity sha512-/3GptzWzu0+0MBQFrDKzw/DvvMTUORvgY6k6jd/VS6iCR4RDTKWH6v6WPwQoUO8667uQEf9Oe38DxAYWY5F/Ug== -source-map-support@^0.5.17, source-map-support@~0.5.12, source-map-support@~0.5.19: +source-map-support@~0.5.19: version "0.5.19" resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.19.tgz#a98b62f86dcaf4f67399648c085291ab9e8fed61" integrity sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw== @@ -8886,15 +8929,6 @@ terser-webpack-plugin@^5.1.3: source-map "^0.6.1" terser "^5.7.0" -terser@^4.6.3: - version "4.8.0" - resolved "https://registry.yarnpkg.com/terser/-/terser-4.8.0.tgz#63056343d7c70bb29f3af665865a46fe03a0df17" - integrity sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw== - dependencies: - commander "^2.20.0" - source-map "~0.6.1" - source-map-support "~0.5.12" - terser@^5.7.0: version "5.7.0" resolved "https://registry.yarnpkg.com/terser/-/terser-5.7.0.tgz#a761eeec206bc87b605ab13029876ead938ae693" @@ -8904,10 +8938,10 @@ terser@^5.7.0: source-map "~0.7.2" source-map-support "~0.5.19" -terser@^5.7.1: - version "5.7.1" - resolved "https://registry.yarnpkg.com/terser/-/terser-5.7.1.tgz#2dc7a61009b66bb638305cb2a824763b116bf784" - integrity sha512-b3e+d5JbHAe/JSjwsC3Zn55wsBIM7AsHLjKxT31kGCldgbpFePaFo+PiddtO6uwRZWRw7sPXmAN8dTW61xmnSg== +terser@^5.7.2: + version "5.7.2" + resolved "https://registry.yarnpkg.com/terser/-/terser-5.7.2.tgz#d4d95ed4f8bf735cb933e802f2a1829abf545e3f" + integrity sha512-0Omye+RD4X7X69O0eql3lC4Heh/5iLj3ggxR/B5ketZLOtLiOqukUgjw3q4PDnNQbsrkKr3UMypqStQG3XKRvw== dependencies: commander "^2.20.0" source-map "~0.7.2" @@ -9032,28 +9066,35 @@ ts-loader@^9.2.5: micromatch "^4.0.0" semver "^7.3.4" -ts-node@^10.1.0: - version "10.1.0" - resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-10.1.0.tgz#e656d8ad3b61106938a867f69c39a8ba6efc966e" - integrity sha512-6szn3+J9WyG2hE+5W8e0ruZrzyk1uFLYye6IGMBadnOzDh8aP7t8CbFpsfCiEx2+wMixAhjFt7lOZC4+l+WbEA== +ts-node@^10.2.1: + version "10.2.1" + resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-10.2.1.tgz#4cc93bea0a7aba2179497e65bb08ddfc198b3ab5" + integrity sha512-hCnyOyuGmD5wHleOQX6NIjJtYVIO8bPP8F2acWkB4W06wdlkgyvJtubO/I9NkI88hCFECbsEgoLc0VNkYmcSfw== dependencies: + "@cspotcode/source-map-support" "0.6.1" "@tsconfig/node10" "^1.0.7" "@tsconfig/node12" "^1.0.7" "@tsconfig/node14" "^1.0.0" - "@tsconfig/node16" "^1.0.1" + "@tsconfig/node16" "^1.0.2" + acorn "^8.4.1" + acorn-walk "^8.1.1" arg "^4.1.0" create-require "^1.1.0" diff "^4.0.1" make-error "^1.1.1" - source-map-support "^0.5.17" yn "3.1.1" -tslib@^1.10.0, tslib@^1.9.0: +tslib@^1.9.0: version "1.13.0" resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.13.0.tgz#c881e13cc7015894ed914862d276436fa9a47043" integrity sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q== -tslib@^2.2.0, tslib@^2.3.0: +tslib@^2.0.3, tslib@^2.3.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.3.1.tgz#e8a335add5ceae51aa261d32a490158ef042ef01" + integrity sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw== + +tslib@^2.2.0: version "2.3.0" resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.3.0.tgz#803b8cdab3e12ba581a4ca41c8839bbb0dacb09e" integrity sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg== @@ -9119,24 +9160,24 @@ typedoc-default-themes@^0.12.10: resolved "https://registry.yarnpkg.com/typedoc-default-themes/-/typedoc-default-themes-0.12.10.tgz#614c4222fe642657f37693ea62cad4dafeddf843" integrity sha512-fIS001cAYHkyQPidWXmHuhs8usjP5XVJjWB8oZGqkTowZaz3v7g3KDZeeqE82FBrmkAnIBOY3jgy7lnPnqATbA== -typedoc@^0.21.5: - version "0.21.5" - resolved "https://registry.yarnpkg.com/typedoc/-/typedoc-0.21.5.tgz#45643618ede5c3d75e2040b964d05fcffed7ca58" - integrity sha512-uRDRmYheE5Iju9Zz0X50pTASTpBorIHFt02F5Y8Dt4eBt55h3mwk1CBSY2+EfwBxY16N4Xm7f8KXhnfFZ0AmBw== +typedoc@^0.21.9: + version "0.21.9" + resolved "https://registry.yarnpkg.com/typedoc/-/typedoc-0.21.9.tgz#6fbdc7152024a00f03af53a0ca40f44e91f0f129" + integrity sha512-VRo7aII4bnYaBBM1lhw4bQFmUcDQV8m8tqgjtc7oXl87jc1Slbhfw2X5MccfcR2YnEClHDWgsiQGgNB8KJXocA== dependencies: glob "^7.1.7" handlebars "^4.7.7" lunr "^2.3.9" - marked "^2.1.1" + marked "^3.0.2" minimatch "^3.0.0" progress "^2.0.3" - shiki "^0.9.3" + shiki "^0.9.8" typedoc-default-themes "^0.12.10" -typescript@4.3.5, typescript@~4.3.5: - version "4.3.5" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.3.5.tgz#4d1c37cc16e893973c45a06886b7113234f119f4" - integrity sha512-DqQgihaQ9cUrskJo9kIyW/+g0Vxsk8cDtZ52a3NGh0YNTfpUSArXSohyUGnvbPazEPLu398C0UxmKSOrPumUzA== +typescript@4.4.2, typescript@~4.3.5: + version "4.4.2" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.4.2.tgz#6d618640d430e3569a1dfb44f7d7e600ced3ee86" + integrity sha512-gzP+t5W4hdy4c+68bfcv0t400HVJMMd2+H9B7gae1nQlBzCqvrXX+6GL/b3GAgyTH966pzrZ70/fRjwAtZksSQ== uglify-js@^3.1.4: version "3.13.10" @@ -9324,10 +9365,10 @@ vm2@^3.9.2: resolved "https://registry.yarnpkg.com/vm2/-/vm2-3.9.3.tgz#29917f6cc081cc43a3f580c26c5b553fd3c91f40" integrity sha512-smLS+18RjXYMl9joyJxMNI9l4w7biW8ilSDaVRvFBDwOH8P0BK1ognFQTpg0wyQ6wIKLTblHJvROW692L/E53Q== -vscode-textmate@^5.2.0: - version "5.4.0" - resolved "https://registry.yarnpkg.com/vscode-textmate/-/vscode-textmate-5.4.0.tgz#4b25ffc1f14ac3a90faf9a388c67a01d24257cd7" - integrity sha512-c0Q4zYZkcLizeYJ3hNyaVUM2AA8KDhNCA3JvXY8CeZSJuBdAy3bAvSbv46RClC4P3dSO9BdwhnKEx2zOo6vP/w== +vscode-textmate@5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/vscode-textmate/-/vscode-textmate-5.2.0.tgz#01f01760a391e8222fe4f33fbccbd1ad71aed74e" + integrity sha512-Uw5ooOQxRASHgu6C7GVvUxisKXfSgW4oFlO+aa+PAkgmH89O3CXxEEzNRNtHSqtXFTl0nAC1uYj0GMSH27uwtQ== w3c-hr-time@^1.0.2: version "1.0.2" @@ -9373,15 +9414,15 @@ webidl-conversions@^6.1.0: resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-6.1.0.tgz#9111b4d7ea80acd40f5270d666621afa78b69514" integrity sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w== -webpack-cli@^4.7.2: - version "4.7.2" - resolved "https://registry.yarnpkg.com/webpack-cli/-/webpack-cli-4.7.2.tgz#a718db600de6d3906a4357e059ae584a89f4c1a5" - integrity sha512-mEoLmnmOIZQNiRl0ebnjzQ74Hk0iKS5SiEEnpq3dRezoyR3yPaeQZCMCe+db4524pj1Pd5ghZXjT41KLzIhSLw== +webpack-cli@^4.8.0: + version "4.8.0" + resolved "https://registry.yarnpkg.com/webpack-cli/-/webpack-cli-4.8.0.tgz#5fc3c8b9401d3c8a43e2afceacfa8261962338d1" + integrity sha512-+iBSWsX16uVna5aAYN6/wjhJy1q/GKk4KjKvfg90/6hykCTSgozbfz5iRgDTSJt/LgSbYxdBX3KBHeobIs+ZEw== dependencies: "@discoveryjs/json-ext" "^0.5.0" "@webpack-cli/configtest" "^1.0.4" "@webpack-cli/info" "^1.3.0" - "@webpack-cli/serve" "^1.5.1" + "@webpack-cli/serve" "^1.5.2" colorette "^1.2.1" commander "^7.0.0" execa "^5.0.0" @@ -9458,10 +9499,10 @@ webpack@^5.34.0: watchpack "^2.2.0" webpack-sources "^2.3.0" -webpack@^5.48.0: - version "5.48.0" - resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.48.0.tgz#06180fef9767a6fd066889559a4c4d49bee19b83" - integrity sha512-CGe+nfbHrYzbk7SKoYITCgN3LRAG0yVddjNUecz9uugo1QtYdiyrVD8nP1PhkNqPfdxC2hknmmKpP355Epyn6A== +webpack@^5.51.2: + version "5.51.2" + resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.51.2.tgz#f765d258b0bf6abda3c5f21bf855a25720e9796f" + integrity sha512-odydxP4WA3XYYzwSQUivPxywdzMlY42bbfxMwCaEtHb+i/N9uzKSHcLgWkXo/Gsa+4Zlzf3Jg0hEHn1FnZpk2Q== dependencies: "@types/eslint-scope" "^3.7.0" "@types/estree" "^0.0.50" From 82917c036cd46eafa2a321188d8cbd156642416b Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Fri, 3 Sep 2021 09:55:35 +0200 Subject: [PATCH 62/76] refactor(tools): fix up TS4.4 changes --- tools/src/readme-examples.ts | 2 +- tools/src/readme.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/src/readme-examples.ts b/tools/src/readme-examples.ts index c2fb4fb77b..996e31ac3c 100644 --- a/tools/src/readme-examples.ts +++ b/tools/src/readme-examples.ts @@ -70,6 +70,6 @@ ${tableKeys( `; writeFileSync("examples/README.md", BODY); } catch (e) { - console.log(e.message); + console.log((e).message); process.exit(1); } diff --git a/tools/src/readme.ts b/tools/src/readme.ts index c418cb395c..e91786abf7 100644 --- a/tools/src/readme.ts +++ b/tools/src/readme.ts @@ -59,6 +59,6 @@ try { writeFileSync("./README.md", readme); } catch (e) { - console.log(e.message); + console.log((e).message); process.exit(1); } From ba616db95afa56445810898a2c935876c63270bb Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Fri, 3 Sep 2021 09:56:06 +0200 Subject: [PATCH 63/76] refactor(args): fix up TS4.4 changes --- packages/args/src/parse.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/packages/args/src/parse.ts b/packages/args/src/parse.ts index 896083cb55..1fe906d31a 100644 --- a/packages/args/src/parse.ts +++ b/packages/args/src/parse.ts @@ -15,7 +15,9 @@ export const parse = >( return parseOpts(specs, argv, opts); } catch (e) { if (opts.showUsage) { - console.log(e.message + "\n\n" + usage(specs, opts.usageOpts)); + console.log( + (e).message + "\n\n" + usage(specs, opts.usageOpts) + ); } throw e; } @@ -137,6 +139,6 @@ const coerceValue = (spec: ArgSpecExt, acc: any, id: string) => { } acc[id] = spec.coerce!(acc[id]); } catch (e) { - throw new Error(`arg --${id}: ${e.message}`); + throw new Error(`arg --${id}: ${(e).message}`); } }; From 993a4589d60497c0eff1e37c66866e878d4e63e3 Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Fri, 3 Sep 2021 09:56:39 +0200 Subject: [PATCH 64/76] refactor(csp): fix up TS4.4 changes --- packages/csp/src/channel.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/csp/src/channel.ts b/packages/csp/src/channel.ts index afda9e18f9..cdc9ad890e 100644 --- a/packages/csp/src/channel.ts +++ b/packages/csp/src/channel.ts @@ -379,7 +379,7 @@ export class Channel implements IReadWriteableChannel { this.state = State.CLOSED; } } catch (e) { - this.onerror(e, this, value); + this.onerror(e, this, value); } } : () => value, @@ -593,7 +593,7 @@ export class Channel implements IReadWriteableChannel { // finalize/complete transducer this.tx[1](this.txbuf); } catch (e) { - this.onerror(e, this); + this.onerror(e, this); } } if (!this.isReadable()) { From 40caddc6d910462ddb38839c0cca5c57386c4e32 Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Fri, 3 Sep 2021 09:57:01 +0200 Subject: [PATCH 65/76] refactor(rdom): fix up TS4.4 changes --- packages/rdom/src/promise.ts | 2 +- packages/rdom/src/switch.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/rdom/src/promise.ts b/packages/rdom/src/promise.ts index 9807c6335a..1da77eb110 100644 --- a/packages/rdom/src/promise.ts +++ b/packages/rdom/src/promise.ts @@ -38,7 +38,7 @@ export class $Promise extends Component { try { this.inner = this.$compile(await this.promise); } catch (e) { - this.inner = this.$compile(this.error(e)); + this.inner = this.$compile(this.error(e)); } return (this.el = await this.inner.mount(parent, index)); } diff --git a/packages/rdom/src/switch.ts b/packages/rdom/src/switch.ts index b0f591d705..cd35ffd000 100644 --- a/packages/rdom/src/switch.ts +++ b/packages/rdom/src/switch.ts @@ -146,7 +146,7 @@ export class Switch extends Component implements IMountWithState { loader && (await loader.unmount()); } catch (e) { if (this.error) { - this.inner = $compile(await this.error(e)); + this.inner = $compile(await this.error(e)); loader && (await loader.unmount()); } } From 04a93a636cf56bd9f86b3156b2b549854ca99e80 Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Fri, 3 Sep 2021 09:57:20 +0200 Subject: [PATCH 66/76] refactor(router): fix up TS4.4 changes --- packages/router/src/history.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/router/src/history.ts b/packages/router/src/history.ts index a0c1d54acb..670bff1910 100644 --- a/packages/router/src/history.ts +++ b/packages/router/src/history.ts @@ -8,7 +8,7 @@ import { BasicRouter } from "./basic"; export class HTMLRouter extends BasicRouter { protected currentPath!: string; protected popHandler!: Fn; - protected hashHandler!: Fn; + protected hashHandler!: EventListener; protected useFragment: boolean; protected ignoreHashChange: boolean; From bfb004c4a42c04c7e040e2491abd2d4466d57b5c Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Fri, 3 Sep 2021 09:57:47 +0200 Subject: [PATCH 67/76] refactor(rstream-log-file): fix up TS4.4 changes --- packages/rstream-log-file/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/rstream-log-file/src/index.ts b/packages/rstream-log-file/src/index.ts index a3cb9653f3..ab4c84f1ad 100644 --- a/packages/rstream-log-file/src/index.ts +++ b/packages/rstream-log-file/src/index.ts @@ -5,7 +5,7 @@ export const writeFile = (path: string): ISubscriber => ({ next(msg) { appendFile(path, msg + "\n", (e) => { if (e) { - process.stderr.write(e.message); + process.stderr.write((e).message); } }); }, From f011450b1e2ae5c3c4b4c723410b00fb9d155f61 Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Fri, 3 Sep 2021 09:59:57 +0200 Subject: [PATCH 68/76] build: update tslib --- packages/associative/package.json | 2 +- packages/atom/package.json | 2 +- packages/checks/package.json | 2 +- packages/ecs/package.json | 2 +- packages/idgen/package.json | 2 +- packages/router/package.json | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/packages/associative/package.json b/packages/associative/package.json index 5ffc0d655c..1de8407bd3 100644 --- a/packages/associative/package.json +++ b/packages/associative/package.json @@ -47,7 +47,7 @@ "@thi.ng/equiv": "^1.0.45", "@thi.ng/errors": "^1.3.4", "@thi.ng/transducers": "^7.9.1", - "tslib": "^2.3.0" + "tslib": "^2.3.1" }, "files": [ "*.js", diff --git a/packages/atom/package.json b/packages/atom/package.json index e0e18206b5..75fada18c0 100644 --- a/packages/atom/package.json +++ b/packages/atom/package.json @@ -42,7 +42,7 @@ "@thi.ng/equiv": "^1.0.45", "@thi.ng/errors": "^1.3.4", "@thi.ng/paths": "^4.2.13", - "tslib": "^2.3.0" + "tslib": "^2.3.1" }, "files": [ "*.js", diff --git a/packages/checks/package.json b/packages/checks/package.json index a6ead83ad2..ce30a14bb6 100644 --- a/packages/checks/package.json +++ b/packages/checks/package.json @@ -38,7 +38,7 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "tslib": "^2.3.0" + "tslib": "^2.3.1" }, "files": [ "*.js", diff --git a/packages/ecs/package.json b/packages/ecs/package.json index 067bb8cab6..2272ec207f 100644 --- a/packages/ecs/package.json +++ b/packages/ecs/package.json @@ -49,7 +49,7 @@ "@thi.ng/idgen": "^1.0.4", "@thi.ng/malloc": "^5.0.13", "@thi.ng/transducers": "^7.9.1", - "tslib": "^2.3.0" + "tslib": "^2.3.1" }, "files": [ "*.js", diff --git a/packages/idgen/package.json b/packages/idgen/package.json index d44e93c7ce..367d1884f3 100644 --- a/packages/idgen/package.json +++ b/packages/idgen/package.json @@ -39,7 +39,7 @@ }, "dependencies": { "@thi.ng/api": "^7.1.9", - "tslib": "^2.3.0" + "tslib": "^2.3.1" }, "files": [ "*.js", diff --git a/packages/router/package.json b/packages/router/package.json index 723e53fb7c..1a6d1b3777 100644 --- a/packages/router/package.json +++ b/packages/router/package.json @@ -42,7 +42,7 @@ "@thi.ng/checks": "^2.9.10", "@thi.ng/equiv": "^1.0.45", "@thi.ng/errors": "^1.3.4", - "tslib": "^2.3.0" + "tslib": "^2.3.1" }, "files": [ "*.js", From 863fa33718c9a7cf30e08c30e57aacdc6af5b07b Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Fri, 3 Sep 2021 10:00:56 +0200 Subject: [PATCH 69/76] refactor(geom): fix up TS4.4 changes --- packages/geom/src/ctors/path-from-svg.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/geom/src/ctors/path-from-svg.ts b/packages/geom/src/ctors/path-from-svg.ts index 4260f94dd3..890276bb62 100644 --- a/packages/geom/src/ctors/path-from-svg.ts +++ b/packages/geom/src/ctors/path-from-svg.ts @@ -79,7 +79,7 @@ export const pathFromSvg = (svg: string) => { } catch (e) { throw e instanceof Error ? e - : new Error(`illegal char '${svg.charAt(e)}' @ ${e}`); + : new Error(`illegal char '${svg.charAt(e)}' @ ${e}`); } }; From a6ab9a37681319129faf2081680afc188773c79c Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Fri, 3 Sep 2021 10:01:16 +0200 Subject: [PATCH 70/76] build: update assemblyscript --- packages/simd/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/simd/package.json b/packages/simd/package.json index becc352598..4eaa480e80 100644 --- a/packages/simd/package.json +++ b/packages/simd/package.json @@ -40,7 +40,7 @@ "pub": "yarn build:release && yarn publish --access public" }, "devDependencies": { - "assemblyscript": "0.19.8" + "assemblyscript": "0.19.11" }, "dependencies": { "@thi.ng/transducers-binary": "^1.0.4" From 1937f6be00e2f07f6f85beb99822153bc5e7a047 Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Fri, 3 Sep 2021 10:01:43 +0200 Subject: [PATCH 71/76] refactor(examples): fix up TS4.4 changes --- examples/adaptive-threshold/src/threshold.ts | 1 - examples/parse-playground/src/index.ts | 77 ++++++++++---------- examples/rstream-spreadsheet/src/state.ts | 2 +- 3 files changed, 40 insertions(+), 40 deletions(-) diff --git a/examples/adaptive-threshold/src/threshold.ts b/examples/adaptive-threshold/src/threshold.ts index 9302343d78..c8d104d7bb 100644 --- a/examples/adaptive-threshold/src/threshold.ts +++ b/examples/adaptive-threshold/src/threshold.ts @@ -15,7 +15,6 @@ export const adaptiveThreshold = ( offset = 0 ) => convolveChannel(src, { - pad: false, kernel: { // pool kernel template for code generator: // take a `body` array of pixel lookups (W x H items) diff --git a/examples/parse-playground/src/index.ts b/examples/parse-playground/src/index.ts index 4ec039bcad..af5cd0c713 100644 --- a/examples/parse-playground/src/index.ts +++ b/examples/parse-playground/src/index.ts @@ -3,7 +3,7 @@ import { timedResult } from "@thi.ng/bench"; import { downloadWithMime } from "@thi.ng/dl-asset"; import { DOWNLOAD, withSize } from "@thi.ng/hiccup-carbon-icons"; import { anchor, div, h1, main, textArea } from "@thi.ng/hiccup-html"; -import { defContext, defGrammar, print } from "@thi.ng/parse"; +import { defContext, defGrammar, Language, print } from "@thi.ng/parse"; import { $compile } from "@thi.ng/rdom"; import { dynamicDropdown, @@ -39,7 +39,9 @@ import { // this uses a base64 & msgpack encoded version of the two editors const parseState = ((): Nullable => { try { - return deserialize([...base64Decode(location.hash.substr(1))]); + return deserialize( + new Uint8Array(base64Decode(location.hash.substr(1))) + ); } catch (e) {} })() || [DEFAULT_GRAMMAR, DEFAULT_RULE, ...DEFAULT_INPUTS]; @@ -63,13 +65,15 @@ const inputID = reactive(0); const activeInput = inputID.subscribe(metaStream((id) => srcInputs[id])); // stream transform attempting to compile grammar -const lang = srcGrammar.map((src) => { - try { - return { lang: defGrammar(src) }; - } catch (e) { - return { error: e }; +const lang = srcGrammar.map( + (src): Partial<{ lang: Language; error: Error }> => { + try { + return { lang: defGrammar(src) }; + } catch (e) { + return { error: e }; + } } -}); +); // stream transform to extract parser rule IDs const ruleIDs = lang.transform( @@ -94,39 +98,36 @@ const result = sync({ src: activeInput, rule: activeRule, }, -}).map( - ({ lang, src, rule }): ParseResult => { - // error if no valid grammar - if (!lang.lang) return $result("err", lang.error); - const parser = lang.lang.rules[rule]; - if (!parser) - return $result("err", `invalid or missing parser: ${rule}`); - try { - const ast: string[] = []; - const ctx = defContext(src, { retain: true }); - // measure execution time of the parsing process - const [res, time] = timedResult(() => - print(parser, (x) => ast.push(x))(ctx) - ); - const body = ast.join("\n"); - return res - ? ctx.done - ? $result("ok", body, time) - : $result( - "partial", - `partial match only (stopped @ ${ctx.state.l}:${ctx.state.c})...\n\n${body}`, - time - ) +}).map(({ lang, src, rule }): ParseResult => { + // error if no valid grammar + if (!lang.lang) return $result("err", lang.error!.message); + const parser = lang.lang.rules[rule]; + if (!parser) return $result("err", `invalid or missing parser: ${rule}`); + try { + const ast: string[] = []; + const ctx = defContext(src, { retain: true }); + // measure execution time of the parsing process + const [res, time] = timedResult(() => + print(parser, (x) => ast.push(x))(ctx) + ); + const body = ast.join("\n"); + return res + ? ctx.done + ? $result("ok", body, time) : $result( - "fail", - `input parse failure (no match)...\n\n${body}`, + "partial", + `partial match only (stopped @ ${ctx.state.l}:${ctx.state.c})...\n\n${body}`, time - ); - } catch (e) { - return $result("err", `Parse error: ${e}`); - } + ) + : $result( + "fail", + `input parse failure (no match)...\n\n${body}`, + time + ); + } catch (e) { + return $result("err", `Parse error: ${e}`); } -); +}); // update URL hash fragment with the msgpack & base64 encoded version of // the selected parser rule and contents of all editors diff --git a/examples/rstream-spreadsheet/src/state.ts b/examples/rstream-spreadsheet/src/state.ts index 804576f8a1..c0419e289c 100644 --- a/examples/rstream-spreadsheet/src/state.ts +++ b/examples/rstream-spreadsheet/src/state.ts @@ -92,7 +92,7 @@ export const updateCell = (id: string, val: string) => { $eval(val, id); DB.resetIn([id, "error"], null); } catch (e) { - DB.resetIn([id, "error"], e.message); + DB.resetIn([id, "error"], (e).message); } } else { removeCell(id); From 95499ed1276c1ea95a40ed427d2c4bfe8d866165 Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Fri, 3 Sep 2021 11:19:21 +0200 Subject: [PATCH 72/76] refactor(dual-algebra): dedupe vector ops --- packages/dual-algebra/src/api.ts | 2 ++ packages/dual-algebra/src/vector.ts | 22 ++++++++++++---------- 2 files changed, 14 insertions(+), 10 deletions(-) diff --git a/packages/dual-algebra/src/api.ts b/packages/dual-algebra/src/api.ts index c31ffbefe3..0a6f38383e 100644 --- a/packages/dual-algebra/src/api.ts +++ b/packages/dual-algebra/src/api.ts @@ -24,3 +24,5 @@ export type Op4 = FnU4; export type Op5 = FnU5; export type Op6 = FnU6; + +export type OpV2 = FnU2; diff --git a/packages/dual-algebra/src/vector.ts b/packages/dual-algebra/src/vector.ts index 3171e78974..8567150d0b 100644 --- a/packages/dual-algebra/src/vector.ts +++ b/packages/dual-algebra/src/vector.ts @@ -1,6 +1,12 @@ -import type { Dual } from "./api"; +import type { FnU2 } from "@thi.ng/api"; +import type { Dual, Op2, OpV2 } from "./api"; import { add, div, dual, mul, sub } from "./ops"; +const defVecOp2 = + (op: Op2): OpV2 => + (a, b) => + a.map((a, i) => op(a, b[i])); + /** * Dual vector addition. Applies {@link add} in a component-wise manner. Returns * new (dual) vector. @@ -8,8 +14,7 @@ import { add, div, dual, mul, sub } from "./ops"; * @param a * @param b */ -export const vadd = (a: Dual[], b: Dual[]): Dual[] => - a.map((a, i) => add(a, b[i])); +export const vadd = defVecOp2(add); /** * Dual vector subtraction. Applies {@link sub} in a component-wise manner. @@ -18,8 +23,7 @@ export const vadd = (a: Dual[], b: Dual[]): Dual[] => * @param a * @param b */ -export const vsub = (a: Dual[], b: Dual[]): Dual[] => - a.map((a, i) => sub(a, b[i])); +export const vsub = defVecOp2(sub); /** * Dual vector multiplication. Applies {@link mul} in a component-wise manner. @@ -28,8 +32,7 @@ export const vsub = (a: Dual[], b: Dual[]): Dual[] => * @param a * @param b */ -export const vmul = (a: Dual[], b: Dual[]): Dual[] => - a.map((a, i) => mul(a, b[i])); +export const vmul = defVecOp2(mul); /** * Dual vector division. Applies {@link div} in a component-wise manner. @@ -38,8 +41,7 @@ export const vmul = (a: Dual[], b: Dual[]): Dual[] => * @param a * @param b */ -export const vdiv = (a: Dual[], b: Dual[]): Dual[] => - a.map((a, i) => div(a, b[i])); +export const vdiv = defVecOp2(div); /** * Computes dot product of 2 dual vectors. @@ -47,5 +49,5 @@ export const vdiv = (a: Dual[], b: Dual[]): Dual[] => * @param a * @param b */ -export const dot = (a: Dual[], b: Dual[]): Dual => +export const dot: FnU2 = (a, b) => a.reduce((acc, a, i) => add(acc, mul(a, b[i])), dual(0, a[0].length)); From 69eda13b5b73773998163aa6a9c8a01baf6815ba Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Fri, 3 Sep 2021 12:16:05 +0200 Subject: [PATCH 73/76] chore: update .gitignore --- .gitignore | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.gitignore b/.gitignore index 00e6d39d19..b5ad002e00 100644 --- a/.gitignore +++ b/.gitignore @@ -24,15 +24,29 @@ coverage dev doc docs +examples/crdt examples/delaunay-draw examples/diagram +examples/dunes examples/formgen examples/growth examples/dataflow-scenegraph examples/hdc examples/hdom-class examples/hdom-clj +examples/lqtree +examples/mesh +examples/pedit +examples/pointfree-geom +examples/quad-db +examples/sdf-logo +examples/simd-basics +examples/soa-test +examples/texgen +examples/text-canvas-tables +examples/tsne examples/ts-parse +examples/webgl-erosion export lib node_modules From 3e9bccc276d51d4f8f4edbfe336e63524999da9f Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Fri, 3 Sep 2021 12:43:22 +0200 Subject: [PATCH 74/76] docs: update readmes --- packages/color-palettes/README.md | 13 +++++++++++++ packages/color/README.md | 1 + packages/dsp/README.md | 1 - packages/dual-algebra/README.md | 15 ++++++++++++++- packages/geom/README.md | 1 + packages/markdown-table/README.md | 3 ++- packages/math/README.md | 2 +- packages/pixel/README.md | 1 + packages/rdom/README.md | 25 +++++++++++++------------ packages/vectors/README.md | 3 ++- 10 files changed, 48 insertions(+), 17 deletions(-) diff --git a/packages/color-palettes/README.md b/packages/color-palettes/README.md index cf013f32eb..d2354cd914 100644 --- a/packages/color-palettes/README.md +++ b/packages/color-palettes/README.md @@ -13,6 +13,7 @@ This project is part of the - [Status](#status) - [Installation](#installation) - [Dependencies](#dependencies) +- [Usage examples](#usage-examples) - [Available palettes](#available-palettes) - [Usage](#usage) - [Strong](#strong) @@ -51,6 +52,18 @@ Package sizes (gzipped, pre-treeshake): ESM: 4.11 KB / CJS: 4.18 KB / UMD: 4.34 None +## Usage examples + +Several demos in this repo's +[/examples](https://github.com/thi-ng/umbrella/tree/develop/examples) +directory are using this package. + +A selection: + +| Screenshot | Description | Live demo | Source | +|:---------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------|:----------------------------------------------------|:---------------------------------------------------------------------------------| +| | Image dithering and remapping using indexed palettes | [Demo](https://demo.thi.ng/umbrella/pixel-indexed/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/pixel-indexed) | + ## Available palettes ### Usage diff --git a/packages/color/README.md b/packages/color/README.md index 12310e5548..bd1c82abd3 100644 --- a/packages/color/README.md +++ b/packages/color/README.md @@ -624,6 +624,7 @@ A selection: | | Heatmap visualization of this mono-repo's commits | | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/commit-heatmap) | | | Color palette generation via dominant color extraction from uploaded images | [Demo](https://demo.thi.ng/umbrella/dominant-colors/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/dominant-colors) | | | Visualization of different grid iterator strategies | [Demo](https://demo.thi.ng/umbrella/grid-iterators/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/grid-iterators) | +| | Image dithering and remapping using indexed palettes | [Demo](https://demo.thi.ng/umbrella/pixel-indexed/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/pixel-indexed) | | | 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) | | | Fork-join worker-based raymarch renderer | [Demo](https://demo.thi.ng/umbrella/shader-ast-workers/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/shader-ast-workers) | diff --git a/packages/dsp/README.md b/packages/dsp/README.md index 711d17154b..9a704aa524 100644 --- a/packages/dsp/README.md +++ b/packages/dsp/README.md @@ -100,7 +100,6 @@ A selection: |:-------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------|:--------------------------------------------------|:-------------------------------------------------------------------------------| | | Interactive inverse FFT toy synth | [Demo](https://demo.thi.ng/umbrella/fft-synth/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/fft-synth) | | | Polygon to cubic curve conversion & visualization | [Demo](https://demo.thi.ng/umbrella/poly-spline/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/poly-spline) | -| | 3D wireframe textmode demo | [Demo](https://demo.thi.ng/umbrella/text-canvas/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/text-canvas) | | | WebGL screenspace ambient occlusion | [Demo](https://demo.thi.ng/umbrella/webgl-ssao/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/webgl-ssao) | ## API diff --git a/packages/dual-algebra/README.md b/packages/dual-algebra/README.md index cef6f06f79..3c1b26b635 100644 --- a/packages/dual-algebra/README.md +++ b/packages/dual-algebra/README.md @@ -14,6 +14,7 @@ This project is part of the - [Related packages](#related-packages) - [Installation](#installation) - [Dependencies](#dependencies) +- [Usage examples](#usage-examples) - [API](#api) - [Authors](#authors) - [License](#license) @@ -130,12 +131,24 @@ yarn add @thi.ng/dual-algebra ``` -Package sizes (gzipped, pre-treeshake): ESM: 916 bytes / CJS: 1.03 KB / UMD: 1.08 KB +Package sizes (gzipped, pre-treeshake): ESM: 1.00 KB / CJS: 1.15 KB / UMD: 1.17 KB ## Dependencies - [@thi.ng/api](https://github.com/thi-ng/umbrella/tree/develop/packages/api) +## Usage examples + +Several demos in this repo's +[/examples](https://github.com/thi-ng/umbrella/tree/develop/examples) +directory are using this package. + +A selection: + +| Screenshot | Description | Live demo | Source | +|:----------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------|:-----------------------------------------------------|:----------------------------------------------------------------------------------| +| | Compute cubic spline position & tangent using Dual Numbers | [Demo](https://demo.thi.ng/umbrella/spline-tangent/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/spline-tangent) | + ## API [Generated API docs](https://docs.thi.ng/umbrella/dual-algebra/) diff --git a/packages/geom/README.md b/packages/geom/README.md index f115e0035d..e43435bea0 100644 --- a/packages/geom/README.md +++ b/packages/geom/README.md @@ -129,6 +129,7 @@ A selection: | | Animated Voronoi diagram, cubic splines & SVG download | [Demo](https://demo.thi.ng/umbrella/rotating-voronoi/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/rotating-voronoi) | | | 2D scenegraph & shape picking | [Demo](https://demo.thi.ng/umbrella/scenegraph/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/scenegraph) | | | 2D scenegraph & image map based geometry manipulation | [Demo](https://demo.thi.ng/umbrella/scenegraph-image/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/scenegraph-image) | +| | Compute cubic spline position & tangent using Dual Numbers | [Demo](https://demo.thi.ng/umbrella/spline-tangent/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/spline-tangent) | | | 3D wireframe textmode demo | [Demo](https://demo.thi.ng/umbrella/text-canvas/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/text-canvas) | ## API diff --git a/packages/markdown-table/README.md b/packages/markdown-table/README.md index dff740ad99..017032a414 100644 --- a/packages/markdown-table/README.md +++ b/packages/markdown-table/README.md @@ -49,11 +49,12 @@ yarn add @thi.ng/markdown-table ``` -Package sizes (gzipped, pre-treeshake): ESM: 536 bytes / CJS: 582 bytes / UMD: 687 bytes +Package sizes (gzipped, pre-treeshake): ESM: 536 bytes / CJS: 582 bytes / UMD: 688 bytes ## Dependencies - [@thi.ng/api](https://github.com/thi-ng/umbrella/tree/develop/packages/api) +- [@thi.ng/compose](https://github.com/thi-ng/umbrella/tree/develop/packages/compose) - [@thi.ng/strings](https://github.com/thi-ng/umbrella/tree/develop/packages/strings) - [@thi.ng/transducers](https://github.com/thi-ng/umbrella/tree/develop/packages/transducers) diff --git a/packages/math/README.md b/packages/math/README.md index b4e6f58204..bbf32ca8b4 100644 --- a/packages/math/README.md +++ b/packages/math/README.md @@ -62,7 +62,7 @@ yarn add @thi.ng/math ``` -Package sizes (gzipped, pre-treeshake): ESM: 3.94 KB / CJS: 4.55 KB / UMD: 3.75 KB +Package sizes (gzipped, pre-treeshake): ESM: 3.93 KB / CJS: 4.54 KB / UMD: 3.73 KB ## Dependencies diff --git a/packages/pixel/README.md b/packages/pixel/README.md index 86624a525e..522c8af959 100644 --- a/packages/pixel/README.md +++ b/packages/pixel/README.md @@ -348,6 +348,7 @@ A selection: | | Interactive image processing (adaptive threshold) | [Demo](https://demo.thi.ng/umbrella/adaptive-threshold/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/adaptive-threshold) | | | Color palette generation via dominant color extraction from uploaded images | [Demo](https://demo.thi.ng/umbrella/dominant-colors/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/dominant-colors) | | | Pixel buffer manipulations | [Demo](https://demo.thi.ng/umbrella/pixel-basics/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/pixel-basics) | +| | Image dithering and remapping using indexed palettes | [Demo](https://demo.thi.ng/umbrella/pixel-indexed/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/pixel-indexed) | | | 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) | | | Port-Duff image compositing / alpha blending | [Demo](https://demo.thi.ng/umbrella/porter-duff/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/porter-duff) | | | Fork-join worker-based raymarch renderer | [Demo](https://demo.thi.ng/umbrella/shader-ast-workers/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/shader-ast-workers) | diff --git a/packages/rdom/README.md b/packages/rdom/README.md index ca045b6fad..c8c299560a 100644 --- a/packages/rdom/README.md +++ b/packages/rdom/README.md @@ -185,18 +185,19 @@ directory are using this package. A selection: -| Screenshot | Description | Live demo | Source | -|:-------------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------|:--------------------------------------------------------|:-------------------------------------------------------------------------------------| -| | Probabilistic color theme generator | [Demo](https://demo.thi.ng/umbrella/color-themes/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/color-themes) | -| | Color palette generation via dominant color extraction from uploaded images | [Demo](https://demo.thi.ng/umbrella/dominant-colors/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/dominant-colors) | -| | Interactive visualization of closest points on ellipses | [Demo](https://demo.thi.ng/umbrella/ellipse-proximity/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/ellipse-proximity) | -| | 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) | -| | 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) | -| | Demonstates various rdom usage patterns | [Demo](https://demo.thi.ng/umbrella/rdom-basics/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/rdom-basics) | -| | rdom drag & drop example | [Demo](https://demo.thi.ng/umbrella/rdom-dnd/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/rdom-dnd) | -| | rdom & hiccup-canvas interop test | [Demo](https://demo.thi.ng/umbrella/rdom-lissajous/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/rdom-lissajous) | -| | 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) | -| | rdom powered SVG graph with draggable nodes | [Demo](https://demo.thi.ng/umbrella/rdom-svg-nodes/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/rdom-svg-nodes) | +| Screenshot | Description | Live demo | Source | +|:---------------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------|:----------------------------------------------------------|:---------------------------------------------------------------------------------------| +| | Probabilistic color theme generator | [Demo](https://demo.thi.ng/umbrella/color-themes/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/color-themes) | +| | Color palette generation via dominant color extraction from uploaded images | [Demo](https://demo.thi.ng/umbrella/dominant-colors/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/dominant-colors) | +| | Interactive visualization of closest points on ellipses | [Demo](https://demo.thi.ng/umbrella/ellipse-proximity/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/ellipse-proximity) | +| | 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) | +| | 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) | +| | Demonstates various rdom usage patterns | [Demo](https://demo.thi.ng/umbrella/rdom-basics/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/rdom-basics) | +| | Dynamically loaded images w/ preloader state | [Demo](https://demo.thi.ng/umbrella/rdom-delayed-update/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/rdom-delayed-update) | +| | rdom drag & drop example | [Demo](https://demo.thi.ng/umbrella/rdom-dnd/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/rdom-dnd) | +| | rdom & hiccup-canvas interop test | [Demo](https://demo.thi.ng/umbrella/rdom-lissajous/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/rdom-lissajous) | +| | 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) | +| | rdom powered SVG graph with draggable nodes | [Demo](https://demo.thi.ng/umbrella/rdom-svg-nodes/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/rdom-svg-nodes) | ## API diff --git a/packages/vectors/README.md b/packages/vectors/README.md index 0ac55f520b..52dcb79543 100644 --- a/packages/vectors/README.md +++ b/packages/vectors/README.md @@ -168,7 +168,7 @@ yarn add @thi.ng/vectors ``` -Package sizes (gzipped, pre-treeshake): ESM: 11.83 KB / CJS: 14.84 KB / UMD: 13.08 KB +Package sizes (gzipped, pre-treeshake): ESM: 12.67 KB / CJS: 15.85 KB / UMD: 13.92 KB ## Dependencies @@ -206,6 +206,7 @@ A selection: | | 2D scenegraph & shape picking | [Demo](https://demo.thi.ng/umbrella/scenegraph/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/scenegraph) | | | 2D scenegraph & image map based geometry manipulation | [Demo](https://demo.thi.ng/umbrella/scenegraph-image/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/scenegraph-image) | | | Entity Component System w/ 100k 3D particles | [Demo](https://demo.thi.ng/umbrella/soa-ecs/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/soa-ecs) | +| | Compute cubic spline position & tangent using Dual Numbers | [Demo](https://demo.thi.ng/umbrella/spline-tangent/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/spline-tangent) | | | 3D wireframe textmode demo | [Demo](https://demo.thi.ng/umbrella/text-canvas/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/text-canvas) | | | WebGL multi-colored cube mesh | [Demo](https://demo.thi.ng/umbrella/webgl-cube/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/webgl-cube) | | | WebGL instancing, animated grid | [Demo](https://demo.thi.ng/umbrella/webgl-grid/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/webgl-grid) | From 0efe0bed396848d58678aa103b023b8929267796 Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Fri, 3 Sep 2021 12:47:29 +0200 Subject: [PATCH 75/76] docs: update main readme --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6844d135ed..e11b25b36d 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ **Please visit [thi.ng](https://thi.ng) for additional information & topic based search of packages relevant to your use cases...** -Mono-repository for 152+ thi.ng TypeScript/ES6 projects, a wide collection of +Mono-repository for 153+ thi.ng TypeScript/ES6 projects, a wide collection of largely data transformation oriented packages and building blocks for (non-exhaustive list of topics): @@ -140,6 +140,7 @@ feature or `develop` branches) | [`@thi.ng/atom`](./packages/atom) | [![version](https://img.shields.io/npm/v/@thi.ng/atom.svg)](https://www.npmjs.com/package/@thi.ng/atom) | [changelog](./packages/atom/CHANGELOG.md) | Immutable value wrappers, views, history | | [`@thi.ng/color-palettes`](./packages/color-palettes) | [![version](https://img.shields.io/npm/v/@thi.ng/color-palettes.svg)](https://www.npmjs.com/package/@thi.ng/color-palettes) | [changelog](./packages/color-palettes/CHANGELOG.md) | Collection of color palettes | | [`@thi.ng/date`](./packages/date) | [![version](https://img.shields.io/npm/v/@thi.ng/date.svg)](https://www.npmjs.com/package/@thi.ng/date) | [changelog](./packages/date/CHANGELOG.md) | Date/time iterators, formatters, rounding | +| [`@thi.ng/dual-algebra`](./packages/dual-algebra) | [![version](https://img.shields.io/npm/v/@thi.ng/dual-algebra.svg)](https://www.npmjs.com/package/@thi.ng/dual-algebra) | [changelog](./packages/dual-algebra/CHANGELOG.md) | Dual number algebra / automatic differentiation | | [`@thi.ng/heaps`](./packages/heaps) | [![version](https://img.shields.io/npm/v/@thi.ng/heaps.svg)](https://www.npmjs.com/package/@thi.ng/heaps) | [changelog](./packages/heaps/CHANGELOG.md) | Binary & d-ary heap impls | | [`@thi.ng/geom-isoline`](./packages/geom-isoline) | [![version](https://img.shields.io/npm/v/@thi.ng/geom-isoline.svg)](https://www.npmjs.com/package/@thi.ng/geom-isoline) | [changelog](./packages/geom-isoline/CHANGELOG.md) | 2D contour line extraction | | [`@thi.ng/k-means`](./packages/k-means) | [![version](https://img.shields.io/npm/v/@thi.ng/k-means.svg)](https://www.npmjs.com/package/@thi.ng/k-means) | [changelog](./packages/k-means/CHANGELOG.md) | K-means clustering of n-D data | @@ -151,6 +152,7 @@ feature or `develop` branches) | [`@thi.ng/shader-ast`](./packages/shader-ast) | [![version](https://img.shields.io/npm/v/@thi.ng/shader-ast.svg)](https://www.npmjs.com/package/@thi.ng/shader-ast) | [changelog](./packages/shader-ast/CHANGELOG.md) | AST DSL for x-platform shader code | | [`@thi.ng/shader-ast-stdlib`](./packages/shader-ast-stdlib) | [![version](https://img.shields.io/npm/v/@thi.ng/shader-ast-stdlib.svg)](https://www.npmjs.com/package/@thi.ng/shader-ast-stdlib) | [changelog](./packages/shader-ast-stdlib/CHANGELOG.md) | 100+ useful AST shader functions | | [`@thi.ng/transducers`](./packages/transducers) | [![version](https://img.shields.io/npm/v/@thi.ng/transducers.svg)](https://www.npmjs.com/package/@thi.ng/transducers) | [changelog](./packages/transducers/CHANGELOG.md) | Composable data transformations | +| [`@thi.ng/vectors`](./packages/vectors) | [![version](https://img.shields.io/npm/v/@thi.ng/vectors.svg)](https://www.npmjs.com/package/@thi.ng/vectors) | [changelog](./packages/vectors/CHANGELOG.md) | Fixed & arbitrary-length vector ops | ### Fundamentals From d971cb3f9b215a95483f78f1a8614015e331146f Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Fri, 3 Sep 2021 12:49:11 +0200 Subject: [PATCH 76/76] Publish - @thi.ng/adjacency@1.0.5 - @thi.ng/api@7.2.0 - @thi.ng/args@1.1.1 - @thi.ng/arrays@1.0.3 - @thi.ng/associative@5.2.16 - @thi.ng/atom@4.1.42 - @thi.ng/bench@2.1.6 - @thi.ng/bencode@1.0.5 - @thi.ng/binary@2.2.11 - @thi.ng/bitfield@1.0.3 - @thi.ng/cache@1.0.94 - @thi.ng/checks@2.9.11 - @thi.ng/color@3.2.7 - @thi.ng/colored-noise@0.1.47 - @thi.ng/compare@1.3.34 - @thi.ng/compose@1.4.36 - @thi.ng/csp@1.1.74 - @thi.ng/csv@1.0.7 - @thi.ng/date@1.0.6 - @thi.ng/dcons@2.3.34 - @thi.ng/defmulti@1.3.17 - @thi.ng/dgraph-dot@1.0.8 - @thi.ng/dgraph@1.3.35 - @thi.ng/diff@4.0.13 - @thi.ng/distance@1.0.7 - @thi.ng/dl-asset@1.0.5 - @thi.ng/dlogic@1.0.49 - @thi.ng/dot@1.2.38 - @thi.ng/dsp-io-wav@1.0.7 - @thi.ng/dsp@3.0.31 - @thi.ng/dual-algebra@0.2.0 - @thi.ng/dynvar@0.1.41 - @thi.ng/ecs@0.5.26 - @thi.ng/egf@0.4.18 - @thi.ng/fsm@2.4.63 - @thi.ng/fuzzy-viz@1.0.9 - @thi.ng/fuzzy@1.0.4 - @thi.ng/geom-accel@2.1.60 - @thi.ng/geom-api@2.0.31 - @thi.ng/geom-arc@1.0.5 - @thi.ng/geom-clip-line@1.2.45 - @thi.ng/geom-clip-poly@1.0.70 - @thi.ng/geom-closest-point@1.0.5 - @thi.ng/geom-fuzz@1.0.8 - @thi.ng/geom-hull@1.0.5 - @thi.ng/geom-io-obj@0.1.60 - @thi.ng/geom-isec@1.0.5 - @thi.ng/geom-isoline@1.1.4 - @thi.ng/geom-poly-utils@1.0.5 - @thi.ng/geom-resample@1.0.5 - @thi.ng/geom-splines@1.0.5 - @thi.ng/geom-subdiv-curve@1.0.5 - @thi.ng/geom-tessellate@1.0.5 - @thi.ng/geom-voronoi@1.0.5 - @thi.ng/geom@2.1.29 - @thi.ng/gp@0.2.30 - @thi.ng/grid-iterators@1.0.5 - @thi.ng/hdiff@0.1.53 - @thi.ng/hdom-canvas@3.0.60 - @thi.ng/hdom-components@4.0.48 - @thi.ng/hdom-mock@1.1.64 - @thi.ng/hdom@8.2.32 - @thi.ng/heaps@1.3.1 - @thi.ng/hiccup-canvas@1.2.15 - @thi.ng/hiccup-carbon-icons@2.0.25 - @thi.ng/hiccup-css@1.1.73 - @thi.ng/hiccup-html@1.1.1 - @thi.ng/hiccup-markdown@1.3.33 - @thi.ng/hiccup-svg@3.8.1 - @thi.ng/hiccup@3.6.22 - @thi.ng/idgen@1.0.5 - @thi.ng/iges@1.1.87 - @thi.ng/imgui@1.0.7 - @thi.ng/interceptors@2.2.53 - @thi.ng/intervals@3.0.13 - @thi.ng/iterators@5.1.74 - @thi.ng/k-means@0.3.6 - @thi.ng/ksuid@1.0.6 - @thi.ng/layout@1.0.2 - @thi.ng/leb128@1.0.69 - @thi.ng/lowdisc@0.1.7 - @thi.ng/lsys@1.0.5 - @thi.ng/malloc@5.0.14 - @thi.ng/markdown-table@0.1.1 - @thi.ng/math@4.0.6 - @thi.ng/matrices@1.0.5 - @thi.ng/memoize@2.1.21 - @thi.ng/mime@1.0.5 - @thi.ng/morton@2.0.47 - @thi.ng/oquery@1.0.5 - @thi.ng/parse@1.0.5 - @thi.ng/paths@4.2.14 - @thi.ng/pixel-io-netpbm@1.0.7 - @thi.ng/pixel@1.0.5 - @thi.ng/pointfree-lang@1.4.38 - @thi.ng/pointfree@2.0.36 - @thi.ng/poisson@1.1.53 - @thi.ng/porter-duff@1.0.2 - @thi.ng/ramp@1.0.7 - @thi.ng/random@2.4.8 - @thi.ng/range-coder@1.0.93 - @thi.ng/rdom-canvas@0.1.60 - @thi.ng/rdom-components@0.2.9 - @thi.ng/rdom@0.6.9 - @thi.ng/resolve-map@4.2.27 - @thi.ng/router@2.0.54 - @thi.ng/rstream-csp@2.0.80 - @thi.ng/rstream-dot@1.2.29 - @thi.ng/rstream-gestures@3.0.34 - @thi.ng/rstream-graph@3.2.81 - @thi.ng/rstream-log-file@1.0.6 - @thi.ng/rstream-log@3.2.33 - @thi.ng/rstream-query@1.1.89 - @thi.ng/rstream@6.0.21 - @thi.ng/sax@1.1.73 - @thi.ng/scenegraph@0.3.43 - @thi.ng/seq@0.2.43 - @thi.ng/sexpr@0.2.48 - @thi.ng/shader-ast-glsl@0.2.48 - @thi.ng/shader-ast-js@0.5.49 - @thi.ng/shader-ast-stdlib@0.9.4 - @thi.ng/shader-ast@0.10.4 - @thi.ng/simd@0.4.41 - @thi.ng/soa@0.2.25 - @thi.ng/sparse@0.1.89 - @thi.ng/strings@2.1.7 - @thi.ng/system@1.0.8 - @thi.ng/text-canvas@1.1.4 - @thi.ng/transducers-binary@1.0.5 - @thi.ng/transducers-fsm@1.1.73 - @thi.ng/transducers-hdom@2.0.105 - @thi.ng/transducers-patch@0.2.30 - @thi.ng/transducers-stats@1.1.74 - @thi.ng/transducers@7.9.2 - @thi.ng/vclock@0.1.16 - @thi.ng/vector-pools@2.0.25 - @thi.ng/vectors@6.2.0 - @thi.ng/viz@0.2.42 - @thi.ng/webgl-msdf@1.0.8 - @thi.ng/webgl-shadertoy@0.2.91 - @thi.ng/webgl@5.0.14 - @thi.ng/zipper@1.0.3 --- packages/adjacency/CHANGELOG.md | 8 ++++ packages/adjacency/package.json | 14 +++---- packages/api/CHANGELOG.md | 11 +++++ packages/api/package.json | 2 +- packages/args/CHANGELOG.md | 8 ++++ packages/args/package.json | 8 ++-- packages/arrays/CHANGELOG.md | 8 ++++ packages/arrays/package.json | 10 ++--- packages/associative/CHANGELOG.md | 8 ++++ packages/associative/package.json | 16 ++++---- packages/atom/CHANGELOG.md | 8 ++++ packages/atom/package.json | 6 +-- packages/bench/CHANGELOG.md | 8 ++++ packages/bench/package.json | 4 +- packages/bencode/CHANGELOG.md | 8 ++++ packages/bencode/package.json | 14 +++---- packages/binary/CHANGELOG.md | 8 ++++ packages/binary/package.json | 4 +- packages/bitfield/CHANGELOG.md | 8 ++++ packages/bitfield/package.json | 8 ++-- packages/cache/CHANGELOG.md | 8 ++++ packages/cache/package.json | 8 ++-- packages/checks/CHANGELOG.md | 8 ++++ packages/checks/package.json | 2 +- packages/color/CHANGELOG.md | 8 ++++ packages/color/package.json | 26 ++++++------ packages/colored-noise/CHANGELOG.md | 8 ++++ packages/colored-noise/package.json | 18 ++++---- packages/compare/CHANGELOG.md | 8 ++++ packages/compare/package.json | 4 +- packages/compose/CHANGELOG.md | 8 ++++ packages/compose/package.json | 4 +- packages/csp/CHANGELOG.md | 8 ++++ packages/csp/package.json | 12 +++--- packages/csv/CHANGELOG.md | 8 ++++ packages/csv/package.json | 10 ++--- packages/date/CHANGELOG.md | 8 ++++ packages/date/package.json | 8 ++-- packages/dcons/CHANGELOG.md | 8 ++++ packages/dcons/package.json | 12 +++--- packages/defmulti/CHANGELOG.md | 8 ++++ packages/defmulti/package.json | 4 +- packages/dgraph-dot/CHANGELOG.md | 8 ++++ packages/dgraph-dot/package.json | 8 ++-- packages/dgraph/CHANGELOG.md | 8 ++++ packages/dgraph/package.json | 8 ++-- packages/diff/CHANGELOG.md | 8 ++++ packages/diff/package.json | 4 +- packages/distance/CHANGELOG.md | 8 ++++ packages/distance/package.json | 10 ++--- packages/dl-asset/CHANGELOG.md | 8 ++++ packages/dl-asset/package.json | 8 ++-- packages/dlogic/CHANGELOG.md | 8 ++++ packages/dlogic/package.json | 4 +- packages/dot/CHANGELOG.md | 8 ++++ packages/dot/package.json | 6 +-- packages/dsp-io-wav/CHANGELOG.md | 8 ++++ packages/dsp-io-wav/package.json | 10 ++--- packages/dsp/CHANGELOG.md | 8 ++++ packages/dsp/package.json | 12 +++--- packages/dual-algebra/CHANGELOG.md | 11 +++++ packages/dual-algebra/package.json | 4 +- packages/dynvar/CHANGELOG.md | 8 ++++ packages/dynvar/package.json | 4 +- packages/ecs/CHANGELOG.md | 8 ++++ packages/ecs/package.json | 18 ++++---- packages/egf/CHANGELOG.md | 8 ++++ packages/egf/package.json | 14 +++---- packages/fsm/CHANGELOG.md | 8 ++++ packages/fsm/package.json | 10 ++--- packages/fuzzy-viz/CHANGELOG.md | 8 ++++ packages/fuzzy-viz/package.json | 16 ++++---- packages/fuzzy/CHANGELOG.md | 8 ++++ packages/fuzzy/package.json | 6 +-- packages/geom-accel/CHANGELOG.md | 8 ++++ packages/geom-accel/package.json | 20 ++++----- packages/geom-api/CHANGELOG.md | 8 ++++ packages/geom-api/package.json | 6 +-- packages/geom-arc/CHANGELOG.md | 8 ++++ packages/geom-arc/package.json | 12 +++--- packages/geom-clip-line/CHANGELOG.md | 8 ++++ packages/geom-clip-line/package.json | 8 ++-- packages/geom-clip-poly/CHANGELOG.md | 8 ++++ packages/geom-clip-poly/package.json | 10 ++--- packages/geom-closest-point/CHANGELOG.md | 8 ++++ packages/geom-closest-point/package.json | 8 ++-- packages/geom-fuzz/CHANGELOG.md | 8 ++++ packages/geom-fuzz/package.json | 22 +++++----- packages/geom-hull/CHANGELOG.md | 8 ++++ packages/geom-hull/package.json | 6 +-- packages/geom-io-obj/CHANGELOG.md | 8 ++++ packages/geom-io-obj/package.json | 6 +-- packages/geom-isec/CHANGELOG.md | 8 ++++ packages/geom-isec/package.json | 12 +++--- packages/geom-isoline/CHANGELOG.md | 8 ++++ packages/geom-isoline/package.json | 8 ++-- packages/geom-poly-utils/CHANGELOG.md | 8 ++++ packages/geom-poly-utils/package.json | 10 ++--- packages/geom-resample/CHANGELOG.md | 8 ++++ packages/geom-resample/package.json | 12 +++--- packages/geom-splines/CHANGELOG.md | 8 ++++ packages/geom-splines/package.json | 16 ++++---- packages/geom-subdiv-curve/CHANGELOG.md | 8 ++++ packages/geom-subdiv-curve/package.json | 10 ++--- packages/geom-tessellate/CHANGELOG.md | 8 ++++ packages/geom-tessellate/package.json | 14 +++---- packages/geom-voronoi/CHANGELOG.md | 8 ++++ packages/geom-voronoi/package.json | 18 ++++---- packages/geom/CHANGELOG.md | 8 ++++ packages/geom/package.json | 50 +++++++++++------------ packages/gp/CHANGELOG.md | 8 ++++ packages/gp/package.json | 12 +++--- packages/grid-iterators/CHANGELOG.md | 8 ++++ packages/grid-iterators/package.json | 12 +++--- packages/hdiff/CHANGELOG.md | 8 ++++ packages/hdiff/package.json | 12 +++--- packages/hdom-canvas/CHANGELOG.md | 8 ++++ packages/hdom-canvas/package.json | 12 +++--- packages/hdom-components/CHANGELOG.md | 8 ++++ packages/hdom-components/package.json | 12 +++--- packages/hdom-mock/CHANGELOG.md | 8 ++++ packages/hdom-mock/package.json | 8 ++-- packages/hdom/CHANGELOG.md | 8 ++++ packages/hdom/package.json | 12 +++--- packages/heaps/CHANGELOG.md | 8 ++++ packages/heaps/package.json | 6 +-- packages/hiccup-canvas/CHANGELOG.md | 8 ++++ packages/hiccup-canvas/package.json | 14 +++---- packages/hiccup-carbon-icons/CHANGELOG.md | 8 ++++ packages/hiccup-carbon-icons/package.json | 4 +- packages/hiccup-css/CHANGELOG.md | 8 ++++ packages/hiccup-css/package.json | 8 ++-- packages/hiccup-html/CHANGELOG.md | 8 ++++ packages/hiccup-html/package.json | 4 +- packages/hiccup-markdown/CHANGELOG.md | 8 ++++ packages/hiccup-markdown/package.json | 20 ++++----- packages/hiccup-svg/CHANGELOG.md | 8 ++++ packages/hiccup-svg/package.json | 6 +-- packages/hiccup/CHANGELOG.md | 8 ++++ packages/hiccup/package.json | 8 ++-- packages/idgen/CHANGELOG.md | 8 ++++ packages/idgen/package.json | 4 +- packages/iges/CHANGELOG.md | 8 ++++ packages/iges/package.json | 14 +++---- packages/imgui/CHANGELOG.md | 8 ++++ packages/imgui/package.json | 22 +++++----- packages/interceptors/CHANGELOG.md | 8 ++++ packages/interceptors/package.json | 10 ++--- packages/intervals/CHANGELOG.md | 8 ++++ packages/intervals/package.json | 8 ++-- packages/iterators/CHANGELOG.md | 8 ++++ packages/iterators/package.json | 6 +-- packages/k-means/CHANGELOG.md | 8 ++++ packages/k-means/package.json | 10 ++--- packages/ksuid/CHANGELOG.md | 8 ++++ packages/ksuid/package.json | 8 ++-- packages/layout/CHANGELOG.md | 8 ++++ packages/layout/package.json | 4 +- packages/leb128/CHANGELOG.md | 8 ++++ packages/leb128/package.json | 6 +-- packages/lowdisc/CHANGELOG.md | 8 ++++ packages/lowdisc/package.json | 4 +- packages/lsys/CHANGELOG.md | 8 ++++ packages/lsys/package.json | 14 +++---- packages/malloc/CHANGELOG.md | 8 ++++ packages/malloc/package.json | 8 ++-- packages/markdown-table/CHANGELOG.md | 8 ++++ packages/markdown-table/package.json | 10 ++--- packages/math/CHANGELOG.md | 11 +++++ packages/math/package.json | 4 +- packages/matrices/CHANGELOG.md | 8 ++++ packages/matrices/package.json | 10 ++--- packages/memoize/CHANGELOG.md | 8 ++++ packages/memoize/package.json | 4 +- packages/mime/CHANGELOG.md | 8 ++++ packages/mime/package.json | 4 +- packages/morton/CHANGELOG.md | 8 ++++ packages/morton/package.json | 8 ++-- packages/oquery/CHANGELOG.md | 8 ++++ packages/oquery/package.json | 8 ++-- packages/parse/CHANGELOG.md | 8 ++++ packages/parse/package.json | 10 ++--- packages/paths/CHANGELOG.md | 8 ++++ packages/paths/package.json | 6 +-- packages/pixel-io-netpbm/CHANGELOG.md | 8 ++++ packages/pixel-io-netpbm/package.json | 6 +-- packages/pixel/CHANGELOG.md | 8 ++++ packages/pixel/package.json | 14 +++---- packages/pointfree-lang/CHANGELOG.md | 8 ++++ packages/pointfree-lang/package.json | 10 ++--- packages/pointfree/CHANGELOG.md | 8 ++++ packages/pointfree/package.json | 8 ++-- packages/poisson/CHANGELOG.md | 8 ++++ packages/poisson/package.json | 14 +++---- packages/porter-duff/CHANGELOG.md | 8 ++++ packages/porter-duff/package.json | 6 +-- packages/ramp/CHANGELOG.md | 8 ++++ packages/ramp/package.json | 12 +++--- packages/random/CHANGELOG.md | 8 ++++ packages/random/package.json | 6 +-- packages/range-coder/CHANGELOG.md | 8 ++++ packages/range-coder/package.json | 4 +- packages/rdom-canvas/CHANGELOG.md | 8 ++++ packages/rdom-canvas/package.json | 14 +++---- packages/rdom-components/CHANGELOG.md | 8 ++++ packages/rdom-components/package.json | 16 ++++---- packages/rdom/CHANGELOG.md | 8 ++++ packages/rdom/package.json | 14 +++---- packages/resolve-map/CHANGELOG.md | 8 ++++ packages/resolve-map/package.json | 8 ++-- packages/router/CHANGELOG.md | 8 ++++ packages/router/package.json | 6 +-- packages/rstream-csp/CHANGELOG.md | 8 ++++ packages/rstream-csp/package.json | 6 +-- packages/rstream-dot/CHANGELOG.md | 8 ++++ packages/rstream-dot/package.json | 8 ++-- packages/rstream-gestures/CHANGELOG.md | 8 ++++ packages/rstream-gestures/package.json | 12 +++--- packages/rstream-graph/CHANGELOG.md | 8 ++++ packages/rstream-graph/package.json | 16 ++++---- packages/rstream-log-file/CHANGELOG.md | 8 ++++ packages/rstream-log-file/package.json | 4 +- packages/rstream-log/CHANGELOG.md | 8 ++++ packages/rstream-log/package.json | 12 +++--- packages/rstream-query/CHANGELOG.md | 8 ++++ packages/rstream-query/package.json | 16 ++++---- packages/rstream/CHANGELOG.md | 8 ++++ packages/rstream/package.json | 14 +++---- packages/sax/CHANGELOG.md | 8 ++++ packages/sax/package.json | 8 ++-- packages/scenegraph/CHANGELOG.md | 8 ++++ packages/scenegraph/package.json | 10 ++--- packages/seq/CHANGELOG.md | 8 ++++ packages/seq/package.json | 6 +-- packages/sexpr/CHANGELOG.md | 8 ++++ packages/sexpr/package.json | 8 ++-- packages/shader-ast-glsl/CHANGELOG.md | 8 ++++ packages/shader-ast-glsl/package.json | 8 ++-- packages/shader-ast-js/CHANGELOG.md | 8 ++++ packages/shader-ast-js/package.json | 16 ++++---- packages/shader-ast-stdlib/CHANGELOG.md | 8 ++++ packages/shader-ast-stdlib/package.json | 6 +-- packages/shader-ast/CHANGELOG.md | 8 ++++ packages/shader-ast/package.json | 12 +++--- packages/simd/CHANGELOG.md | 8 ++++ packages/simd/package.json | 4 +- packages/soa/CHANGELOG.md | 8 ++++ packages/soa/package.json | 10 ++--- packages/sparse/CHANGELOG.md | 8 ++++ packages/sparse/package.json | 6 +-- packages/strings/CHANGELOG.md | 8 ++++ packages/strings/package.json | 6 +-- packages/system/CHANGELOG.md | 8 ++++ packages/system/package.json | 6 +-- packages/text-canvas/CHANGELOG.md | 8 ++++ packages/text-canvas/package.json | 18 ++++---- packages/transducers-binary/CHANGELOG.md | 8 ++++ packages/transducers-binary/package.json | 10 ++--- packages/transducers-fsm/CHANGELOG.md | 8 ++++ packages/transducers-fsm/package.json | 6 +-- packages/transducers-hdom/CHANGELOG.md | 8 ++++ packages/transducers-hdom/package.json | 8 ++-- packages/transducers-patch/CHANGELOG.md | 8 ++++ packages/transducers-patch/package.json | 10 ++--- packages/transducers-stats/CHANGELOG.md | 8 ++++ packages/transducers-stats/package.json | 8 ++-- packages/transducers/CHANGELOG.md | 11 +++++ packages/transducers/package.json | 16 ++++---- packages/vclock/CHANGELOG.md | 8 ++++ packages/vclock/package.json | 4 +- packages/vector-pools/CHANGELOG.md | 8 ++++ packages/vector-pools/package.json | 14 +++---- packages/vectors/CHANGELOG.md | 27 ++++++++++++ packages/vectors/package.json | 16 ++++---- packages/viz/CHANGELOG.md | 8 ++++ packages/viz/package.json | 18 ++++---- packages/webgl-msdf/CHANGELOG.md | 8 ++++ packages/webgl-msdf/package.json | 14 +++---- packages/webgl-shadertoy/CHANGELOG.md | 8 ++++ packages/webgl-shadertoy/package.json | 10 ++--- packages/webgl/CHANGELOG.md | 8 ++++ packages/webgl/package.json | 26 ++++++------ packages/zipper/CHANGELOG.md | 8 ++++ packages/zipper/package.json | 8 ++-- 284 files changed, 1884 insertions(+), 717 deletions(-) diff --git a/packages/adjacency/CHANGELOG.md b/packages/adjacency/CHANGELOG.md index ede714e3de..4369b35258 100644 --- a/packages/adjacency/CHANGELOG.md +++ b/packages/adjacency/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/adjacency@1.0.4...@thi.ng/adjacency@1.0.5) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/adjacency + + + + + # [0.3.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/adjacency@0.2.6...@thi.ng/adjacency@0.3.0) (2021-02-20) diff --git a/packages/adjacency/package.json b/packages/adjacency/package.json index 84812b94f3..d61b555f3b 100644 --- a/packages/adjacency/package.json +++ b/packages/adjacency/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/adjacency", - "version": "1.0.4", + "version": "1.0.5", "description": "Sparse & bitwise adjacency matrices and related functions for directed & undirected graphs", "module": "./index.js", "main": "./lib/index.js", @@ -38,15 +38,15 @@ "pub": "yarn build:release && yarn publish --access public" }, "devDependencies": { - "@thi.ng/vectors": "^6.1.2" + "@thi.ng/vectors": "^6.2.0" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/arrays": "^1.0.2", - "@thi.ng/bitfield": "^1.0.2", - "@thi.ng/dcons": "^2.3.33", + "@thi.ng/api": "^7.2.0", + "@thi.ng/arrays": "^1.0.3", + "@thi.ng/bitfield": "^1.0.3", + "@thi.ng/dcons": "^2.3.34", "@thi.ng/errors": "^1.3.4", - "@thi.ng/sparse": "^0.1.88" + "@thi.ng/sparse": "^0.1.89" }, "files": [ "*.js", diff --git a/packages/api/CHANGELOG.md b/packages/api/CHANGELOG.md index 4e1aba0149..c9a9350152 100644 --- a/packages/api/CHANGELOG.md +++ b/packages/api/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [7.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/api@7.1.9...@thi.ng/api@7.2.0) (2021-09-03) + + +### Features + +* **api:** add DeepArrayValue type ([a309fac](https://github.com/thi-ng/umbrella/commit/a309faca831651f611b9b056d9c7587f85b60087)) + + + + + # [7.1.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/api@7.0.0...@thi.ng/api@7.1.0) (2021-03-03) diff --git a/packages/api/package.json b/packages/api/package.json index 9ad9741829..cc51cab8dd 100644 --- a/packages/api/package.json +++ b/packages/api/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/api", - "version": "7.1.9", + "version": "7.2.0", "description": "Common, generic types, interfaces & mixins", "module": "./index.js", "main": "./lib/index.js", diff --git a/packages/args/CHANGELOG.md b/packages/args/CHANGELOG.md index 8dd78e4486..e77ea5f208 100644 --- a/packages/args/CHANGELOG.md +++ b/packages/args/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.1.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/args@1.1.0...@thi.ng/args@1.1.1) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/args + + + + + # [1.1.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/args@1.0.4...@thi.ng/args@1.1.0) (2021-08-19) diff --git a/packages/args/package.json b/packages/args/package.json index b8643fc688..f8dd6c3775 100644 --- a/packages/args/package.json +++ b/packages/args/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/args", - "version": "1.1.0", + "version": "1.1.1", "description": "Declarative, functional & typechecked CLI argument/options parser, value coercions etc.", "module": "./index.js", "main": "./lib/index.js", @@ -38,10 +38,10 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/checks": "^2.9.10", + "@thi.ng/api": "^7.2.0", + "@thi.ng/checks": "^2.9.11", "@thi.ng/errors": "^1.3.4", - "@thi.ng/strings": "^2.1.6" + "@thi.ng/strings": "^2.1.7" }, "files": [ "*.js", diff --git a/packages/arrays/CHANGELOG.md b/packages/arrays/CHANGELOG.md index 7c61a8dacd..eb6f8d6bfb 100644 --- a/packages/arrays/CHANGELOG.md +++ b/packages/arrays/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/arrays@1.0.2...@thi.ng/arrays@1.0.3) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/arrays + + + + + # [0.10.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/arrays@0.9.2...@thi.ng/arrays@0.10.0) (2021-01-21) diff --git a/packages/arrays/package.json b/packages/arrays/package.json index 909b33c1b6..f2856cb652 100644 --- a/packages/arrays/package.json +++ b/packages/arrays/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/arrays", - "version": "1.0.2", + "version": "1.0.3", "description": "Array / Arraylike utilities", "module": "./index.js", "main": "./lib/index.js", @@ -38,12 +38,12 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/checks": "^2.9.10", - "@thi.ng/compare": "^1.3.33", + "@thi.ng/api": "^7.2.0", + "@thi.ng/checks": "^2.9.11", + "@thi.ng/compare": "^1.3.34", "@thi.ng/equiv": "^1.0.45", "@thi.ng/errors": "^1.3.4", - "@thi.ng/random": "^2.4.7" + "@thi.ng/random": "^2.4.8" }, "files": [ "*.js", diff --git a/packages/associative/CHANGELOG.md b/packages/associative/CHANGELOG.md index 891391a113..53f1112030 100644 --- a/packages/associative/CHANGELOG.md +++ b/packages/associative/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.2.16](https://github.com/thi-ng/umbrella/compare/@thi.ng/associative@5.2.15...@thi.ng/associative@5.2.16) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/associative + + + + + ## [5.2.15](https://github.com/thi-ng/umbrella/compare/@thi.ng/associative@5.2.14...@thi.ng/associative@5.2.15) (2021-08-22) **Note:** Version bump only for package @thi.ng/associative diff --git a/packages/associative/package.json b/packages/associative/package.json index 1de8407bd3..07a05f186b 100644 --- a/packages/associative/package.json +++ b/packages/associative/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/associative", - "version": "5.2.15", + "version": "5.2.16", "description": "Alternative Map and Set implementations with customizable equality semantics & supporting operations", "module": "./index.js", "main": "./lib/index.js", @@ -38,15 +38,15 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/arrays": "^1.0.2", - "@thi.ng/binary": "^2.2.10", - "@thi.ng/checks": "^2.9.10", - "@thi.ng/compare": "^1.3.33", - "@thi.ng/dcons": "^2.3.33", + "@thi.ng/api": "^7.2.0", + "@thi.ng/arrays": "^1.0.3", + "@thi.ng/binary": "^2.2.11", + "@thi.ng/checks": "^2.9.11", + "@thi.ng/compare": "^1.3.34", + "@thi.ng/dcons": "^2.3.34", "@thi.ng/equiv": "^1.0.45", "@thi.ng/errors": "^1.3.4", - "@thi.ng/transducers": "^7.9.1", + "@thi.ng/transducers": "^7.9.2", "tslib": "^2.3.1" }, "files": [ diff --git a/packages/atom/CHANGELOG.md b/packages/atom/CHANGELOG.md index 2b2598f6e3..46615b74fe 100644 --- a/packages/atom/CHANGELOG.md +++ b/packages/atom/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.1.42](https://github.com/thi-ng/umbrella/compare/@thi.ng/atom@4.1.41...@thi.ng/atom@4.1.42) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/atom + + + + + # [4.1.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/atom@4.0.0...@thi.ng/atom@4.1.0) (2020-04-01) diff --git a/packages/atom/package.json b/packages/atom/package.json index 75fada18c0..09ef26cf43 100644 --- a/packages/atom/package.json +++ b/packages/atom/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/atom", - "version": "4.1.41", + "version": "4.1.42", "description": "Mutable wrappers for nested immutable values with optional undo/redo history and transaction support", "module": "./index.js", "main": "./lib/index.js", @@ -38,10 +38,10 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", + "@thi.ng/api": "^7.2.0", "@thi.ng/equiv": "^1.0.45", "@thi.ng/errors": "^1.3.4", - "@thi.ng/paths": "^4.2.13", + "@thi.ng/paths": "^4.2.14", "tslib": "^2.3.1" }, "files": [ diff --git a/packages/bench/CHANGELOG.md b/packages/bench/CHANGELOG.md index fefce06164..0d8434a7a6 100644 --- a/packages/bench/CHANGELOG.md +++ b/packages/bench/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.1.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/bench@2.1.5...@thi.ng/bench@2.1.6) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/bench + + + + + # [2.1.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/bench@2.0.31...@thi.ng/bench@2.1.0) (2021-03-12) diff --git a/packages/bench/package.json b/packages/bench/package.json index 326361f6db..304d95ea5e 100644 --- a/packages/bench/package.json +++ b/packages/bench/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/bench", - "version": "2.1.5", + "version": "2.1.6", "description": "Benchmarking utilities w/ various statistics & formatters (CSV, Markdown etc.)", "module": "./index.js", "main": "./lib/index.js", @@ -38,7 +38,7 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9" + "@thi.ng/api": "^7.2.0" }, "files": [ "*.js", diff --git a/packages/bencode/CHANGELOG.md b/packages/bencode/CHANGELOG.md index 1c52f9f733..a5f58a579a 100644 --- a/packages/bencode/CHANGELOG.md +++ b/packages/bencode/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/bencode@1.0.4...@thi.ng/bencode@1.0.5) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/bencode + + + + + # [0.3.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/bencode@0.2.17...@thi.ng/bencode@0.3.0) (2019-07-07) ### Features diff --git a/packages/bencode/package.json b/packages/bencode/package.json index 5d638f15a0..05d5ff79c2 100644 --- a/packages/bencode/package.json +++ b/packages/bencode/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/bencode", - "version": "1.0.4", + "version": "1.0.5", "description": "Bencode binary encoder / decoder with optional UTF8 encoding & floating point support", "module": "./index.js", "main": "./lib/index.js", @@ -38,13 +38,13 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/arrays": "^1.0.2", - "@thi.ng/checks": "^2.9.10", - "@thi.ng/defmulti": "^1.3.16", + "@thi.ng/api": "^7.2.0", + "@thi.ng/arrays": "^1.0.3", + "@thi.ng/checks": "^2.9.11", + "@thi.ng/defmulti": "^1.3.17", "@thi.ng/errors": "^1.3.4", - "@thi.ng/transducers": "^7.9.1", - "@thi.ng/transducers-binary": "^1.0.4" + "@thi.ng/transducers": "^7.9.2", + "@thi.ng/transducers-binary": "^1.0.5" }, "files": [ "*.js", diff --git a/packages/binary/CHANGELOG.md b/packages/binary/CHANGELOG.md index f5d7ea05ae..dd7b398ecc 100644 --- a/packages/binary/CHANGELOG.md +++ b/packages/binary/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.2.11](https://github.com/thi-ng/umbrella/compare/@thi.ng/binary@2.2.10...@thi.ng/binary@2.2.11) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/binary + + + + + # [2.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/binary@2.1.0...@thi.ng/binary@2.2.0) (2021-03-03) diff --git a/packages/binary/package.json b/packages/binary/package.json index 40f2ddc2c3..b3880aa96b 100644 --- a/packages/binary/package.json +++ b/packages/binary/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/binary", - "version": "2.2.10", + "version": "2.2.11", "description": "100+ assorted binary / bitwise operations, conversions, utilities, lookup tables", "module": "./index.js", "main": "./lib/index.js", @@ -38,7 +38,7 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9" + "@thi.ng/api": "^7.2.0" }, "files": [ "*.js", diff --git a/packages/bitfield/CHANGELOG.md b/packages/bitfield/CHANGELOG.md index fdbb2aed7f..3ecabcaaa7 100644 --- a/packages/bitfield/CHANGELOG.md +++ b/packages/bitfield/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/bitfield@1.0.2...@thi.ng/bitfield@1.0.3) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/bitfield + + + + + # [0.4.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/bitfield@0.3.30...@thi.ng/bitfield@0.4.0) (2021-02-20) diff --git a/packages/bitfield/package.json b/packages/bitfield/package.json index 857f5039e9..7d3f216901 100644 --- a/packages/bitfield/package.json +++ b/packages/bitfield/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/bitfield", - "version": "1.0.2", + "version": "1.0.3", "description": "1D / 2D bit field implementations", "module": "./index.js", "main": "./lib/index.js", @@ -38,10 +38,10 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/binary": "^2.2.10", + "@thi.ng/api": "^7.2.0", + "@thi.ng/binary": "^2.2.11", "@thi.ng/errors": "^1.3.4", - "@thi.ng/strings": "^2.1.6" + "@thi.ng/strings": "^2.1.7" }, "files": [ "*.js", diff --git a/packages/cache/CHANGELOG.md b/packages/cache/CHANGELOG.md index 2ae3e93427..86406bf74e 100644 --- a/packages/cache/CHANGELOG.md +++ b/packages/cache/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.94](https://github.com/thi-ng/umbrella/compare/@thi.ng/cache@1.0.93...@thi.ng/cache@1.0.94) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/cache + + + + + # [1.0.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/cache@0.2.40...@thi.ng/cache@1.0.0) (2019-01-21) ### Bug Fixes diff --git a/packages/cache/package.json b/packages/cache/package.json index 1259eb0ea4..e8956b0b4f 100644 --- a/packages/cache/package.json +++ b/packages/cache/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/cache", - "version": "1.0.93", + "version": "1.0.94", "description": "In-memory cache implementations with ES6 Map-like API and different eviction strategies", "module": "./index.js", "main": "./lib/index.js", @@ -38,9 +38,9 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/dcons": "^2.3.33", - "@thi.ng/transducers": "^7.9.1" + "@thi.ng/api": "^7.2.0", + "@thi.ng/dcons": "^2.3.34", + "@thi.ng/transducers": "^7.9.2" }, "files": [ "*.js", diff --git a/packages/checks/CHANGELOG.md b/packages/checks/CHANGELOG.md index 137b7a7945..17dd8393b5 100644 --- a/packages/checks/CHANGELOG.md +++ b/packages/checks/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.9.11](https://github.com/thi-ng/umbrella/compare/@thi.ng/checks@2.9.10...@thi.ng/checks@2.9.11) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/checks + + + + + # [2.9.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/checks@2.8.0...@thi.ng/checks@2.9.0) (2021-02-20) diff --git a/packages/checks/package.json b/packages/checks/package.json index ce30a14bb6..bc18649ad8 100644 --- a/packages/checks/package.json +++ b/packages/checks/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/checks", - "version": "2.9.10", + "version": "2.9.11", "description": "Collection of 50+ type, feature & value checks", "module": "./index.js", "main": "./lib/index.js", diff --git a/packages/color/CHANGELOG.md b/packages/color/CHANGELOG.md index 1ad7712d1c..45f64a280a 100644 --- a/packages/color/CHANGELOG.md +++ b/packages/color/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.2.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/color@3.2.6...@thi.ng/color@3.2.7) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/color + + + + + # [3.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/color@3.1.18...@thi.ng/color@3.2.0) (2021-08-04) diff --git a/packages/color/package.json b/packages/color/package.json index ea2fad9a09..1f4ff24f2f 100644 --- a/packages/color/package.json +++ b/packages/color/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/color", - "version": "3.2.6", + "version": "3.2.7", "description": "Array-based color types, CSS parsing, conversions, transformations, declarative theme generation, gradients, presets", "module": "./index.js", "main": "./lib/index.js", @@ -39,19 +39,19 @@ "tool:swatches": "ts-node -P tools/tsconfig.json tools/index.ts" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/arrays": "^1.0.2", - "@thi.ng/binary": "^2.2.10", - "@thi.ng/checks": "^2.9.10", - "@thi.ng/compare": "^1.3.33", - "@thi.ng/compose": "^1.4.35", - "@thi.ng/defmulti": "^1.3.16", + "@thi.ng/api": "^7.2.0", + "@thi.ng/arrays": "^1.0.3", + "@thi.ng/binary": "^2.2.11", + "@thi.ng/checks": "^2.9.11", + "@thi.ng/compare": "^1.3.34", + "@thi.ng/compose": "^1.4.36", + "@thi.ng/defmulti": "^1.3.17", "@thi.ng/errors": "^1.3.4", - "@thi.ng/math": "^4.0.5", - "@thi.ng/random": "^2.4.7", - "@thi.ng/strings": "^2.1.6", - "@thi.ng/transducers": "^7.9.1", - "@thi.ng/vectors": "^6.1.2" + "@thi.ng/math": "^4.0.6", + "@thi.ng/random": "^2.4.8", + "@thi.ng/strings": "^2.1.7", + "@thi.ng/transducers": "^7.9.2", + "@thi.ng/vectors": "^6.2.0" }, "files": [ "*.js", diff --git a/packages/colored-noise/CHANGELOG.md b/packages/colored-noise/CHANGELOG.md index 5059becf13..10d2ebc778 100644 --- a/packages/colored-noise/CHANGELOG.md +++ b/packages/colored-noise/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.47](https://github.com/thi-ng/umbrella/compare/@thi.ng/colored-noise@0.1.46...@thi.ng/colored-noise@0.1.47) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/colored-noise + + + + + # 0.1.0 (2020-08-28) diff --git a/packages/colored-noise/package.json b/packages/colored-noise/package.json index e740ca1190..87d131fc8e 100644 --- a/packages/colored-noise/package.json +++ b/packages/colored-noise/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/colored-noise", - "version": "0.1.46", + "version": "0.1.47", "description": "Customizable O(1) ES6 generators for colored noise", "module": "./index.js", "main": "./lib/index.js", @@ -38,16 +38,16 @@ "pub": "yarn build:release && yarn publish --access public" }, "devDependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/dsp": "^3.0.30", - "@thi.ng/dsp-io-wav": "^1.0.6", - "@thi.ng/text-canvas": "^1.1.3", - "@thi.ng/transducers": "^7.9.1", - "@thi.ng/vectors": "^6.1.2" + "@thi.ng/api": "^7.2.0", + "@thi.ng/dsp": "^3.0.31", + "@thi.ng/dsp-io-wav": "^1.0.7", + "@thi.ng/text-canvas": "^1.1.4", + "@thi.ng/transducers": "^7.9.2", + "@thi.ng/vectors": "^6.2.0" }, "dependencies": { - "@thi.ng/binary": "^2.2.10", - "@thi.ng/random": "^2.4.7" + "@thi.ng/binary": "^2.2.11", + "@thi.ng/random": "^2.4.8" }, "files": [ "*.js", diff --git a/packages/compare/CHANGELOG.md b/packages/compare/CHANGELOG.md index 8f224b9802..deb1df8035 100644 --- a/packages/compare/CHANGELOG.md +++ b/packages/compare/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.3.34](https://github.com/thi-ng/umbrella/compare/@thi.ng/compare@1.3.33...@thi.ng/compare@1.3.34) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/compare + + + + + # [1.3.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/compare@1.2.2...@thi.ng/compare@1.3.0) (2020-04-05) diff --git a/packages/compare/package.json b/packages/compare/package.json index 178a34efab..a514bf6ce2 100644 --- a/packages/compare/package.json +++ b/packages/compare/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/compare", - "version": "1.3.33", + "version": "1.3.34", "description": "Comparators with support for types implementing the @thi.ng/api/ICompare interface", "module": "./index.js", "main": "./lib/index.js", @@ -38,7 +38,7 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9" + "@thi.ng/api": "^7.2.0" }, "files": [ "*.js", diff --git a/packages/compose/CHANGELOG.md b/packages/compose/CHANGELOG.md index 9d7e5cac39..a138c938c5 100644 --- a/packages/compose/CHANGELOG.md +++ b/packages/compose/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.4.36](https://github.com/thi-ng/umbrella/compare/@thi.ng/compose@1.4.35...@thi.ng/compose@1.4.36) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/compose + + + + + # [1.4.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/compose@1.3.12...@thi.ng/compose@1.4.0) (2020-03-28) diff --git a/packages/compose/package.json b/packages/compose/package.json index f66b24333e..1dbd7210d7 100644 --- a/packages/compose/package.json +++ b/packages/compose/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/compose", - "version": "1.4.35", + "version": "1.4.36", "description": "Optimized functional composition helpers", "module": "./index.js", "main": "./lib/index.js", @@ -38,7 +38,7 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", + "@thi.ng/api": "^7.2.0", "@thi.ng/errors": "^1.3.4" }, "files": [ diff --git a/packages/csp/CHANGELOG.md b/packages/csp/CHANGELOG.md index eaeaac92e9..5f6fd325b1 100644 --- a/packages/csp/CHANGELOG.md +++ b/packages/csp/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.1.74](https://github.com/thi-ng/umbrella/compare/@thi.ng/csp@1.1.73...@thi.ng/csp@1.1.74) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/csp + + + + + # [1.1.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/csp@1.0.19...@thi.ng/csp@1.1.0) (2019-07-07) ### Bug Fixes diff --git a/packages/csp/package.json b/packages/csp/package.json index 2d5bde932f..1149473a59 100644 --- a/packages/csp/package.json +++ b/packages/csp/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/csp", - "version": "1.1.73", + "version": "1.1.74", "description": "ES6 promise based CSP primitives & operations", "module": "./index.js", "main": "./lib/index.js", @@ -42,12 +42,12 @@ "testnode": "tsc -p test && node build/test/node.js" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/arrays": "^1.0.2", - "@thi.ng/checks": "^2.9.10", - "@thi.ng/dcons": "^2.3.33", + "@thi.ng/api": "^7.2.0", + "@thi.ng/arrays": "^1.0.3", + "@thi.ng/checks": "^2.9.11", + "@thi.ng/dcons": "^2.3.34", "@thi.ng/errors": "^1.3.4", - "@thi.ng/transducers": "^7.9.1" + "@thi.ng/transducers": "^7.9.2" }, "files": [ "*.js", diff --git a/packages/csv/CHANGELOG.md b/packages/csv/CHANGELOG.md index 98fca9bbd0..b53794d1fe 100644 --- a/packages/csv/CHANGELOG.md +++ b/packages/csv/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/csv@1.0.6...@thi.ng/csv@1.0.7) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/csv + + + + + # 0.1.0 (2020-11-24) diff --git a/packages/csv/package.json b/packages/csv/package.json index c462281a1e..9f449f7b25 100644 --- a/packages/csv/package.json +++ b/packages/csv/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/csv", - "version": "1.0.6", + "version": "1.0.7", "description": "Customizable, transducer-based CSV parser/object mapper and transformer", "module": "./index.js", "main": "./lib/index.js", @@ -38,10 +38,10 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/checks": "^2.9.10", - "@thi.ng/strings": "^2.1.6", - "@thi.ng/transducers": "^7.9.1" + "@thi.ng/api": "^7.2.0", + "@thi.ng/checks": "^2.9.11", + "@thi.ng/strings": "^2.1.7", + "@thi.ng/transducers": "^7.9.2" }, "files": [ "*.js", diff --git a/packages/date/CHANGELOG.md b/packages/date/CHANGELOG.md index c0f3af2a4b..d3fb8988ed 100644 --- a/packages/date/CHANGELOG.md +++ b/packages/date/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/date@1.0.5...@thi.ng/date@1.0.6) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/date + + + + + ## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/date@1.0.3...@thi.ng/date@1.0.4) (2021-08-09) diff --git a/packages/date/package.json b/packages/date/package.json index 2949940bd8..c2efac0515 100644 --- a/packages/date/package.json +++ b/packages/date/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/date", - "version": "1.0.5", + "version": "1.0.6", "description": "Datetime types, relative dates, math, iterators, composable formatters, locales", "module": "./index.js", "main": "./lib/index.js", @@ -38,9 +38,9 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/checks": "^2.9.10", - "@thi.ng/strings": "^2.1.6" + "@thi.ng/api": "^7.2.0", + "@thi.ng/checks": "^2.9.11", + "@thi.ng/strings": "^2.1.7" }, "files": [ "*.js", diff --git a/packages/dcons/CHANGELOG.md b/packages/dcons/CHANGELOG.md index 26e90ab743..d4e7173af3 100644 --- a/packages/dcons/CHANGELOG.md +++ b/packages/dcons/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.3.34](https://github.com/thi-ng/umbrella/compare/@thi.ng/dcons@2.3.33...@thi.ng/dcons@2.3.34) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/dcons + + + + + # [2.3.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/dcons@2.2.32...@thi.ng/dcons@2.3.0) (2020-10-19) diff --git a/packages/dcons/package.json b/packages/dcons/package.json index 6a2c271f5b..a8b32499a9 100644 --- a/packages/dcons/package.json +++ b/packages/dcons/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/dcons", - "version": "2.3.33", + "version": "2.3.34", "description": "Double-linked lists with comprehensive set of operations (incl. optional self-organizing behaviors)", "module": "./index.js", "main": "./lib/index.js", @@ -38,13 +38,13 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/checks": "^2.9.10", - "@thi.ng/compare": "^1.3.33", + "@thi.ng/api": "^7.2.0", + "@thi.ng/checks": "^2.9.11", + "@thi.ng/compare": "^1.3.34", "@thi.ng/equiv": "^1.0.45", "@thi.ng/errors": "^1.3.4", - "@thi.ng/random": "^2.4.7", - "@thi.ng/transducers": "^7.9.1" + "@thi.ng/random": "^2.4.8", + "@thi.ng/transducers": "^7.9.2" }, "files": [ "*.js", diff --git a/packages/defmulti/CHANGELOG.md b/packages/defmulti/CHANGELOG.md index 98f47a0359..db9e80c4df 100644 --- a/packages/defmulti/CHANGELOG.md +++ b/packages/defmulti/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.3.17](https://github.com/thi-ng/umbrella/compare/@thi.ng/defmulti@1.3.16...@thi.ng/defmulti@1.3.17) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/defmulti + + + + + ## [1.3.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/defmulti@1.3.5...@thi.ng/defmulti@1.3.6) (2021-03-03) diff --git a/packages/defmulti/package.json b/packages/defmulti/package.json index 34a09418d6..7cd75c6098 100644 --- a/packages/defmulti/package.json +++ b/packages/defmulti/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/defmulti", - "version": "1.3.16", + "version": "1.3.17", "description": "Dynamic, extensible multiple dispatch via user supplied dispatch function.", "module": "./index.js", "main": "./lib/index.js", @@ -38,7 +38,7 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", + "@thi.ng/api": "^7.2.0", "@thi.ng/errors": "^1.3.4" }, "files": [ diff --git a/packages/dgraph-dot/CHANGELOG.md b/packages/dgraph-dot/CHANGELOG.md index 8e8a77e666..c9eeb64224 100644 --- a/packages/dgraph-dot/CHANGELOG.md +++ b/packages/dgraph-dot/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/dgraph-dot@1.0.7...@thi.ng/dgraph-dot@1.0.8) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/dgraph-dot + + + + + ## [1.0.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/dgraph-dot@1.0.6...@thi.ng/dgraph-dot@1.0.7) (2021-08-22) **Note:** Version bump only for package @thi.ng/dgraph-dot diff --git a/packages/dgraph-dot/package.json b/packages/dgraph-dot/package.json index ce8c90cec5..c709703f89 100644 --- a/packages/dgraph-dot/package.json +++ b/packages/dgraph-dot/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/dgraph-dot", - "version": "1.0.7", + "version": "1.0.8", "description": "Customizable Graphviz DOT serialization for @thi.ng/dgraph", "module": "./index.js", "main": "./lib/index.js", @@ -38,9 +38,9 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/dgraph": "^1.3.34", - "@thi.ng/dot": "^1.2.37" + "@thi.ng/api": "^7.2.0", + "@thi.ng/dgraph": "^1.3.35", + "@thi.ng/dot": "^1.2.38" }, "files": [ "*.js", diff --git a/packages/dgraph/CHANGELOG.md b/packages/dgraph/CHANGELOG.md index c5758a9fa5..2e2fa075c9 100644 --- a/packages/dgraph/CHANGELOG.md +++ b/packages/dgraph/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.3.35](https://github.com/thi-ng/umbrella/compare/@thi.ng/dgraph@1.3.34...@thi.ng/dgraph@1.3.35) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/dgraph + + + + + ## [1.3.34](https://github.com/thi-ng/umbrella/compare/@thi.ng/dgraph@1.3.33...@thi.ng/dgraph@1.3.34) (2021-08-22) **Note:** Version bump only for package @thi.ng/dgraph diff --git a/packages/dgraph/package.json b/packages/dgraph/package.json index 47137b7959..d94da64b12 100644 --- a/packages/dgraph/package.json +++ b/packages/dgraph/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/dgraph", - "version": "1.3.34", + "version": "1.3.35", "description": "Type-agnostic directed acyclic graph (DAG) & graph operations", "module": "./index.js", "main": "./lib/index.js", @@ -38,11 +38,11 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/associative": "^5.2.15", + "@thi.ng/api": "^7.2.0", + "@thi.ng/associative": "^5.2.16", "@thi.ng/equiv": "^1.0.45", "@thi.ng/errors": "^1.3.4", - "@thi.ng/transducers": "^7.9.1" + "@thi.ng/transducers": "^7.9.2" }, "files": [ "*.js", diff --git a/packages/diff/CHANGELOG.md b/packages/diff/CHANGELOG.md index b7dd793435..ae272ac644 100644 --- a/packages/diff/CHANGELOG.md +++ b/packages/diff/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.13](https://github.com/thi-ng/umbrella/compare/@thi.ng/diff@4.0.12...@thi.ng/diff@4.0.13) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/diff + + + + + # [4.0.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/diff@3.2.35...@thi.ng/diff@4.0.0) (2020-12-22) diff --git a/packages/diff/package.json b/packages/diff/package.json index 19a5f3fffd..092443b458 100644 --- a/packages/diff/package.json +++ b/packages/diff/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/diff", - "version": "4.0.12", + "version": "4.0.13", "description": "Customizable diff implementations for arrays (sequential) & objects (associative), with or without linear edit logs", "module": "./index.js", "main": "./lib/index.js", @@ -38,7 +38,7 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", + "@thi.ng/api": "^7.2.0", "@thi.ng/equiv": "^1.0.45" }, "files": [ diff --git a/packages/distance/CHANGELOG.md b/packages/distance/CHANGELOG.md index 485b4aad40..5466297f0e 100644 --- a/packages/distance/CHANGELOG.md +++ b/packages/distance/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/distance@1.0.6...@thi.ng/distance@1.0.7) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/distance + + + + + # [0.3.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/distance@0.2.2...@thi.ng/distance@0.3.0) (2021-04-19) diff --git a/packages/distance/package.json b/packages/distance/package.json index 204a52155a..a8d9529a0f 100644 --- a/packages/distance/package.json +++ b/packages/distance/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/distance", - "version": "1.0.6", + "version": "1.0.7", "description": "N-dimensional distance metrics & K-nearest neighborhoods for point queries", "module": "./index.js", "main": "./lib/index.js", @@ -38,10 +38,10 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/heaps": "^1.3.0", - "@thi.ng/math": "^4.0.5", - "@thi.ng/vectors": "^6.1.2" + "@thi.ng/api": "^7.2.0", + "@thi.ng/heaps": "^1.3.1", + "@thi.ng/math": "^4.0.6", + "@thi.ng/vectors": "^6.2.0" }, "files": [ "*.js", diff --git a/packages/dl-asset/CHANGELOG.md b/packages/dl-asset/CHANGELOG.md index f0f90205f6..b72ce08c6c 100644 --- a/packages/dl-asset/CHANGELOG.md +++ b/packages/dl-asset/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/dl-asset@1.0.4...@thi.ng/dl-asset@1.0.5) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/dl-asset + + + + + # [0.4.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/dl-asset@0.3.14...@thi.ng/dl-asset@0.4.0) (2020-07-08) diff --git a/packages/dl-asset/package.json b/packages/dl-asset/package.json index 52cf172fb6..91a293a396 100644 --- a/packages/dl-asset/package.json +++ b/packages/dl-asset/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/dl-asset", - "version": "1.0.4", + "version": "1.0.5", "description": "Local asset download for web apps, with automatic MIME type detection", "module": "./index.js", "main": "./lib/index.js", @@ -38,9 +38,9 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/checks": "^2.9.10", - "@thi.ng/mime": "^1.0.4" + "@thi.ng/api": "^7.2.0", + "@thi.ng/checks": "^2.9.11", + "@thi.ng/mime": "^1.0.5" }, "files": [ "*.js", diff --git a/packages/dlogic/CHANGELOG.md b/packages/dlogic/CHANGELOG.md index aab39f5142..6f4cab9d5c 100644 --- a/packages/dlogic/CHANGELOG.md +++ b/packages/dlogic/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.49](https://github.com/thi-ng/umbrella/compare/@thi.ng/dlogic@1.0.48...@thi.ng/dlogic@1.0.49) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/dlogic + + + + + # [1.0.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/dlogic@0.1.2...@thi.ng/dlogic@1.0.0) (2019-01-21) ### Build System diff --git a/packages/dlogic/package.json b/packages/dlogic/package.json index 6980b816f8..d1fc50a877 100644 --- a/packages/dlogic/package.json +++ b/packages/dlogic/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/dlogic", - "version": "1.0.48", + "version": "1.0.49", "description": "Assorted digital logic ops / constructs", "module": "./index.js", "main": "./lib/index.js", @@ -38,7 +38,7 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9" + "@thi.ng/api": "^7.2.0" }, "files": [ "*.js", diff --git a/packages/dot/CHANGELOG.md b/packages/dot/CHANGELOG.md index d1337f491f..51f999a7e4 100644 --- a/packages/dot/CHANGELOG.md +++ b/packages/dot/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.2.38](https://github.com/thi-ng/umbrella/compare/@thi.ng/dot@1.2.37...@thi.ng/dot@1.2.38) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/dot + + + + + # [1.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/dot@1.1.14...@thi.ng/dot@1.2.0) (2020-04-03) diff --git a/packages/dot/package.json b/packages/dot/package.json index 3bc419711b..deb3a2a331 100644 --- a/packages/dot/package.json +++ b/packages/dot/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/dot", - "version": "1.2.37", + "version": "1.2.38", "description": "Graphviz document abstraction & serialization to DOT format", "module": "./index.js", "main": "./lib/index.js", @@ -38,8 +38,8 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/checks": "^2.9.10" + "@thi.ng/api": "^7.2.0", + "@thi.ng/checks": "^2.9.11" }, "files": [ "*.js", diff --git a/packages/dsp-io-wav/CHANGELOG.md b/packages/dsp-io-wav/CHANGELOG.md index 1158321d1a..338ce5d502 100644 --- a/packages/dsp-io-wav/CHANGELOG.md +++ b/packages/dsp-io-wav/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/dsp-io-wav@1.0.6...@thi.ng/dsp-io-wav@1.0.7) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/dsp-io-wav + + + + + # 0.1.0 (2020-02-25) diff --git a/packages/dsp-io-wav/package.json b/packages/dsp-io-wav/package.json index 5a589bcd38..3ab03dea8e 100644 --- a/packages/dsp-io-wav/package.json +++ b/packages/dsp-io-wav/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/dsp-io-wav", - "version": "1.0.6", + "version": "1.0.7", "description": "WAV file format generation", "module": "./index.js", "main": "./lib/index.js", @@ -38,10 +38,10 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/binary": "^2.2.10", - "@thi.ng/transducers": "^7.9.1", - "@thi.ng/transducers-binary": "^1.0.4" + "@thi.ng/api": "^7.2.0", + "@thi.ng/binary": "^2.2.11", + "@thi.ng/transducers": "^7.9.2", + "@thi.ng/transducers-binary": "^1.0.5" }, "files": [ "*.js", diff --git a/packages/dsp/CHANGELOG.md b/packages/dsp/CHANGELOG.md index 712a236256..8c29000d44 100644 --- a/packages/dsp/CHANGELOG.md +++ b/packages/dsp/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.0.31](https://github.com/thi-ng/umbrella/compare/@thi.ng/dsp@3.0.30...@thi.ng/dsp@3.0.31) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/dsp + + + + + # [3.0.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/dsp@2.1.5...@thi.ng/dsp@3.0.0) (2020-12-22) diff --git a/packages/dsp/package.json b/packages/dsp/package.json index 7e43f2cdd2..8e7ccbef37 100644 --- a/packages/dsp/package.json +++ b/packages/dsp/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/dsp", - "version": "3.0.30", + "version": "3.0.31", "description": "Composable signal generators, oscillators, filters, FFT, spectrum, windowing & related DSP utils", "module": "./index.js", "main": "./lib/index.js", @@ -38,12 +38,12 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/checks": "^2.9.10", + "@thi.ng/api": "^7.2.0", + "@thi.ng/checks": "^2.9.11", "@thi.ng/errors": "^1.3.4", - "@thi.ng/math": "^4.0.5", - "@thi.ng/random": "^2.4.7", - "@thi.ng/transducers": "^7.9.1" + "@thi.ng/math": "^4.0.6", + "@thi.ng/random": "^2.4.8", + "@thi.ng/transducers": "^7.9.2" }, "files": [ "*.js", diff --git a/packages/dual-algebra/CHANGELOG.md b/packages/dual-algebra/CHANGELOG.md index 35cf287415..c04206c10a 100644 --- a/packages/dual-algebra/CHANGELOG.md +++ b/packages/dual-algebra/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/dual-algebra@0.1.18...@thi.ng/dual-algebra@0.2.0) (2021-09-03) + + +### Features + +* **dual-algebra:** add mix(), add vector ops ([091f872](https://github.com/thi-ng/umbrella/commit/091f872e12dd6ba404a22be8b33bfa97ff345557)) + + + + + # 0.1.0 (2020-09-13) diff --git a/packages/dual-algebra/package.json b/packages/dual-algebra/package.json index 2ebceb04f4..2ea7443dee 100644 --- a/packages/dual-algebra/package.json +++ b/packages/dual-algebra/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/dual-algebra", - "version": "0.1.18", + "version": "0.2.0", "description": "Multivariate dual number algebra, automatic differentiation", "module": "./index.js", "main": "./lib/index.js", @@ -38,7 +38,7 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9" + "@thi.ng/api": "^7.2.0" }, "files": [ "*.js", diff --git a/packages/dynvar/CHANGELOG.md b/packages/dynvar/CHANGELOG.md index 0849bdf272..30f310150d 100644 --- a/packages/dynvar/CHANGELOG.md +++ b/packages/dynvar/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.41](https://github.com/thi-ng/umbrella/compare/@thi.ng/dynvar@0.1.40...@thi.ng/dynvar@0.1.41) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/dynvar + + + + + # 0.1.0 (2020-01-24) ### Features diff --git a/packages/dynvar/package.json b/packages/dynvar/package.json index 87ee33ad77..5000382e57 100644 --- a/packages/dynvar/package.json +++ b/packages/dynvar/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/dynvar", - "version": "0.1.40", + "version": "0.1.41", "description": "Dynamically scoped variable bindings", "module": "./index.js", "main": "./lib/index.js", @@ -38,7 +38,7 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9" + "@thi.ng/api": "^7.2.0" }, "files": [ "*.js", diff --git a/packages/ecs/CHANGELOG.md b/packages/ecs/CHANGELOG.md index d1799396c8..e834e98260 100644 --- a/packages/ecs/CHANGELOG.md +++ b/packages/ecs/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.5.26](https://github.com/thi-ng/umbrella/compare/@thi.ng/ecs@0.5.25...@thi.ng/ecs@0.5.26) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/ecs + + + + + ## [0.5.25](https://github.com/thi-ng/umbrella/compare/@thi.ng/ecs@0.5.24...@thi.ng/ecs@0.5.25) (2021-08-22) **Note:** Version bump only for package @thi.ng/ecs diff --git a/packages/ecs/package.json b/packages/ecs/package.json index 2272ec207f..dd25f71484 100644 --- a/packages/ecs/package.json +++ b/packages/ecs/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/ecs", - "version": "0.5.25", + "version": "0.5.26", "description": "Entity Component System based around typed arrays & sparse sets", "module": "./index.js", "main": "./lib/index.js", @@ -41,14 +41,14 @@ "@thi.ng/equiv": "^1.0.45" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/associative": "^5.2.15", - "@thi.ng/binary": "^2.2.10", - "@thi.ng/checks": "^2.9.10", - "@thi.ng/dcons": "^2.3.33", - "@thi.ng/idgen": "^1.0.4", - "@thi.ng/malloc": "^5.0.13", - "@thi.ng/transducers": "^7.9.1", + "@thi.ng/api": "^7.2.0", + "@thi.ng/associative": "^5.2.16", + "@thi.ng/binary": "^2.2.11", + "@thi.ng/checks": "^2.9.11", + "@thi.ng/dcons": "^2.3.34", + "@thi.ng/idgen": "^1.0.5", + "@thi.ng/malloc": "^5.0.14", + "@thi.ng/transducers": "^7.9.2", "tslib": "^2.3.1" }, "files": [ diff --git a/packages/egf/CHANGELOG.md b/packages/egf/CHANGELOG.md index 8b6cea79ed..ccc4a0d70f 100644 --- a/packages/egf/CHANGELOG.md +++ b/packages/egf/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.4.18](https://github.com/thi-ng/umbrella/compare/@thi.ng/egf@0.4.17...@thi.ng/egf@0.4.18) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/egf + + + + + ## [0.4.17](https://github.com/thi-ng/umbrella/compare/@thi.ng/egf@0.4.16...@thi.ng/egf@0.4.17) (2021-08-22) **Note:** Version bump only for package @thi.ng/egf diff --git a/packages/egf/package.json b/packages/egf/package.json index d5c672ee23..4c94a7a45e 100644 --- a/packages/egf/package.json +++ b/packages/egf/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/egf", - "version": "0.4.17", + "version": "0.4.18", "description": "Extensible Graph Format", "module": "./index.js", "main": "./lib/index.js", @@ -36,14 +36,14 @@ "@thi.ng/equiv": "^1.0.45" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/associative": "^5.2.15", - "@thi.ng/checks": "^2.9.10", - "@thi.ng/dot": "^1.2.37", + "@thi.ng/api": "^7.2.0", + "@thi.ng/associative": "^5.2.16", + "@thi.ng/checks": "^2.9.11", + "@thi.ng/dot": "^1.2.38", "@thi.ng/errors": "^1.3.4", "@thi.ng/prefixes": "^1.0.2", - "@thi.ng/strings": "^2.1.6", - "@thi.ng/transducers-binary": "^1.0.4" + "@thi.ng/strings": "^2.1.7", + "@thi.ng/transducers-binary": "^1.0.5" }, "files": [ "*.js", diff --git a/packages/fsm/CHANGELOG.md b/packages/fsm/CHANGELOG.md index 785ca9176a..9d593bded2 100644 --- a/packages/fsm/CHANGELOG.md +++ b/packages/fsm/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.4.63](https://github.com/thi-ng/umbrella/compare/@thi.ng/fsm@2.4.62...@thi.ng/fsm@2.4.63) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/fsm + + + + + # [2.4.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/fsm@2.3.7...@thi.ng/fsm@2.4.0) (2020-03-06) diff --git a/packages/fsm/package.json b/packages/fsm/package.json index 0f10d92084..84caa6a2d9 100644 --- a/packages/fsm/package.json +++ b/packages/fsm/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/fsm", - "version": "2.4.62", + "version": "2.4.63", "description": "Composable primitives for building declarative, transducer based Finite-State Machines & matchers for arbitrary data streams", "module": "./index.js", "main": "./lib/index.js", @@ -38,12 +38,12 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/arrays": "^1.0.2", + "@thi.ng/api": "^7.2.0", + "@thi.ng/arrays": "^1.0.3", "@thi.ng/equiv": "^1.0.45", "@thi.ng/errors": "^1.3.4", - "@thi.ng/strings": "^2.1.6", - "@thi.ng/transducers": "^7.9.1" + "@thi.ng/strings": "^2.1.7", + "@thi.ng/transducers": "^7.9.2" }, "files": [ "*.js", diff --git a/packages/fuzzy-viz/CHANGELOG.md b/packages/fuzzy-viz/CHANGELOG.md index acee93fb33..ecd388c38f 100644 --- a/packages/fuzzy-viz/CHANGELOG.md +++ b/packages/fuzzy-viz/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/fuzzy-viz@1.0.8...@thi.ng/fuzzy-viz@1.0.9) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/fuzzy-viz + + + + + ## [1.0.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/fuzzy-viz@1.0.7...@thi.ng/fuzzy-viz@1.0.8) (2021-08-22) **Note:** Version bump only for package @thi.ng/fuzzy-viz diff --git a/packages/fuzzy-viz/package.json b/packages/fuzzy-viz/package.json index 1e9578ba40..398b2327ab 100644 --- a/packages/fuzzy-viz/package.json +++ b/packages/fuzzy-viz/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/fuzzy-viz", - "version": "1.0.8", + "version": "1.0.9", "description": "Visualization, instrumentation & introspection utils for @thi.ng/fuzzy", "module": "./index.js", "main": "./lib/index.js", @@ -38,13 +38,13 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/fuzzy": "^1.0.3", - "@thi.ng/hiccup": "^3.6.21", - "@thi.ng/hiccup-svg": "^3.8.0", - "@thi.ng/math": "^4.0.5", - "@thi.ng/strings": "^2.1.6", - "@thi.ng/text-canvas": "^1.1.3" + "@thi.ng/api": "^7.2.0", + "@thi.ng/fuzzy": "^1.0.4", + "@thi.ng/hiccup": "^3.6.22", + "@thi.ng/hiccup-svg": "^3.8.1", + "@thi.ng/math": "^4.0.6", + "@thi.ng/strings": "^2.1.7", + "@thi.ng/text-canvas": "^1.1.4" }, "files": [ "*.js", diff --git a/packages/fuzzy/CHANGELOG.md b/packages/fuzzy/CHANGELOG.md index c303ad75b5..0dbffb879c 100644 --- a/packages/fuzzy/CHANGELOG.md +++ b/packages/fuzzy/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/fuzzy@1.0.3...@thi.ng/fuzzy@1.0.4) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/fuzzy + + + + + # 0.1.0 (2020-12-22) diff --git a/packages/fuzzy/package.json b/packages/fuzzy/package.json index 202a432f59..92660f53e4 100644 --- a/packages/fuzzy/package.json +++ b/packages/fuzzy/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/fuzzy", - "version": "1.0.3", + "version": "1.0.4", "description": "Fuzzy logic operators & configurable rule inferencing engine", "module": "./index.js", "main": "./lib/index.js", @@ -38,8 +38,8 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/math": "^4.0.5" + "@thi.ng/api": "^7.2.0", + "@thi.ng/math": "^4.0.6" }, "files": [ "*.js", diff --git a/packages/geom-accel/CHANGELOG.md b/packages/geom-accel/CHANGELOG.md index 6065cba0ab..16bd6ce726 100644 --- a/packages/geom-accel/CHANGELOG.md +++ b/packages/geom-accel/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.1.60](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-accel@2.1.59...@thi.ng/geom-accel@2.1.60) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/geom-accel + + + + + ## [2.1.33](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-accel@2.1.32...@thi.ng/geom-accel@2.1.33) (2021-01-21) diff --git a/packages/geom-accel/package.json b/packages/geom-accel/package.json index 381f563b70..f1fac9f7f6 100644 --- a/packages/geom-accel/package.json +++ b/packages/geom-accel/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-accel", - "version": "2.1.59", + "version": "2.1.60", "description": "n-D spatial indexing data structures with a shared ES6 Map/Set-like API", "module": "./index.js", "main": "./lib/index.js", @@ -39,16 +39,16 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/arrays": "^1.0.2", - "@thi.ng/checks": "^2.9.10", + "@thi.ng/api": "^7.2.0", + "@thi.ng/arrays": "^1.0.3", + "@thi.ng/checks": "^2.9.11", "@thi.ng/equiv": "^1.0.45", - "@thi.ng/geom-api": "^2.0.30", - "@thi.ng/geom-isec": "^1.0.4", - "@thi.ng/heaps": "^1.3.0", - "@thi.ng/math": "^4.0.5", - "@thi.ng/transducers": "^7.9.1", - "@thi.ng/vectors": "^6.1.2" + "@thi.ng/geom-api": "^2.0.31", + "@thi.ng/geom-isec": "^1.0.5", + "@thi.ng/heaps": "^1.3.1", + "@thi.ng/math": "^4.0.6", + "@thi.ng/transducers": "^7.9.2", + "@thi.ng/vectors": "^6.2.0" }, "files": [ "*.js", diff --git a/packages/geom-api/CHANGELOG.md b/packages/geom-api/CHANGELOG.md index a2f7c579c6..7a38d559a2 100644 --- a/packages/geom-api/CHANGELOG.md +++ b/packages/geom-api/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.0.31](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-api@2.0.30...@thi.ng/geom-api@2.0.31) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/geom-api + + + + + # [2.0.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-api@1.1.4...@thi.ng/geom-api@2.0.0) (2020-12-22) diff --git a/packages/geom-api/package.json b/packages/geom-api/package.json index d45303c1ec..101e49918c 100644 --- a/packages/geom-api/package.json +++ b/packages/geom-api/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-api", - "version": "2.0.30", + "version": "2.0.31", "description": "Shared type & interface declarations for @thi.ng/geom packages", "module": "./index.js", "main": "./lib/index.js", @@ -38,8 +38,8 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/vectors": "^6.1.2" + "@thi.ng/api": "^7.2.0", + "@thi.ng/vectors": "^6.2.0" }, "files": [ "*.js", diff --git a/packages/geom-arc/CHANGELOG.md b/packages/geom-arc/CHANGELOG.md index 39b31f8994..50fd8a8afb 100644 --- a/packages/geom-arc/CHANGELOG.md +++ b/packages/geom-arc/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-arc@1.0.4...@thi.ng/geom-arc@1.0.5) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/geom-arc + + + + + # [0.3.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-arc@0.2.32...@thi.ng/geom-arc@0.3.0) (2020-06-20) diff --git a/packages/geom-arc/package.json b/packages/geom-arc/package.json index 7d71270654..19223cef0a 100644 --- a/packages/geom-arc/package.json +++ b/packages/geom-arc/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-arc", - "version": "1.0.4", + "version": "1.0.5", "description": "2D circular / elliptic arc operations", "module": "./index.js", "main": "./lib/index.js", @@ -38,11 +38,11 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/checks": "^2.9.10", - "@thi.ng/geom-api": "^2.0.30", - "@thi.ng/geom-resample": "^1.0.4", - "@thi.ng/math": "^4.0.5", - "@thi.ng/vectors": "^6.1.2" + "@thi.ng/checks": "^2.9.11", + "@thi.ng/geom-api": "^2.0.31", + "@thi.ng/geom-resample": "^1.0.5", + "@thi.ng/math": "^4.0.6", + "@thi.ng/vectors": "^6.2.0" }, "files": [ "*.js", diff --git a/packages/geom-clip-line/CHANGELOG.md b/packages/geom-clip-line/CHANGELOG.md index 737326e153..4763ccc823 100644 --- a/packages/geom-clip-line/CHANGELOG.md +++ b/packages/geom-clip-line/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.2.45](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-clip-line@1.2.44...@thi.ng/geom-clip-line@1.2.45) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/geom-clip-line + + + + + ## [1.2.42](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-clip-line@1.2.41...@thi.ng/geom-clip-line@1.2.42) (2021-08-17) diff --git a/packages/geom-clip-line/package.json b/packages/geom-clip-line/package.json index 9df8d0ced6..59965f0c7c 100644 --- a/packages/geom-clip-line/package.json +++ b/packages/geom-clip-line/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-clip-line", - "version": "1.2.44", + "version": "1.2.45", "description": "2D line clipping (Liang-Barsky)", "module": "./index.js", "main": "./lib/index.js", @@ -38,9 +38,9 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/geom-isec": "^1.0.4", - "@thi.ng/vectors": "^6.1.2" + "@thi.ng/api": "^7.2.0", + "@thi.ng/geom-isec": "^1.0.5", + "@thi.ng/vectors": "^6.2.0" }, "files": [ "*.js", diff --git a/packages/geom-clip-poly/CHANGELOG.md b/packages/geom-clip-poly/CHANGELOG.md index 7776b2fd56..47e4535054 100644 --- a/packages/geom-clip-poly/CHANGELOG.md +++ b/packages/geom-clip-poly/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.70](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-clip-poly@1.0.69...@thi.ng/geom-clip-poly@1.0.70) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/geom-clip-poly + + + + + # 1.0.0 (2020-02-25) diff --git a/packages/geom-clip-poly/package.json b/packages/geom-clip-poly/package.json index 480aa72bb2..3d844e0fad 100644 --- a/packages/geom-clip-poly/package.json +++ b/packages/geom-clip-poly/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-clip-poly", - "version": "1.0.69", + "version": "1.0.70", "description": "2D convex polygon clipping (Sutherland-Hodgeman)", "module": "./index.js", "main": "./lib/index.js", @@ -38,10 +38,10 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/geom-isec": "^1.0.4", - "@thi.ng/geom-poly-utils": "^1.0.4", - "@thi.ng/math": "^4.0.5", - "@thi.ng/vectors": "^6.1.2" + "@thi.ng/geom-isec": "^1.0.5", + "@thi.ng/geom-poly-utils": "^1.0.5", + "@thi.ng/math": "^4.0.6", + "@thi.ng/vectors": "^6.2.0" }, "files": [ "*.js", diff --git a/packages/geom-closest-point/CHANGELOG.md b/packages/geom-closest-point/CHANGELOG.md index c966ef7a46..5058575396 100644 --- a/packages/geom-closest-point/CHANGELOG.md +++ b/packages/geom-closest-point/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-closest-point@1.0.4...@thi.ng/geom-closest-point@1.0.5) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/geom-closest-point + + + + + # [0.5.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-closest-point@0.4.0...@thi.ng/geom-closest-point@0.5.0) (2020-09-22) diff --git a/packages/geom-closest-point/package.json b/packages/geom-closest-point/package.json index fde88bb823..bf91eee98b 100644 --- a/packages/geom-closest-point/package.json +++ b/packages/geom-closest-point/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-closest-point", - "version": "1.0.4", + "version": "1.0.5", "description": "2D / 3D closest point / proximity helpers", "module": "./index.js", "main": "./lib/index.js", @@ -38,9 +38,9 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/math": "^4.0.5", - "@thi.ng/vectors": "^6.1.2" + "@thi.ng/api": "^7.2.0", + "@thi.ng/math": "^4.0.6", + "@thi.ng/vectors": "^6.2.0" }, "files": [ "*.js", diff --git a/packages/geom-fuzz/CHANGELOG.md b/packages/geom-fuzz/CHANGELOG.md index f19539f802..9f91baa127 100644 --- a/packages/geom-fuzz/CHANGELOG.md +++ b/packages/geom-fuzz/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-fuzz@1.0.7...@thi.ng/geom-fuzz@1.0.8) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/geom-fuzz + + + + + ## [1.0.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-fuzz@1.0.6...@thi.ng/geom-fuzz@1.0.7) (2021-08-22) **Note:** Version bump only for package @thi.ng/geom-fuzz diff --git a/packages/geom-fuzz/package.json b/packages/geom-fuzz/package.json index 90ad5416fe..70f01b4c64 100644 --- a/packages/geom-fuzz/package.json +++ b/packages/geom-fuzz/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-fuzz", - "version": "1.0.7", + "version": "1.0.8", "description": "Highly configurable, fuzzy line & polygon creation with presets and composable fill & stroke styles. Canvas & SVG support", "module": "./index.js", "main": "./lib/index.js", @@ -37,16 +37,16 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/associative": "^5.2.15", - "@thi.ng/color": "^3.2.6", - "@thi.ng/geom": "^2.1.28", - "@thi.ng/geom-api": "^2.0.30", - "@thi.ng/geom-clip-line": "^1.2.44", - "@thi.ng/geom-resample": "^1.0.4", - "@thi.ng/grid-iterators": "^1.0.4", - "@thi.ng/transducers": "^7.9.1", - "@thi.ng/vectors": "^6.1.2" + "@thi.ng/api": "^7.2.0", + "@thi.ng/associative": "^5.2.16", + "@thi.ng/color": "^3.2.7", + "@thi.ng/geom": "^2.1.29", + "@thi.ng/geom-api": "^2.0.31", + "@thi.ng/geom-clip-line": "^1.2.45", + "@thi.ng/geom-resample": "^1.0.5", + "@thi.ng/grid-iterators": "^1.0.5", + "@thi.ng/transducers": "^7.9.2", + "@thi.ng/vectors": "^6.2.0" }, "files": [ "*.js", diff --git a/packages/geom-hull/CHANGELOG.md b/packages/geom-hull/CHANGELOG.md index f223e7eebb..1f4837c489 100644 --- a/packages/geom-hull/CHANGELOG.md +++ b/packages/geom-hull/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-hull@1.0.4...@thi.ng/geom-hull@1.0.5) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/geom-hull + + + + + ## [0.0.61](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-hull@0.0.60...@thi.ng/geom-hull@0.0.61) (2020-08-16) **Note:** Version bump only for package @thi.ng/geom-hull diff --git a/packages/geom-hull/package.json b/packages/geom-hull/package.json index 0e1aebec6e..48aa31c254 100644 --- a/packages/geom-hull/package.json +++ b/packages/geom-hull/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-hull", - "version": "1.0.4", + "version": "1.0.5", "description": "Fast 2D convex hull (Graham Scan)", "module": "./index.js", "main": "./lib/index.js", @@ -38,8 +38,8 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/math": "^4.0.5", - "@thi.ng/vectors": "^6.1.2" + "@thi.ng/math": "^4.0.6", + "@thi.ng/vectors": "^6.2.0" }, "files": [ "*.js", diff --git a/packages/geom-io-obj/CHANGELOG.md b/packages/geom-io-obj/CHANGELOG.md index bd1623f335..19635fca25 100644 --- a/packages/geom-io-obj/CHANGELOG.md +++ b/packages/geom-io-obj/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.60](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-io-obj@0.1.59...@thi.ng/geom-io-obj@0.1.60) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/geom-io-obj + + + + + # 0.1.0 (2020-04-20) diff --git a/packages/geom-io-obj/package.json b/packages/geom-io-obj/package.json index ab4d048b53..30cf6fb414 100644 --- a/packages/geom-io-obj/package.json +++ b/packages/geom-io-obj/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-io-obj", - "version": "0.1.59", + "version": "0.1.60", "description": "Wavefront OBJ parser (& exporter soon)", "module": "./index.js", "main": "./lib/index.js", @@ -38,8 +38,8 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/vectors": "^6.1.2" + "@thi.ng/api": "^7.2.0", + "@thi.ng/vectors": "^6.2.0" }, "files": [ "*.js", diff --git a/packages/geom-isec/CHANGELOG.md b/packages/geom-isec/CHANGELOG.md index 25c80ef569..4481b60b46 100644 --- a/packages/geom-isec/CHANGELOG.md +++ b/packages/geom-isec/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-isec@1.0.4...@thi.ng/geom-isec@1.0.5) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/geom-isec + + + + + ## [0.7.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-isec@0.7.3...@thi.ng/geom-isec@0.7.4) (2021-01-02) diff --git a/packages/geom-isec/package.json b/packages/geom-isec/package.json index c9ba3b257b..1927e24f3c 100644 --- a/packages/geom-isec/package.json +++ b/packages/geom-isec/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-isec", - "version": "1.0.4", + "version": "1.0.5", "description": "2D/3D shape intersection checks", "module": "./index.js", "main": "./lib/index.js", @@ -38,11 +38,11 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/geom-api": "^2.0.30", - "@thi.ng/geom-closest-point": "^1.0.4", - "@thi.ng/math": "^4.0.5", - "@thi.ng/vectors": "^6.1.2" + "@thi.ng/api": "^7.2.0", + "@thi.ng/geom-api": "^2.0.31", + "@thi.ng/geom-closest-point": "^1.0.5", + "@thi.ng/math": "^4.0.6", + "@thi.ng/vectors": "^6.2.0" }, "files": [ "*.js", diff --git a/packages/geom-isoline/CHANGELOG.md b/packages/geom-isoline/CHANGELOG.md index 543c13a543..91f86e011b 100644 --- a/packages/geom-isoline/CHANGELOG.md +++ b/packages/geom-isoline/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.1.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-isoline@1.1.3...@thi.ng/geom-isoline@1.1.4) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/geom-isoline + + + + + # [1.1.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-isoline@1.0.1...@thi.ng/geom-isoline@1.1.0) (2021-08-09) diff --git a/packages/geom-isoline/package.json b/packages/geom-isoline/package.json index 4d990c68a3..4f3eea811d 100644 --- a/packages/geom-isoline/package.json +++ b/packages/geom-isoline/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-isoline", - "version": "1.1.3", + "version": "1.1.4", "description": "Fast 2D contour line extraction / generation", "module": "./index.js", "main": "./lib/index.js", @@ -38,9 +38,9 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/transducers": "^7.9.1", - "@thi.ng/vectors": "^6.1.2" + "@thi.ng/api": "^7.2.0", + "@thi.ng/transducers": "^7.9.2", + "@thi.ng/vectors": "^6.2.0" }, "files": [ "*.js", diff --git a/packages/geom-poly-utils/CHANGELOG.md b/packages/geom-poly-utils/CHANGELOG.md index e8a8563739..e4787684ff 100644 --- a/packages/geom-poly-utils/CHANGELOG.md +++ b/packages/geom-poly-utils/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-poly-utils@1.0.4...@thi.ng/geom-poly-utils@1.0.5) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/geom-poly-utils + + + + + # [0.3.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-poly-utils@0.2.2...@thi.ng/geom-poly-utils@0.3.0) (2020-12-22) diff --git a/packages/geom-poly-utils/package.json b/packages/geom-poly-utils/package.json index c1d6a80526..96d7ea6c11 100644 --- a/packages/geom-poly-utils/package.json +++ b/packages/geom-poly-utils/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-poly-utils", - "version": "1.0.4", + "version": "1.0.5", "description": "2D polygon/polyline analysis & processing utilities", "module": "./index.js", "main": "./lib/index.js", @@ -38,11 +38,11 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", + "@thi.ng/api": "^7.2.0", "@thi.ng/errors": "^1.3.4", - "@thi.ng/geom-api": "^2.0.30", - "@thi.ng/math": "^4.0.5", - "@thi.ng/vectors": "^6.1.2" + "@thi.ng/geom-api": "^2.0.31", + "@thi.ng/math": "^4.0.6", + "@thi.ng/vectors": "^6.2.0" }, "files": [ "*.js", diff --git a/packages/geom-resample/CHANGELOG.md b/packages/geom-resample/CHANGELOG.md index 57290c39f8..ce3f9c5bd8 100644 --- a/packages/geom-resample/CHANGELOG.md +++ b/packages/geom-resample/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-resample@1.0.4...@thi.ng/geom-resample@1.0.5) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/geom-resample + + + + + # [0.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-resample@0.1.17...@thi.ng/geom-resample@0.2.0) (2019-07-07) ### Features diff --git a/packages/geom-resample/package.json b/packages/geom-resample/package.json index 4ad7bdd891..2fc0962656 100644 --- a/packages/geom-resample/package.json +++ b/packages/geom-resample/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-resample", - "version": "1.0.4", + "version": "1.0.5", "description": "Customizable nD polyline interpolation, re-sampling, splitting & nearest point computation", "module": "./index.js", "main": "./lib/index.js", @@ -38,11 +38,11 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/checks": "^2.9.10", - "@thi.ng/geom-api": "^2.0.30", - "@thi.ng/geom-closest-point": "^1.0.4", - "@thi.ng/math": "^4.0.5", - "@thi.ng/vectors": "^6.1.2" + "@thi.ng/checks": "^2.9.11", + "@thi.ng/geom-api": "^2.0.31", + "@thi.ng/geom-closest-point": "^1.0.5", + "@thi.ng/math": "^4.0.6", + "@thi.ng/vectors": "^6.2.0" }, "files": [ "*.js", diff --git a/packages/geom-splines/CHANGELOG.md b/packages/geom-splines/CHANGELOG.md index e85463a01f..101991261b 100644 --- a/packages/geom-splines/CHANGELOG.md +++ b/packages/geom-splines/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-splines@1.0.4...@thi.ng/geom-splines@1.0.5) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/geom-splines + + + + + # [0.5.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-splines@0.4.5...@thi.ng/geom-splines@0.5.0) (2020-02-25) diff --git a/packages/geom-splines/package.json b/packages/geom-splines/package.json index 07315b3c7f..7b1a86a4f8 100644 --- a/packages/geom-splines/package.json +++ b/packages/geom-splines/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-splines", - "version": "1.0.4", + "version": "1.0.5", "description": "nD cubic & quadratic curve analysis, conversion, interpolation, splitting", "module": "./index.js", "main": "./lib/index.js", @@ -38,13 +38,13 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/checks": "^2.9.10", - "@thi.ng/geom-api": "^2.0.30", - "@thi.ng/geom-arc": "^1.0.4", - "@thi.ng/geom-resample": "^1.0.4", - "@thi.ng/math": "^4.0.5", - "@thi.ng/vectors": "^6.1.2" + "@thi.ng/api": "^7.2.0", + "@thi.ng/checks": "^2.9.11", + "@thi.ng/geom-api": "^2.0.31", + "@thi.ng/geom-arc": "^1.0.5", + "@thi.ng/geom-resample": "^1.0.5", + "@thi.ng/math": "^4.0.6", + "@thi.ng/vectors": "^6.2.0" }, "files": [ "*.js", diff --git a/packages/geom-subdiv-curve/CHANGELOG.md b/packages/geom-subdiv-curve/CHANGELOG.md index d776894b65..3a3ea3a2f5 100644 --- a/packages/geom-subdiv-curve/CHANGELOG.md +++ b/packages/geom-subdiv-curve/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-subdiv-curve@1.0.4...@thi.ng/geom-subdiv-curve@1.0.5) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/geom-subdiv-curve + + + + + # 0.1.0 (2019-02-05) ### Features diff --git a/packages/geom-subdiv-curve/package.json b/packages/geom-subdiv-curve/package.json index afacc52129..5d98157ac5 100644 --- a/packages/geom-subdiv-curve/package.json +++ b/packages/geom-subdiv-curve/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-subdiv-curve", - "version": "1.0.4", + "version": "1.0.5", "description": "Freely customizable, iterative nD subdivision curves for open / closed geometries", "module": "./index.js", "main": "./lib/index.js", @@ -38,10 +38,10 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/geom-api": "^2.0.30", - "@thi.ng/transducers": "^7.9.1", - "@thi.ng/vectors": "^6.1.2" + "@thi.ng/api": "^7.2.0", + "@thi.ng/geom-api": "^2.0.31", + "@thi.ng/transducers": "^7.9.2", + "@thi.ng/vectors": "^6.2.0" }, "files": [ "*.js", diff --git a/packages/geom-tessellate/CHANGELOG.md b/packages/geom-tessellate/CHANGELOG.md index fbd9865da0..f13bc5affb 100644 --- a/packages/geom-tessellate/CHANGELOG.md +++ b/packages/geom-tessellate/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-tessellate@1.0.4...@thi.ng/geom-tessellate@1.0.5) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/geom-tessellate + + + + + # [0.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-tessellate@0.1.17...@thi.ng/geom-tessellate@0.2.0) (2019-07-07) ### Features diff --git a/packages/geom-tessellate/package.json b/packages/geom-tessellate/package.json index 51db68a298..847af0d336 100644 --- a/packages/geom-tessellate/package.json +++ b/packages/geom-tessellate/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-tessellate", - "version": "1.0.4", + "version": "1.0.5", "description": "2D/3D convex polygon tessellators", "module": "./index.js", "main": "./lib/index.js", @@ -38,12 +38,12 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/checks": "^2.9.10", - "@thi.ng/geom-api": "^2.0.30", - "@thi.ng/geom-isec": "^1.0.4", - "@thi.ng/geom-poly-utils": "^1.0.4", - "@thi.ng/transducers": "^7.9.1", - "@thi.ng/vectors": "^6.1.2" + "@thi.ng/checks": "^2.9.11", + "@thi.ng/geom-api": "^2.0.31", + "@thi.ng/geom-isec": "^1.0.5", + "@thi.ng/geom-poly-utils": "^1.0.5", + "@thi.ng/transducers": "^7.9.2", + "@thi.ng/vectors": "^6.2.0" }, "files": [ "*.js", diff --git a/packages/geom-voronoi/CHANGELOG.md b/packages/geom-voronoi/CHANGELOG.md index 5f0f7d0564..0b52266c42 100644 --- a/packages/geom-voronoi/CHANGELOG.md +++ b/packages/geom-voronoi/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-voronoi@1.0.4...@thi.ng/geom-voronoi@1.0.5) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/geom-voronoi + + + + + ## [0.2.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-voronoi@0.2.1...@thi.ng/geom-voronoi@0.2.2) (2020-07-28) diff --git a/packages/geom-voronoi/package.json b/packages/geom-voronoi/package.json index 475f0f2bf3..062e893e07 100644 --- a/packages/geom-voronoi/package.json +++ b/packages/geom-voronoi/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-voronoi", - "version": "1.0.4", + "version": "1.0.5", "description": "Fast, incremental 2D Delaunay & Voronoi mesh implementation", "module": "./index.js", "main": "./lib/index.js", @@ -38,15 +38,15 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/checks": "^2.9.10", - "@thi.ng/geom-clip-line": "^1.2.44", - "@thi.ng/geom-clip-poly": "^1.0.69", - "@thi.ng/geom-isec": "^1.0.4", - "@thi.ng/geom-poly-utils": "^1.0.4", - "@thi.ng/math": "^4.0.5", + "@thi.ng/api": "^7.2.0", + "@thi.ng/checks": "^2.9.11", + "@thi.ng/geom-clip-line": "^1.2.45", + "@thi.ng/geom-clip-poly": "^1.0.70", + "@thi.ng/geom-isec": "^1.0.5", + "@thi.ng/geom-poly-utils": "^1.0.5", + "@thi.ng/math": "^4.0.6", "@thi.ng/quad-edge": "^1.0.1", - "@thi.ng/vectors": "^6.1.2" + "@thi.ng/vectors": "^6.2.0" }, "files": [ "*.js", diff --git a/packages/geom/CHANGELOG.md b/packages/geom/CHANGELOG.md index 18106ec544..66d89254d1 100644 --- a/packages/geom/CHANGELOG.md +++ b/packages/geom/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.1.29](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom@2.1.28...@thi.ng/geom@2.1.29) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/geom + + + + + ## [2.1.28](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom@2.1.27...@thi.ng/geom@2.1.28) (2021-08-22) **Note:** Version bump only for package @thi.ng/geom diff --git a/packages/geom/package.json b/packages/geom/package.json index 7c115c848c..0fa038e45a 100644 --- a/packages/geom/package.json +++ b/packages/geom/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom", - "version": "2.1.28", + "version": "2.1.29", "description": "Functional, polymorphic API for 2D geometry types & SVG generation", "module": "./index.js", "main": "./lib/index.js", @@ -38,32 +38,32 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/arrays": "^1.0.2", - "@thi.ng/checks": "^2.9.10", - "@thi.ng/defmulti": "^1.3.16", + "@thi.ng/api": "^7.2.0", + "@thi.ng/arrays": "^1.0.3", + "@thi.ng/checks": "^2.9.11", + "@thi.ng/defmulti": "^1.3.17", "@thi.ng/equiv": "^1.0.45", "@thi.ng/errors": "^1.3.4", - "@thi.ng/geom-api": "^2.0.30", - "@thi.ng/geom-arc": "^1.0.4", - "@thi.ng/geom-clip-line": "^1.2.44", - "@thi.ng/geom-clip-poly": "^1.0.69", - "@thi.ng/geom-closest-point": "^1.0.4", - "@thi.ng/geom-hull": "^1.0.4", - "@thi.ng/geom-isec": "^1.0.4", - "@thi.ng/geom-poly-utils": "^1.0.4", - "@thi.ng/geom-resample": "^1.0.4", - "@thi.ng/geom-splines": "^1.0.4", - "@thi.ng/geom-subdiv-curve": "^1.0.4", - "@thi.ng/geom-tessellate": "^1.0.4", - "@thi.ng/hiccup": "^3.6.21", - "@thi.ng/hiccup-svg": "^3.8.0", - "@thi.ng/math": "^4.0.5", - "@thi.ng/matrices": "^1.0.4", - "@thi.ng/random": "^2.4.7", - "@thi.ng/strings": "^2.1.6", - "@thi.ng/transducers": "^7.9.1", - "@thi.ng/vectors": "^6.1.2" + "@thi.ng/geom-api": "^2.0.31", + "@thi.ng/geom-arc": "^1.0.5", + "@thi.ng/geom-clip-line": "^1.2.45", + "@thi.ng/geom-clip-poly": "^1.0.70", + "@thi.ng/geom-closest-point": "^1.0.5", + "@thi.ng/geom-hull": "^1.0.5", + "@thi.ng/geom-isec": "^1.0.5", + "@thi.ng/geom-poly-utils": "^1.0.5", + "@thi.ng/geom-resample": "^1.0.5", + "@thi.ng/geom-splines": "^1.0.5", + "@thi.ng/geom-subdiv-curve": "^1.0.5", + "@thi.ng/geom-tessellate": "^1.0.5", + "@thi.ng/hiccup": "^3.6.22", + "@thi.ng/hiccup-svg": "^3.8.1", + "@thi.ng/math": "^4.0.6", + "@thi.ng/matrices": "^1.0.5", + "@thi.ng/random": "^2.4.8", + "@thi.ng/strings": "^2.1.7", + "@thi.ng/transducers": "^7.9.2", + "@thi.ng/vectors": "^6.2.0" }, "files": [ "*.js", diff --git a/packages/gp/CHANGELOG.md b/packages/gp/CHANGELOG.md index b9dc2f5239..2a0deacfd2 100644 --- a/packages/gp/CHANGELOG.md +++ b/packages/gp/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.2.30](https://github.com/thi-ng/umbrella/compare/@thi.ng/gp@0.2.29...@thi.ng/gp@0.2.30) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/gp + + + + + # [0.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/gp@0.1.35...@thi.ng/gp@0.2.0) (2020-12-22) diff --git a/packages/gp/package.json b/packages/gp/package.json index 1815b2e746..05d72b7c95 100644 --- a/packages/gp/package.json +++ b/packages/gp/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/gp", - "version": "0.2.29", + "version": "0.2.30", "description": "Genetic programming helpers & strategies (tree based & multi-expression programming)", "module": "./index.js", "main": "./lib/index.js", @@ -38,11 +38,11 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/math": "^4.0.5", - "@thi.ng/random": "^2.4.7", - "@thi.ng/transducers": "^7.9.1", - "@thi.ng/zipper": "^1.0.2" + "@thi.ng/api": "^7.2.0", + "@thi.ng/math": "^4.0.6", + "@thi.ng/random": "^2.4.8", + "@thi.ng/transducers": "^7.9.2", + "@thi.ng/zipper": "^1.0.3" }, "files": [ "*.js", diff --git a/packages/grid-iterators/CHANGELOG.md b/packages/grid-iterators/CHANGELOG.md index fef59af6f4..959b313a5e 100644 --- a/packages/grid-iterators/CHANGELOG.md +++ b/packages/grid-iterators/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/grid-iterators@1.0.4...@thi.ng/grid-iterators@1.0.5) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/grid-iterators + + + + + ## [0.4.24](https://github.com/thi-ng/umbrella/compare/@thi.ng/grid-iterators@0.4.23...@thi.ng/grid-iterators@0.4.24) (2021-03-03) diff --git a/packages/grid-iterators/package.json b/packages/grid-iterators/package.json index 81bd784cba..287d1d832a 100644 --- a/packages/grid-iterators/package.json +++ b/packages/grid-iterators/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/grid-iterators", - "version": "1.0.4", + "version": "1.0.5", "description": "2D grid iterators w/ multiple orderings", "module": "./index.js", "main": "./lib/index.js", @@ -39,11 +39,11 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/arrays": "^1.0.2", - "@thi.ng/binary": "^2.2.10", - "@thi.ng/morton": "^2.0.46", - "@thi.ng/random": "^2.4.7", - "@thi.ng/transducers": "^7.9.1" + "@thi.ng/arrays": "^1.0.3", + "@thi.ng/binary": "^2.2.11", + "@thi.ng/morton": "^2.0.47", + "@thi.ng/random": "^2.4.8", + "@thi.ng/transducers": "^7.9.2" }, "files": [ "*.js", diff --git a/packages/hdiff/CHANGELOG.md b/packages/hdiff/CHANGELOG.md index ebe6c94e55..f0408c0460 100644 --- a/packages/hdiff/CHANGELOG.md +++ b/packages/hdiff/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.53](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdiff@0.1.52...@thi.ng/hdiff@0.1.53) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/hdiff + + + + + # 0.1.0 (2020-06-14) diff --git a/packages/hdiff/package.json b/packages/hdiff/package.json index 862508dcf5..e368d4cb5d 100644 --- a/packages/hdiff/package.json +++ b/packages/hdiff/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hdiff", - "version": "0.1.52", + "version": "0.1.53", "description": "String diffing w/ hiccup output for further processing, e.g. with @thi.ng/hdom, @thi.ng/hiccup. Includes CLI util to generate HTML, with theme support and code folding", "module": "./index.js", "main": "./lib/index.js", @@ -40,11 +40,11 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/diff": "^4.0.12", - "@thi.ng/hiccup": "^3.6.21", - "@thi.ng/hiccup-css": "^1.1.72", - "@thi.ng/strings": "^2.1.6" + "@thi.ng/api": "^7.2.0", + "@thi.ng/diff": "^4.0.13", + "@thi.ng/hiccup": "^3.6.22", + "@thi.ng/hiccup-css": "^1.1.73", + "@thi.ng/strings": "^2.1.7" }, "files": [ "*.js", diff --git a/packages/hdom-canvas/CHANGELOG.md b/packages/hdom-canvas/CHANGELOG.md index fa9fb75273..aa3f4fa495 100644 --- a/packages/hdom-canvas/CHANGELOG.md +++ b/packages/hdom-canvas/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.0.60](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-canvas@3.0.59...@thi.ng/hdom-canvas@3.0.60) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/hdom-canvas + + + + + # [3.0.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-canvas@2.4.26...@thi.ng/hdom-canvas@3.0.0) (2020-06-05) diff --git a/packages/hdom-canvas/package.json b/packages/hdom-canvas/package.json index 3c1f328df2..d5640b3034 100644 --- a/packages/hdom-canvas/package.json +++ b/packages/hdom-canvas/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hdom-canvas", - "version": "3.0.59", + "version": "3.0.60", "description": "@thi.ng/hdom component wrapper for declarative canvas scenegraphs", "module": "./index.js", "main": "./lib/index.js", @@ -38,11 +38,11 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/checks": "^2.9.10", - "@thi.ng/diff": "^4.0.12", - "@thi.ng/hdom": "^8.2.31", - "@thi.ng/hiccup-canvas": "^1.2.14" + "@thi.ng/api": "^7.2.0", + "@thi.ng/checks": "^2.9.11", + "@thi.ng/diff": "^4.0.13", + "@thi.ng/hdom": "^8.2.32", + "@thi.ng/hiccup-canvas": "^1.2.15" }, "files": [ "*.js", diff --git a/packages/hdom-components/CHANGELOG.md b/packages/hdom-components/CHANGELOG.md index c0e5e9270f..fac0eb0f46 100644 --- a/packages/hdom-components/CHANGELOG.md +++ b/packages/hdom-components/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.48](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-components@4.0.47...@thi.ng/hdom-components@4.0.48) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/hdom-components + + + + + # [4.0.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-components@3.2.12...@thi.ng/hdom-components@4.0.0) (2020-06-07) diff --git a/packages/hdom-components/package.json b/packages/hdom-components/package.json index ca675cc469..020ae97ab2 100644 --- a/packages/hdom-components/package.json +++ b/packages/hdom-components/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hdom-components", - "version": "4.0.47", + "version": "4.0.48", "description": "Raw, skinnable UI & SVG components for @thi.ng/hdom", "module": "./index.js", "main": "./lib/index.js", @@ -39,11 +39,11 @@ }, "dependencies": { "@thi.ng/adapt-dpi": "^1.0.23", - "@thi.ng/api": "^7.1.9", - "@thi.ng/checks": "^2.9.10", - "@thi.ng/math": "^4.0.5", - "@thi.ng/transducers": "^7.9.1", - "@thi.ng/transducers-stats": "^1.1.73" + "@thi.ng/api": "^7.2.0", + "@thi.ng/checks": "^2.9.11", + "@thi.ng/math": "^4.0.6", + "@thi.ng/transducers": "^7.9.2", + "@thi.ng/transducers-stats": "^1.1.74" }, "files": [ "*.js", diff --git a/packages/hdom-mock/CHANGELOG.md b/packages/hdom-mock/CHANGELOG.md index 1960053efb..092c0ee3ad 100644 --- a/packages/hdom-mock/CHANGELOG.md +++ b/packages/hdom-mock/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.1.64](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-mock@1.1.63...@thi.ng/hdom-mock@1.1.64) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/hdom-mock + + + + + # [1.1.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-mock@1.0.16...@thi.ng/hdom-mock@1.1.0) (2019-07-07) ### Features diff --git a/packages/hdom-mock/package.json b/packages/hdom-mock/package.json index 4f0f7323b0..61a99cffe3 100644 --- a/packages/hdom-mock/package.json +++ b/packages/hdom-mock/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hdom-mock", - "version": "1.1.63", + "version": "1.1.64", "description": "Mock base implementation for @thi.ng/hdom API", "module": "./index.js", "main": "./lib/index.js", @@ -38,9 +38,9 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/checks": "^2.9.10", - "@thi.ng/hdom": "^8.2.31" + "@thi.ng/api": "^7.2.0", + "@thi.ng/checks": "^2.9.11", + "@thi.ng/hdom": "^8.2.32" }, "files": [ "*.js", diff --git a/packages/hdom/CHANGELOG.md b/packages/hdom/CHANGELOG.md index 0d1086e009..812c787d13 100644 --- a/packages/hdom/CHANGELOG.md +++ b/packages/hdom/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [8.2.32](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom@8.2.31...@thi.ng/hdom@8.2.32) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/hdom + + + + + # [8.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom@8.1.0...@thi.ng/hdom@8.2.0) (2020-07-02) diff --git a/packages/hdom/package.json b/packages/hdom/package.json index 604412c189..a4e3de9af6 100644 --- a/packages/hdom/package.json +++ b/packages/hdom/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hdom", - "version": "8.2.31", + "version": "8.2.32", "description": "Lightweight vanilla ES6 UI component trees with customizable branch-local behaviors", "module": "./index.js", "main": "./lib/index.js", @@ -38,15 +38,15 @@ "pub": "yarn build:release && yarn publish --access public" }, "devDependencies": { - "@thi.ng/atom": "^4.1.41" + "@thi.ng/atom": "^4.1.42" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/checks": "^2.9.10", - "@thi.ng/diff": "^4.0.12", + "@thi.ng/api": "^7.2.0", + "@thi.ng/checks": "^2.9.11", + "@thi.ng/diff": "^4.0.13", "@thi.ng/equiv": "^1.0.45", "@thi.ng/errors": "^1.3.4", - "@thi.ng/hiccup": "^3.6.21", + "@thi.ng/hiccup": "^3.6.22", "@thi.ng/prefixes": "^1.0.2" }, "files": [ diff --git a/packages/heaps/CHANGELOG.md b/packages/heaps/CHANGELOG.md index a7ebf33039..c9883b033d 100644 --- a/packages/heaps/CHANGELOG.md +++ b/packages/heaps/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.3.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/heaps@1.3.0...@thi.ng/heaps@1.3.1) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/heaps + + + + + # [1.3.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/heaps@1.2.43...@thi.ng/heaps@1.3.0) (2021-08-17) diff --git a/packages/heaps/package.json b/packages/heaps/package.json index 0cdb2beaed..f39d9262c0 100644 --- a/packages/heaps/package.json +++ b/packages/heaps/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/heaps", - "version": "1.3.0", + "version": "1.3.1", "description": "Various heap implementations for arbitrary values and with customizable ordering", "module": "./index.js", "main": "./lib/index.js", @@ -39,8 +39,8 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/compare": "^1.3.33", + "@thi.ng/api": "^7.2.0", + "@thi.ng/compare": "^1.3.34", "@thi.ng/equiv": "^1.0.45" }, "files": [ diff --git a/packages/hiccup-canvas/CHANGELOG.md b/packages/hiccup-canvas/CHANGELOG.md index 9928854589..4c98468981 100644 --- a/packages/hiccup-canvas/CHANGELOG.md +++ b/packages/hiccup-canvas/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.2.15](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-canvas@1.2.14...@thi.ng/hiccup-canvas@1.2.15) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/hiccup-canvas + + + + + # [1.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-canvas@1.1.34...@thi.ng/hiccup-canvas@1.2.0) (2021-04-03) diff --git a/packages/hiccup-canvas/package.json b/packages/hiccup-canvas/package.json index 97e61fb029..b203839f40 100644 --- a/packages/hiccup-canvas/package.json +++ b/packages/hiccup-canvas/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hiccup-canvas", - "version": "1.2.14", + "version": "1.2.15", "description": "Hiccup shape tree renderer for vanilla Canvas 2D contexts", "module": "./index.js", "main": "./lib/index.js", @@ -40,12 +40,12 @@ "@thi.ng/pixel": "^1.0.0" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/checks": "^2.9.10", - "@thi.ng/color": "^3.2.6", - "@thi.ng/math": "^4.0.5", - "@thi.ng/pixel": "^1.0.4", - "@thi.ng/vectors": "^6.1.2" + "@thi.ng/api": "^7.2.0", + "@thi.ng/checks": "^2.9.11", + "@thi.ng/color": "^3.2.7", + "@thi.ng/math": "^4.0.6", + "@thi.ng/pixel": "^1.0.5", + "@thi.ng/vectors": "^6.2.0" }, "files": [ "*.js", diff --git a/packages/hiccup-carbon-icons/CHANGELOG.md b/packages/hiccup-carbon-icons/CHANGELOG.md index a19ad7cc74..dd99e21f6c 100644 --- a/packages/hiccup-carbon-icons/CHANGELOG.md +++ b/packages/hiccup-carbon-icons/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.0.25](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-carbon-icons@2.0.24...@thi.ng/hiccup-carbon-icons@2.0.25) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/hiccup-carbon-icons + + + + + ## [2.0.11](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-carbon-icons@2.0.10...@thi.ng/hiccup-carbon-icons@2.0.11) (2021-02-20) diff --git a/packages/hiccup-carbon-icons/package.json b/packages/hiccup-carbon-icons/package.json index f04f5d1115..1dbfd7a49e 100644 --- a/packages/hiccup-carbon-icons/package.json +++ b/packages/hiccup-carbon-icons/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hiccup-carbon-icons", - "version": "2.0.24", + "version": "2.0.25", "description": "Full set of IBM's Carbon icons in hiccup format", "module": "./index.js", "main": "./lib/index.js", @@ -40,7 +40,7 @@ "pub": "yarn build:release && yarn publish --access public" }, "devDependencies": { - "@thi.ng/hiccup": "^3.6.21" + "@thi.ng/hiccup": "^3.6.22" }, "files": [ "*.js", diff --git a/packages/hiccup-css/CHANGELOG.md b/packages/hiccup-css/CHANGELOG.md index da135b5162..bd686ae9e5 100644 --- a/packages/hiccup-css/CHANGELOG.md +++ b/packages/hiccup-css/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.1.73](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-css@1.1.72...@thi.ng/hiccup-css@1.1.73) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/hiccup-css + + + + + # [1.1.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-css@1.0.19...@thi.ng/hiccup-css@1.1.0) (2019-07-07) ### Features diff --git a/packages/hiccup-css/package.json b/packages/hiccup-css/package.json index 0ad176260f..61e5f04145 100644 --- a/packages/hiccup-css/package.json +++ b/packages/hiccup-css/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hiccup-css", - "version": "1.1.72", + "version": "1.1.73", "description": "CSS from nested JS data structures", "module": "./index.js", "main": "./lib/index.js", @@ -38,10 +38,10 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/checks": "^2.9.10", + "@thi.ng/api": "^7.2.0", + "@thi.ng/checks": "^2.9.11", "@thi.ng/errors": "^1.3.4", - "@thi.ng/transducers": "^7.9.1" + "@thi.ng/transducers": "^7.9.2" }, "files": [ "*.js", diff --git a/packages/hiccup-html/CHANGELOG.md b/packages/hiccup-html/CHANGELOG.md index 7fe3d8a7c9..0361f8aad9 100644 --- a/packages/hiccup-html/CHANGELOG.md +++ b/packages/hiccup-html/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.1.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-html@1.1.0...@thi.ng/hiccup-html@1.1.1) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/hiccup-html + + + + + # [1.1.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-html@1.0.3...@thi.ng/hiccup-html@1.1.0) (2021-08-17) diff --git a/packages/hiccup-html/package.json b/packages/hiccup-html/package.json index 6263012a59..8c875c24aa 100644 --- a/packages/hiccup-html/package.json +++ b/packages/hiccup-html/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hiccup-html", - "version": "1.1.0", + "version": "1.1.1", "description": "100+ type-checked HTML5 element functions for @thi.ng/hiccup related infrastructure", "module": "./index.js", "main": "./lib/index.js", @@ -37,7 +37,7 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9" + "@thi.ng/api": "^7.2.0" }, "files": [ "*.js", diff --git a/packages/hiccup-markdown/CHANGELOG.md b/packages/hiccup-markdown/CHANGELOG.md index 97ee61850e..ad6edebe3f 100644 --- a/packages/hiccup-markdown/CHANGELOG.md +++ b/packages/hiccup-markdown/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.3.33](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-markdown@1.3.32...@thi.ng/hiccup-markdown@1.3.33) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/hiccup-markdown + + + + + # [1.3.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-markdown@1.2.44...@thi.ng/hiccup-markdown@1.3.0) (2021-01-22) diff --git a/packages/hiccup-markdown/package.json b/packages/hiccup-markdown/package.json index 83534d5f77..3dc4f03144 100644 --- a/packages/hiccup-markdown/package.json +++ b/packages/hiccup-markdown/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hiccup-markdown", - "version": "1.3.32", + "version": "1.3.33", "description": "Markdown parser & serializer from/to Hiccup format", "module": "./index.js", "main": "./lib/index.js", @@ -38,16 +38,16 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/arrays": "^1.0.2", - "@thi.ng/checks": "^2.9.10", - "@thi.ng/defmulti": "^1.3.16", + "@thi.ng/api": "^7.2.0", + "@thi.ng/arrays": "^1.0.3", + "@thi.ng/checks": "^2.9.11", + "@thi.ng/defmulti": "^1.3.17", "@thi.ng/errors": "^1.3.4", - "@thi.ng/fsm": "^2.4.62", - "@thi.ng/hiccup": "^3.6.21", - "@thi.ng/strings": "^2.1.6", - "@thi.ng/text-canvas": "^1.1.3", - "@thi.ng/transducers": "^7.9.1" + "@thi.ng/fsm": "^2.4.63", + "@thi.ng/hiccup": "^3.6.22", + "@thi.ng/strings": "^2.1.7", + "@thi.ng/text-canvas": "^1.1.4", + "@thi.ng/transducers": "^7.9.2" }, "files": [ "*.js", diff --git a/packages/hiccup-svg/CHANGELOG.md b/packages/hiccup-svg/CHANGELOG.md index 53472864b0..09e44c0581 100644 --- a/packages/hiccup-svg/CHANGELOG.md +++ b/packages/hiccup-svg/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.8.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-svg@3.8.0...@thi.ng/hiccup-svg@3.8.1) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/hiccup-svg + + + + + # [3.8.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-svg@3.7.33...@thi.ng/hiccup-svg@3.8.0) (2021-08-22) diff --git a/packages/hiccup-svg/package.json b/packages/hiccup-svg/package.json index 0c2abec207..87899ca0ea 100644 --- a/packages/hiccup-svg/package.json +++ b/packages/hiccup-svg/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hiccup-svg", - "version": "3.8.0", + "version": "3.8.1", "description": "SVG element functions for @thi.ng/hiccup & @thi.ng/hdom", "module": "./index.js", "main": "./lib/index.js", @@ -38,8 +38,8 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/checks": "^2.9.10", - "@thi.ng/color": "^3.2.6", + "@thi.ng/checks": "^2.9.11", + "@thi.ng/color": "^3.2.7", "@thi.ng/prefixes": "^1.0.2" }, "files": [ diff --git a/packages/hiccup/CHANGELOG.md b/packages/hiccup/CHANGELOG.md index 79337e8fde..d5849bc04c 100644 --- a/packages/hiccup/CHANGELOG.md +++ b/packages/hiccup/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.6.22](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup@3.6.21...@thi.ng/hiccup@3.6.22) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/hiccup + + + + + # [3.6.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup@3.5.8...@thi.ng/hiccup@3.6.0) (2020-09-13) diff --git a/packages/hiccup/package.json b/packages/hiccup/package.json index 2a40d59674..01cf9a2d4b 100644 --- a/packages/hiccup/package.json +++ b/packages/hiccup/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hiccup", - "version": "3.6.21", + "version": "3.6.22", "description": "HTML/SVG/XML serialization of nested data structures, iterables & closures", "module": "./index.js", "main": "./lib/index.js", @@ -38,11 +38,11 @@ "pub": "yarn build:release && yarn publish --access public" }, "devDependencies": { - "@thi.ng/atom": "^4.1.41" + "@thi.ng/atom": "^4.1.42" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/checks": "^2.9.10", + "@thi.ng/api": "^7.2.0", + "@thi.ng/checks": "^2.9.11", "@thi.ng/errors": "^1.3.4" }, "files": [ diff --git a/packages/idgen/CHANGELOG.md b/packages/idgen/CHANGELOG.md index 540a484c91..f4b42dd78d 100644 --- a/packages/idgen/CHANGELOG.md +++ b/packages/idgen/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/idgen@1.0.4...@thi.ng/idgen@1.0.5) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/idgen + + + + + ## [0.2.29](https://github.com/thi-ng/umbrella/compare/@thi.ng/idgen@0.2.28...@thi.ng/idgen@0.2.29) (2021-01-02) diff --git a/packages/idgen/package.json b/packages/idgen/package.json index 367d1884f3..69fa50ebb0 100644 --- a/packages/idgen/package.json +++ b/packages/idgen/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/idgen", - "version": "1.0.4", + "version": "1.0.5", "description": "Generator of opaque numeric identifiers with optional support for ID versioning and efficient re-use", "module": "./index.js", "main": "./lib/index.js", @@ -38,7 +38,7 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", + "@thi.ng/api": "^7.2.0", "tslib": "^2.3.1" }, "files": [ diff --git a/packages/iges/CHANGELOG.md b/packages/iges/CHANGELOG.md index e8c3a801bb..6c49c592b8 100644 --- a/packages/iges/CHANGELOG.md +++ b/packages/iges/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.1.87](https://github.com/thi-ng/umbrella/compare/@thi.ng/iges@1.1.86...@thi.ng/iges@1.1.87) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/iges + + + + + # [1.1.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/iges@1.0.15...@thi.ng/iges@1.1.0) (2019-04-15) ### Features diff --git a/packages/iges/package.json b/packages/iges/package.json index 6abcf3174b..aae60b07a6 100644 --- a/packages/iges/package.json +++ b/packages/iges/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/iges", - "version": "1.1.86", + "version": "1.1.87", "description": "IGES 5.3 serializer for (currently only) polygonal geometry, both open & closed", "module": "./index.js", "main": "./lib/index.js", @@ -38,12 +38,12 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/checks": "^2.9.10", - "@thi.ng/defmulti": "^1.3.16", - "@thi.ng/strings": "^2.1.6", - "@thi.ng/transducers": "^7.9.1", - "@thi.ng/vectors": "^6.1.2" + "@thi.ng/api": "^7.2.0", + "@thi.ng/checks": "^2.9.11", + "@thi.ng/defmulti": "^1.3.17", + "@thi.ng/strings": "^2.1.7", + "@thi.ng/transducers": "^7.9.2", + "@thi.ng/vectors": "^6.2.0" }, "files": [ "*.js", diff --git a/packages/imgui/CHANGELOG.md b/packages/imgui/CHANGELOG.md index f541ef49b0..7bab72da10 100644 --- a/packages/imgui/CHANGELOG.md +++ b/packages/imgui/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/imgui@1.0.6...@thi.ng/imgui@1.0.7) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/imgui + + + + + ## [1.0.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/imgui@1.0.5...@thi.ng/imgui@1.0.6) (2021-08-22) **Note:** Version bump only for package @thi.ng/imgui diff --git a/packages/imgui/package.json b/packages/imgui/package.json index 5bb120708f..cacee28e0d 100644 --- a/packages/imgui/package.json +++ b/packages/imgui/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/imgui", - "version": "1.0.6", + "version": "1.0.7", "description": "Immediate mode GUI with flexible state handling & data only shape output", "module": "./index.js", "main": "./lib/index.js", @@ -38,16 +38,16 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/checks": "^2.9.10", - "@thi.ng/geom": "^2.1.28", - "@thi.ng/geom-api": "^2.0.30", - "@thi.ng/geom-isec": "^1.0.4", - "@thi.ng/geom-tessellate": "^1.0.4", - "@thi.ng/layout": "^1.0.1", - "@thi.ng/math": "^4.0.5", - "@thi.ng/transducers": "^7.9.1", - "@thi.ng/vectors": "^6.1.2" + "@thi.ng/api": "^7.2.0", + "@thi.ng/checks": "^2.9.11", + "@thi.ng/geom": "^2.1.29", + "@thi.ng/geom-api": "^2.0.31", + "@thi.ng/geom-isec": "^1.0.5", + "@thi.ng/geom-tessellate": "^1.0.5", + "@thi.ng/layout": "^1.0.2", + "@thi.ng/math": "^4.0.6", + "@thi.ng/transducers": "^7.9.2", + "@thi.ng/vectors": "^6.2.0" }, "files": [ "*.js", diff --git a/packages/interceptors/CHANGELOG.md b/packages/interceptors/CHANGELOG.md index f127eeef0f..b261b3529d 100644 --- a/packages/interceptors/CHANGELOG.md +++ b/packages/interceptors/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.2.53](https://github.com/thi-ng/umbrella/compare/@thi.ng/interceptors@2.2.52...@thi.ng/interceptors@2.2.53) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/interceptors + + + + + # [2.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/interceptors@2.1.3...@thi.ng/interceptors@2.2.0) (2019-08-21) ### Features diff --git a/packages/interceptors/package.json b/packages/interceptors/package.json index a530036bf1..fe5b8acb85 100644 --- a/packages/interceptors/package.json +++ b/packages/interceptors/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/interceptors", - "version": "2.2.52", + "version": "2.2.53", "description": "Interceptor based event bus, side effect & immutable state handling", "module": "./index.js", "main": "./lib/index.js", @@ -38,11 +38,11 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/atom": "^4.1.41", - "@thi.ng/checks": "^2.9.10", + "@thi.ng/api": "^7.2.0", + "@thi.ng/atom": "^4.1.42", + "@thi.ng/checks": "^2.9.11", "@thi.ng/errors": "^1.3.4", - "@thi.ng/paths": "^4.2.13" + "@thi.ng/paths": "^4.2.14" }, "files": [ "*.js", diff --git a/packages/intervals/CHANGELOG.md b/packages/intervals/CHANGELOG.md index b072d73380..dc0a5804b2 100644 --- a/packages/intervals/CHANGELOG.md +++ b/packages/intervals/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.0.13](https://github.com/thi-ng/umbrella/compare/@thi.ng/intervals@3.0.12...@thi.ng/intervals@3.0.13) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/intervals + + + + + # [3.0.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/intervals@2.1.5...@thi.ng/intervals@3.0.0) (2021-02-20) diff --git a/packages/intervals/package.json b/packages/intervals/package.json index 38a9ce15d9..5b1c61b083 100644 --- a/packages/intervals/package.json +++ b/packages/intervals/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/intervals", - "version": "3.0.12", + "version": "3.0.13", "description": "Closed/open/semi-open interval data type, queries & operations", "module": "./index.js", "main": "./lib/index.js", @@ -38,9 +38,9 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/checks": "^2.9.10", - "@thi.ng/dlogic": "^1.0.48", + "@thi.ng/api": "^7.2.0", + "@thi.ng/checks": "^2.9.11", + "@thi.ng/dlogic": "^1.0.49", "@thi.ng/errors": "^1.3.4" }, "files": [ diff --git a/packages/iterators/CHANGELOG.md b/packages/iterators/CHANGELOG.md index 5f13fc94f7..ad99e66ed9 100644 --- a/packages/iterators/CHANGELOG.md +++ b/packages/iterators/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.1.74](https://github.com/thi-ng/umbrella/compare/@thi.ng/iterators@5.1.73...@thi.ng/iterators@5.1.74) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/iterators + + + + + # [5.1.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/iterators@5.0.19...@thi.ng/iterators@5.1.0) (2019-07-07) ### Bug Fixes diff --git a/packages/iterators/package.json b/packages/iterators/package.json index 99322c61e0..0587188c6a 100644 --- a/packages/iterators/package.json +++ b/packages/iterators/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/iterators", - "version": "5.1.73", + "version": "5.1.74", "description": "Clojure inspired, composable ES6 iterators & generators", "module": "./index.js", "main": "./lib/index.js", @@ -38,8 +38,8 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/dcons": "^2.3.33", + "@thi.ng/api": "^7.2.0", + "@thi.ng/dcons": "^2.3.34", "@thi.ng/errors": "^1.3.4" }, "files": [ diff --git a/packages/k-means/CHANGELOG.md b/packages/k-means/CHANGELOG.md index 085b4835f9..36ca0f1ca9 100644 --- a/packages/k-means/CHANGELOG.md +++ b/packages/k-means/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.3.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/k-means@0.3.5...@thi.ng/k-means@0.3.6) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/k-means + + + + + # [0.3.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/k-means@0.2.5...@thi.ng/k-means@0.3.0) (2021-08-04) diff --git a/packages/k-means/package.json b/packages/k-means/package.json index 06c35fdfad..94c488e60d 100644 --- a/packages/k-means/package.json +++ b/packages/k-means/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/k-means", - "version": "0.3.5", + "version": "0.3.6", "description": "Configurable k-means & k-medians (with k-means++ initialization) for n-D vectors", "module": "./index.js", "main": "./lib/index.js", @@ -38,10 +38,10 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/distance": "^1.0.6", - "@thi.ng/random": "^2.4.7", - "@thi.ng/vectors": "^6.1.2" + "@thi.ng/api": "^7.2.0", + "@thi.ng/distance": "^1.0.7", + "@thi.ng/random": "^2.4.8", + "@thi.ng/vectors": "^6.2.0" }, "files": [ "*.js", diff --git a/packages/ksuid/CHANGELOG.md b/packages/ksuid/CHANGELOG.md index 560e29a924..f0caa3cf2a 100644 --- a/packages/ksuid/CHANGELOG.md +++ b/packages/ksuid/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/ksuid@1.0.5...@thi.ng/ksuid@1.0.6) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/ksuid + + + + + ## [1.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/ksuid@1.0.4...@thi.ng/ksuid@1.0.5) (2021-08-24) **Note:** Version bump only for package @thi.ng/ksuid diff --git a/packages/ksuid/package.json b/packages/ksuid/package.json index 359fa0e9cc..7ca54fc077 100644 --- a/packages/ksuid/package.json +++ b/packages/ksuid/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/ksuid", - "version": "1.0.5", + "version": "1.0.6", "description": "Configurable K-sortable unique IDs, ULIDs, binary & base-N encoded, 32/48/64bit time resolutions", "module": "./index.js", "main": "./lib/index.js", @@ -39,10 +39,10 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", + "@thi.ng/api": "^7.2.0", "@thi.ng/base-n": "^1.0.5", - "@thi.ng/random": "^2.4.7", - "@thi.ng/strings": "^2.1.6" + "@thi.ng/random": "^2.4.8", + "@thi.ng/strings": "^2.1.7" }, "files": [ "*.js", diff --git a/packages/layout/CHANGELOG.md b/packages/layout/CHANGELOG.md index 2f4f24c514..01ea8c89ef 100644 --- a/packages/layout/CHANGELOG.md +++ b/packages/layout/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/layout@1.0.1...@thi.ng/layout@1.0.2) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/layout + + + + + # 0.1.0 (2020-02-25) diff --git a/packages/layout/package.json b/packages/layout/package.json index 654d95c5a1..01a63f1615 100644 --- a/packages/layout/package.json +++ b/packages/layout/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/layout", - "version": "1.0.1", + "version": "1.0.2", "description": "Configurable nested 2D grid layout manager", "module": "./index.js", "main": "./lib/index.js", @@ -38,7 +38,7 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/checks": "^2.9.10" + "@thi.ng/checks": "^2.9.11" }, "files": [ "*.js", diff --git a/packages/leb128/CHANGELOG.md b/packages/leb128/CHANGELOG.md index c74e4a3e16..090f33b0a9 100644 --- a/packages/leb128/CHANGELOG.md +++ b/packages/leb128/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.69](https://github.com/thi-ng/umbrella/compare/@thi.ng/leb128@1.0.68...@thi.ng/leb128@1.0.69) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/leb128 + + + + + ## [1.0.68](https://github.com/thi-ng/umbrella/compare/@thi.ng/leb128@1.0.67...@thi.ng/leb128@1.0.68) (2021-08-24) **Note:** Version bump only for package @thi.ng/leb128 diff --git a/packages/leb128/package.json b/packages/leb128/package.json index fedf535188..1a8a99b757 100644 --- a/packages/leb128/package.json +++ b/packages/leb128/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/leb128", - "version": "1.0.68", + "version": "1.0.69", "description": "WASM based LEB128 encoder / decoder (signed & unsigned)", "module": "./index.js", "main": "./lib/index.js", @@ -39,9 +39,9 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/checks": "^2.9.10", + "@thi.ng/checks": "^2.9.11", "@thi.ng/errors": "^1.3.4", - "@thi.ng/transducers-binary": "^1.0.4" + "@thi.ng/transducers-binary": "^1.0.5" }, "files": [ "*.js", diff --git a/packages/lowdisc/CHANGELOG.md b/packages/lowdisc/CHANGELOG.md index fcff35b381..b89e826205 100644 --- a/packages/lowdisc/CHANGELOG.md +++ b/packages/lowdisc/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/lowdisc@0.1.6...@thi.ng/lowdisc@0.1.7) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/lowdisc + + + + + # 0.1.0 (2021-04-19) diff --git a/packages/lowdisc/package.json b/packages/lowdisc/package.json index 30cadd0db7..ec0f5025bb 100644 --- a/packages/lowdisc/package.json +++ b/packages/lowdisc/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/lowdisc", - "version": "0.1.6", + "version": "0.1.7", "description": "n-dimensional low-discrepancy sequence generators/iterators", "module": "./index.js", "main": "./lib/index.js", @@ -38,7 +38,7 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9" + "@thi.ng/api": "^7.2.0" }, "files": [ "*.js", diff --git a/packages/lsys/CHANGELOG.md b/packages/lsys/CHANGELOG.md index 24fc99ee9b..90601d8891 100644 --- a/packages/lsys/CHANGELOG.md +++ b/packages/lsys/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/lsys@1.0.4...@thi.ng/lsys@1.0.5) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/lsys + + + + + # [0.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/lsys@0.1.0...@thi.ng/lsys@0.2.0) (2019-02-26) ### Features diff --git a/packages/lsys/package.json b/packages/lsys/package.json index 9ae75f5d2c..c448784b85 100644 --- a/packages/lsys/package.json +++ b/packages/lsys/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/lsys", - "version": "1.0.4", + "version": "1.0.5", "description": "Functional, extensible L-System architecture w/ support for probabilistic rules", "module": "./index.js", "main": "./lib/index.js", @@ -38,13 +38,13 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/compose": "^1.4.35", + "@thi.ng/api": "^7.2.0", + "@thi.ng/compose": "^1.4.36", "@thi.ng/errors": "^1.3.4", - "@thi.ng/math": "^4.0.5", - "@thi.ng/random": "^2.4.7", - "@thi.ng/transducers": "^7.9.1", - "@thi.ng/vectors": "^6.1.2" + "@thi.ng/math": "^4.0.6", + "@thi.ng/random": "^2.4.8", + "@thi.ng/transducers": "^7.9.2", + "@thi.ng/vectors": "^6.2.0" }, "files": [ "*.js", diff --git a/packages/malloc/CHANGELOG.md b/packages/malloc/CHANGELOG.md index f16871f846..1ac27eeaf7 100644 --- a/packages/malloc/CHANGELOG.md +++ b/packages/malloc/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.14](https://github.com/thi-ng/umbrella/compare/@thi.ng/malloc@5.0.13...@thi.ng/malloc@5.0.14) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/malloc + + + + + # [5.0.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/malloc@4.2.6...@thi.ng/malloc@5.0.0) (2021-02-20) diff --git a/packages/malloc/package.json b/packages/malloc/package.json index 9f86bf2e97..1d3aab6c2d 100644 --- a/packages/malloc/package.json +++ b/packages/malloc/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/malloc", - "version": "5.0.13", + "version": "5.0.14", "description": "ArrayBuffer based malloc() impl for hybrid JS/WASM use cases, based on thi.ng/tinyalloc", "module": "./index.js", "main": "./lib/index.js", @@ -38,9 +38,9 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/binary": "^2.2.10", - "@thi.ng/checks": "^2.9.10", + "@thi.ng/api": "^7.2.0", + "@thi.ng/binary": "^2.2.11", + "@thi.ng/checks": "^2.9.11", "@thi.ng/errors": "^1.3.4" }, "files": [ diff --git a/packages/markdown-table/CHANGELOG.md b/packages/markdown-table/CHANGELOG.md index 491f038e54..d4a03b706e 100644 --- a/packages/markdown-table/CHANGELOG.md +++ b/packages/markdown-table/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/markdown-table@0.1.0...@thi.ng/markdown-table@0.1.1) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/markdown-table + + + + + # 0.1.0 (2021-08-24) diff --git a/packages/markdown-table/package.json b/packages/markdown-table/package.json index b0ce3aa813..8f7f2e98b8 100644 --- a/packages/markdown-table/package.json +++ b/packages/markdown-table/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/markdown-table", - "version": "0.1.0", + "version": "0.1.1", "description": "Markdown table formatter/generator with support for column alignments", "module": "./index.js", "main": "./lib/index.js", @@ -38,10 +38,10 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/compose": "^1.4.35", - "@thi.ng/strings": "^2.1.6", - "@thi.ng/transducers": "^7.9.1" + "@thi.ng/api": "^7.2.0", + "@thi.ng/compose": "^1.4.36", + "@thi.ng/strings": "^2.1.7", + "@thi.ng/transducers": "^7.9.2" }, "files": [ "*.js", diff --git a/packages/math/CHANGELOG.md b/packages/math/CHANGELOG.md index a707f80202..ff90beff28 100644 --- a/packages/math/CHANGELOG.md +++ b/packages/math/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/math@4.0.5...@thi.ng/math@4.0.6) (2021-09-03) + + +### Bug Fixes + +* **math:** removing deprecated eqDeltaFixed() ([1de245b](https://github.com/thi-ng/umbrella/commit/1de245bff0d2c1d9436e39240ecd648cef744488)) + + + + + # [4.0.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/math@3.4.0...@thi.ng/math@4.0.0) (2021-04-24) diff --git a/packages/math/package.json b/packages/math/package.json index 56b8176382..673a2ab5e4 100644 --- a/packages/math/package.json +++ b/packages/math/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/math", - "version": "4.0.5", + "version": "4.0.6", "description": "Assorted common math functions & utilities", "module": "./index.js", "main": "./lib/index.js", @@ -38,7 +38,7 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9" + "@thi.ng/api": "^7.2.0" }, "files": [ "*.js", diff --git a/packages/matrices/CHANGELOG.md b/packages/matrices/CHANGELOG.md index baaa3f2b6d..3e4859f156 100644 --- a/packages/matrices/CHANGELOG.md +++ b/packages/matrices/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/matrices@1.0.4...@thi.ng/matrices@1.0.5) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/matrices + + + + + # [0.6.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/matrices@0.5.12...@thi.ng/matrices@0.6.0) (2020-02-25) diff --git a/packages/matrices/package.json b/packages/matrices/package.json index 59916f02ee..7679902b0e 100644 --- a/packages/matrices/package.json +++ b/packages/matrices/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/matrices", - "version": "1.0.4", + "version": "1.0.5", "description": "Matrix & quaternion operations for 2D/3D geometry processing", "module": "./index.js", "main": "./lib/index.js", @@ -38,10 +38,10 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/checks": "^2.9.10", - "@thi.ng/math": "^4.0.5", - "@thi.ng/vectors": "^6.1.2" + "@thi.ng/api": "^7.2.0", + "@thi.ng/checks": "^2.9.11", + "@thi.ng/math": "^4.0.6", + "@thi.ng/vectors": "^6.2.0" }, "files": [ "*.js", diff --git a/packages/memoize/CHANGELOG.md b/packages/memoize/CHANGELOG.md index 470e4b086a..18c68121cd 100644 --- a/packages/memoize/CHANGELOG.md +++ b/packages/memoize/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.1.21](https://github.com/thi-ng/umbrella/compare/@thi.ng/memoize@2.1.20...@thi.ng/memoize@2.1.21) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/memoize + + + + + # [2.1.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/memoize@2.0.19...@thi.ng/memoize@2.1.0) (2020-08-20) diff --git a/packages/memoize/package.json b/packages/memoize/package.json index ae62924a12..7a64694ff5 100644 --- a/packages/memoize/package.json +++ b/packages/memoize/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/memoize", - "version": "2.1.20", + "version": "2.1.21", "description": "Function memoization with configurable caching", "module": "./index.js", "main": "./lib/index.js", @@ -38,7 +38,7 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9" + "@thi.ng/api": "^7.2.0" }, "files": [ "*.js", diff --git a/packages/mime/CHANGELOG.md b/packages/mime/CHANGELOG.md index 4c58a96513..a2e62f5dd3 100644 --- a/packages/mime/CHANGELOG.md +++ b/packages/mime/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/mime@1.0.4...@thi.ng/mime@1.0.5) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/mime + + + + + ## [0.5.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/mime@0.5.0...@thi.ng/mime@0.5.1) (2021-04-10) diff --git a/packages/mime/package.json b/packages/mime/package.json index a36dbbfc28..77fc74ec20 100644 --- a/packages/mime/package.json +++ b/packages/mime/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/mime", - "version": "1.0.4", + "version": "1.0.5", "description": "650+ file extension to MIME type mappings, based on mime-db", "module": "./index.js", "main": "./lib/index.js", @@ -39,7 +39,7 @@ "tool:convert": "ts-node -P tools/tsconfig.json tools/convert.ts" }, "dependencies": { - "@thi.ng/api": "^7.1.9" + "@thi.ng/api": "^7.2.0" }, "files": [ "*.js", diff --git a/packages/morton/CHANGELOG.md b/packages/morton/CHANGELOG.md index 55b8b27857..d46061377b 100644 --- a/packages/morton/CHANGELOG.md +++ b/packages/morton/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.0.47](https://github.com/thi-ng/umbrella/compare/@thi.ng/morton@2.0.46...@thi.ng/morton@2.0.47) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/morton + + + + + ## [2.0.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/morton@2.0.8...@thi.ng/morton@2.0.9) (2020-04-11) diff --git a/packages/morton/package.json b/packages/morton/package.json index be3a66ac0b..5c03808129 100644 --- a/packages/morton/package.json +++ b/packages/morton/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/morton", - "version": "2.0.46", + "version": "2.0.47", "description": "Z-order curve / Morton encoding, decoding & range extraction for arbitrary dimensions", "module": "./index.js", "main": "./lib/index.js", @@ -38,9 +38,9 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/binary": "^2.2.10", - "@thi.ng/math": "^4.0.5" + "@thi.ng/api": "^7.2.0", + "@thi.ng/binary": "^2.2.11", + "@thi.ng/math": "^4.0.6" }, "files": [ "*.js", diff --git a/packages/oquery/CHANGELOG.md b/packages/oquery/CHANGELOG.md index 3e306eb8da..6966ec1aed 100644 --- a/packages/oquery/CHANGELOG.md +++ b/packages/oquery/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/oquery@1.0.4...@thi.ng/oquery@1.0.5) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/oquery + + + + + # [0.3.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/oquery@0.2.11...@thi.ng/oquery@0.3.0) (2021-03-22) diff --git a/packages/oquery/package.json b/packages/oquery/package.json index a81f99d0f3..a26bb47e78 100644 --- a/packages/oquery/package.json +++ b/packages/oquery/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/oquery", - "version": "1.0.4", + "version": "1.0.5", "description": "Datalog-inspired, optimized pattern/predicate query engine for JS objects & arrays", "module": "./index.js", "main": "./lib/index.js", @@ -37,9 +37,9 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/checks": "^2.9.10", - "@thi.ng/defmulti": "^1.3.16", + "@thi.ng/api": "^7.2.0", + "@thi.ng/checks": "^2.9.11", + "@thi.ng/defmulti": "^1.3.17", "@thi.ng/equiv": "^1.0.45" }, "files": [ diff --git a/packages/parse/CHANGELOG.md b/packages/parse/CHANGELOG.md index c9224d39f0..ff2a695049 100644 --- a/packages/parse/CHANGELOG.md +++ b/packages/parse/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/parse@1.0.4...@thi.ng/parse@1.0.5) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/parse + + + + + # [0.9.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/parse@0.8.2...@thi.ng/parse@0.9.0) (2020-08-17) diff --git a/packages/parse/package.json b/packages/parse/package.json index 7a7675b11d..50dd29d0eb 100644 --- a/packages/parse/package.json +++ b/packages/parse/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/parse", - "version": "1.0.4", + "version": "1.0.5", "description": "Purely functional parser combinators & AST generation for generic inputs", "module": "./index.js", "main": "./lib/index.js", @@ -38,11 +38,11 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/checks": "^2.9.10", - "@thi.ng/defmulti": "^1.3.16", + "@thi.ng/api": "^7.2.0", + "@thi.ng/checks": "^2.9.11", + "@thi.ng/defmulti": "^1.3.17", "@thi.ng/errors": "^1.3.4", - "@thi.ng/strings": "^2.1.6" + "@thi.ng/strings": "^2.1.7" }, "files": [ "*.js", diff --git a/packages/paths/CHANGELOG.md b/packages/paths/CHANGELOG.md index 8781b499e2..2540d3790f 100644 --- a/packages/paths/CHANGELOG.md +++ b/packages/paths/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.14](https://github.com/thi-ng/umbrella/compare/@thi.ng/paths@4.2.13...@thi.ng/paths@4.2.14) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/paths + + + + + # [4.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/paths@4.1.13...@thi.ng/paths@4.2.0) (2021-02-20) diff --git a/packages/paths/package.json b/packages/paths/package.json index ce90fc50f1..8a204e05f9 100644 --- a/packages/paths/package.json +++ b/packages/paths/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/paths", - "version": "4.2.13", + "version": "4.2.14", "description": "Immutable, optimized and optionally typed path-based object property / array accessors with structural sharing", "module": "./index.js", "main": "./lib/index.js", @@ -38,8 +38,8 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/checks": "^2.9.10", + "@thi.ng/api": "^7.2.0", + "@thi.ng/checks": "^2.9.11", "@thi.ng/errors": "^1.3.4" }, "files": [ diff --git a/packages/pixel-io-netpbm/CHANGELOG.md b/packages/pixel-io-netpbm/CHANGELOG.md index 64edd0c8af..51717999ce 100644 --- a/packages/pixel-io-netpbm/CHANGELOG.md +++ b/packages/pixel-io-netpbm/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/pixel-io-netpbm@1.0.6...@thi.ng/pixel-io-netpbm@1.0.7) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/pixel-io-netpbm + + + + + # 0.1.0 (2021-02-20) diff --git a/packages/pixel-io-netpbm/package.json b/packages/pixel-io-netpbm/package.json index 6f37ec7338..25f28e7d05 100644 --- a/packages/pixel-io-netpbm/package.json +++ b/packages/pixel-io-netpbm/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/pixel-io-netpbm", - "version": "1.0.6", + "version": "1.0.7", "description": "Multi-format NetPBM reader & writer support for @thi.ng/pixel", "module": "./index.js", "main": "./lib/index.js", @@ -38,9 +38,9 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", + "@thi.ng/api": "^7.2.0", "@thi.ng/errors": "^1.3.4", - "@thi.ng/pixel": "^1.0.4" + "@thi.ng/pixel": "^1.0.5" }, "files": [ "*.js", diff --git a/packages/pixel/CHANGELOG.md b/packages/pixel/CHANGELOG.md index a9d0957dcc..e1c0ecbdad 100644 --- a/packages/pixel/CHANGELOG.md +++ b/packages/pixel/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/pixel@1.0.4...@thi.ng/pixel@1.0.5) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/pixel + + + + + # [0.11.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/pixel@0.10.5...@thi.ng/pixel@0.11.0) (2021-08-04) diff --git a/packages/pixel/package.json b/packages/pixel/package.json index 8492603281..6d9b1fe4bc 100644 --- a/packages/pixel/package.json +++ b/packages/pixel/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/pixel", - "version": "1.0.4", + "version": "1.0.5", "description": "Typedarray integer & float pixel buffers w/ customizable formats, blitting, dithering, convolution", "module": "./index.js", "main": "./lib/index.js", @@ -38,12 +38,12 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/binary": "^2.2.10", - "@thi.ng/checks": "^2.9.10", - "@thi.ng/k-means": "^0.3.5", - "@thi.ng/math": "^4.0.5", - "@thi.ng/porter-duff": "^1.0.1" + "@thi.ng/api": "^7.2.0", + "@thi.ng/binary": "^2.2.11", + "@thi.ng/checks": "^2.9.11", + "@thi.ng/k-means": "^0.3.6", + "@thi.ng/math": "^4.0.6", + "@thi.ng/porter-duff": "^1.0.2" }, "files": [ "*.js", diff --git a/packages/pointfree-lang/CHANGELOG.md b/packages/pointfree-lang/CHANGELOG.md index cb63b54da2..b168a24051 100644 --- a/packages/pointfree-lang/CHANGELOG.md +++ b/packages/pointfree-lang/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.4.38](https://github.com/thi-ng/umbrella/compare/@thi.ng/pointfree-lang@1.4.37...@thi.ng/pointfree-lang@1.4.38) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/pointfree-lang + + + + + # [1.4.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/pointfree-lang@1.3.0...@thi.ng/pointfree-lang@1.4.0) (2020-04-27) diff --git a/packages/pointfree-lang/package.json b/packages/pointfree-lang/package.json index 2a6eed06f2..3297a98a1e 100644 --- a/packages/pointfree-lang/package.json +++ b/packages/pointfree-lang/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/pointfree-lang", - "version": "1.4.37", + "version": "1.4.38", "description": "Forth style syntax layer/compiler & CLI for the @thi.ng/pointfree DSL", "module": "./index.js", "main": "./lib/index.js", @@ -46,11 +46,11 @@ "pegjs": "0.11.0-master.b7b87ea" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/args": "^1.1.0", - "@thi.ng/bench": "^2.1.5", + "@thi.ng/api": "^7.2.0", + "@thi.ng/args": "^1.1.1", + "@thi.ng/bench": "^2.1.6", "@thi.ng/errors": "^1.3.4", - "@thi.ng/pointfree": "^2.0.35" + "@thi.ng/pointfree": "^2.0.36" }, "files": [ "*.js", diff --git a/packages/pointfree/CHANGELOG.md b/packages/pointfree/CHANGELOG.md index fd1c800859..e6c9a626fa 100644 --- a/packages/pointfree/CHANGELOG.md +++ b/packages/pointfree/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.0.36](https://github.com/thi-ng/umbrella/compare/@thi.ng/pointfree@2.0.35...@thi.ng/pointfree@2.0.36) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/pointfree + + + + + # [2.0.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/pointfree@1.3.3...@thi.ng/pointfree@2.0.0) (2020-04-16) diff --git a/packages/pointfree/package.json b/packages/pointfree/package.json index a79fd7d924..08f2218738 100644 --- a/packages/pointfree/package.json +++ b/packages/pointfree/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/pointfree", - "version": "2.0.35", + "version": "2.0.36", "description": "Pointfree functional composition / Forth style stack execution engine", "module": "./index.js", "main": "./lib/index.js", @@ -38,9 +38,9 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/checks": "^2.9.10", - "@thi.ng/compose": "^1.4.35", + "@thi.ng/api": "^7.2.0", + "@thi.ng/checks": "^2.9.11", + "@thi.ng/compose": "^1.4.36", "@thi.ng/equiv": "^1.0.45", "@thi.ng/errors": "^1.3.4" }, diff --git a/packages/poisson/CHANGELOG.md b/packages/poisson/CHANGELOG.md index 92405c60e4..d786659a0a 100644 --- a/packages/poisson/CHANGELOG.md +++ b/packages/poisson/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.1.53](https://github.com/thi-ng/umbrella/compare/@thi.ng/poisson@1.1.52...@thi.ng/poisson@1.1.53) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/poisson + + + + + # [1.1.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/poisson@1.0.17...@thi.ng/poisson@1.1.0) (2020-05-29) diff --git a/packages/poisson/package.json b/packages/poisson/package.json index 2072a742da..37b9fb06f5 100644 --- a/packages/poisson/package.json +++ b/packages/poisson/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/poisson", - "version": "1.1.52", + "version": "1.1.53", "description": "nD Stratified grid and Poisson-disc sampling w/ support for spatial density functions and custom PRNGs", "module": "./index.js", "main": "./lib/index.js", @@ -38,12 +38,12 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/checks": "^2.9.10", - "@thi.ng/geom-api": "^2.0.30", - "@thi.ng/random": "^2.4.7", - "@thi.ng/transducers": "^7.9.1", - "@thi.ng/vectors": "^6.1.2" + "@thi.ng/api": "^7.2.0", + "@thi.ng/checks": "^2.9.11", + "@thi.ng/geom-api": "^2.0.31", + "@thi.ng/random": "^2.4.8", + "@thi.ng/transducers": "^7.9.2", + "@thi.ng/vectors": "^6.2.0" }, "files": [ "*.js", diff --git a/packages/porter-duff/CHANGELOG.md b/packages/porter-duff/CHANGELOG.md index c81030290e..cd7e233da9 100644 --- a/packages/porter-duff/CHANGELOG.md +++ b/packages/porter-duff/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/porter-duff@1.0.1...@thi.ng/porter-duff@1.0.2) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/porter-duff + + + + + # 0.1.0 (2019-07-31) ### Bug Fixes diff --git a/packages/porter-duff/package.json b/packages/porter-duff/package.json index 475c4c0b19..07ac28d745 100644 --- a/packages/porter-duff/package.json +++ b/packages/porter-duff/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/porter-duff", - "version": "1.0.1", + "version": "1.0.2", "description": "Porter-Duff operators for packed ints & float-array alpha compositing", "module": "./index.js", "main": "./lib/index.js", @@ -38,8 +38,8 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/math": "^4.0.5" + "@thi.ng/api": "^7.2.0", + "@thi.ng/math": "^4.0.6" }, "files": [ "*.js", diff --git a/packages/ramp/CHANGELOG.md b/packages/ramp/CHANGELOG.md index 20c329a0af..9bcd0b91fb 100644 --- a/packages/ramp/CHANGELOG.md +++ b/packages/ramp/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/ramp@1.0.6...@thi.ng/ramp@1.0.7) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/ramp + + + + + # 0.1.0 (2020-01-24) ### Features diff --git a/packages/ramp/package.json b/packages/ramp/package.json index fd19a6595f..98a2d050c3 100644 --- a/packages/ramp/package.json +++ b/packages/ramp/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/ramp", - "version": "1.0.6", + "version": "1.0.7", "description": "Parametric interpolated 1D lookup tables for remapping values", "module": "./index.js", "main": "./lib/index.js", @@ -38,11 +38,11 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/arrays": "^1.0.2", - "@thi.ng/compare": "^1.3.33", - "@thi.ng/math": "^4.0.5", - "@thi.ng/transducers": "^7.9.1", - "@thi.ng/vectors": "^6.1.2" + "@thi.ng/arrays": "^1.0.3", + "@thi.ng/compare": "^1.3.34", + "@thi.ng/math": "^4.0.6", + "@thi.ng/transducers": "^7.9.2", + "@thi.ng/vectors": "^6.2.0" }, "files": [ "*.js", diff --git a/packages/random/CHANGELOG.md b/packages/random/CHANGELOG.md index c39ec8bdc4..a48f5e61ab 100644 --- a/packages/random/CHANGELOG.md +++ b/packages/random/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.4.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/random@2.4.7...@thi.ng/random@2.4.8) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/random + + + + + ## [2.4.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/random@2.4.3...@thi.ng/random@2.4.4) (2021-08-04) diff --git a/packages/random/package.json b/packages/random/package.json index 3a49e6f58c..5b363746cc 100644 --- a/packages/random/package.json +++ b/packages/random/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/random", - "version": "2.4.7", + "version": "2.4.8", "description": "Pseudo-random number generators w/ unified API, distributions, weighted choices, ID generation", "module": "./index.js", "main": "./lib/index.js", @@ -38,8 +38,8 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/checks": "^2.9.10", + "@thi.ng/api": "^7.2.0", + "@thi.ng/checks": "^2.9.11", "@thi.ng/hex": "^1.0.4" }, "files": [ diff --git a/packages/range-coder/CHANGELOG.md b/packages/range-coder/CHANGELOG.md index ee07517104..fab6edfcaa 100644 --- a/packages/range-coder/CHANGELOG.md +++ b/packages/range-coder/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.93](https://github.com/thi-ng/umbrella/compare/@thi.ng/range-coder@1.0.92...@thi.ng/range-coder@1.0.93) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/range-coder + + + + + # [1.0.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/range-coder@0.1.28...@thi.ng/range-coder@1.0.0) (2019-01-21) ### Build System diff --git a/packages/range-coder/package.json b/packages/range-coder/package.json index 2f1c06ff2b..279c147496 100644 --- a/packages/range-coder/package.json +++ b/packages/range-coder/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/range-coder", - "version": "1.0.92", + "version": "1.0.93", "description": "Binary data range encoder / decoder", "module": "./index.js", "main": "./lib/index.js", @@ -38,7 +38,7 @@ "pub": "yarn build:release && yarn publish --access public" }, "devDependencies": { - "@thi.ng/transducers": "^7.9.1" + "@thi.ng/transducers": "^7.9.2" }, "dependencies": { "@thi.ng/bitstream": "^1.1.43" diff --git a/packages/rdom-canvas/CHANGELOG.md b/packages/rdom-canvas/CHANGELOG.md index 812702e4a4..50c39c8fb5 100644 --- a/packages/rdom-canvas/CHANGELOG.md +++ b/packages/rdom-canvas/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.60](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom-canvas@0.1.59...@thi.ng/rdom-canvas@0.1.60) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/rdom-canvas + + + + + ## [0.1.59](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom-canvas@0.1.58...@thi.ng/rdom-canvas@0.1.59) (2021-08-22) **Note:** Version bump only for package @thi.ng/rdom-canvas diff --git a/packages/rdom-canvas/package.json b/packages/rdom-canvas/package.json index 4bc3d3e2cf..c2d7b48b81 100644 --- a/packages/rdom-canvas/package.json +++ b/packages/rdom-canvas/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rdom-canvas", - "version": "0.1.59", + "version": "0.1.60", "description": "@thi.ng/rdom component wrapper for @thi.ng/hiccup-canvas and declarative canvas drawing", "module": "./index.js", "main": "./lib/index.js", @@ -38,12 +38,12 @@ }, "dependencies": { "@thi.ng/adapt-dpi": "^1.0.23", - "@thi.ng/api": "^7.1.9", - "@thi.ng/checks": "^2.9.10", - "@thi.ng/hiccup-canvas": "^1.2.14", - "@thi.ng/rdom": "^0.6.8", - "@thi.ng/rstream": "^6.0.20", - "@thi.ng/transducers": "^7.9.1" + "@thi.ng/api": "^7.2.0", + "@thi.ng/checks": "^2.9.11", + "@thi.ng/hiccup-canvas": "^1.2.15", + "@thi.ng/rdom": "^0.6.9", + "@thi.ng/rstream": "^6.0.21", + "@thi.ng/transducers": "^7.9.2" }, "files": [ "*.js", diff --git a/packages/rdom-components/CHANGELOG.md b/packages/rdom-components/CHANGELOG.md index f7ac337c49..918c740526 100644 --- a/packages/rdom-components/CHANGELOG.md +++ b/packages/rdom-components/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.2.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom-components@0.2.8...@thi.ng/rdom-components@0.2.9) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/rdom-components + + + + + ## [0.2.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom-components@0.2.7...@thi.ng/rdom-components@0.2.8) (2021-08-22) **Note:** Version bump only for package @thi.ng/rdom-components diff --git a/packages/rdom-components/package.json b/packages/rdom-components/package.json index 0f5fea96f6..79d7198a18 100644 --- a/packages/rdom-components/package.json +++ b/packages/rdom-components/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rdom-components", - "version": "0.2.8", + "version": "0.2.9", "description": "Collection of unstyled, customizable components for @thi.ng/rdom", "module": "./index.js", "main": "./lib/index.js", @@ -37,13 +37,13 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/associative": "^5.2.15", - "@thi.ng/hiccup-html": "^1.1.0", - "@thi.ng/rdom": "^0.6.8", - "@thi.ng/rstream": "^6.0.20", - "@thi.ng/strings": "^2.1.6", - "@thi.ng/transducers": "^7.9.1" + "@thi.ng/api": "^7.2.0", + "@thi.ng/associative": "^5.2.16", + "@thi.ng/hiccup-html": "^1.1.1", + "@thi.ng/rdom": "^0.6.9", + "@thi.ng/rstream": "^6.0.21", + "@thi.ng/strings": "^2.1.7", + "@thi.ng/transducers": "^7.9.2" }, "files": [ "*.js", diff --git a/packages/rdom/CHANGELOG.md b/packages/rdom/CHANGELOG.md index 193d604616..b0572e9c03 100644 --- a/packages/rdom/CHANGELOG.md +++ b/packages/rdom/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.6.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom@0.6.8...@thi.ng/rdom@0.6.9) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/rdom + + + + + ## [0.6.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom@0.6.7...@thi.ng/rdom@0.6.8) (2021-08-22) **Note:** Version bump only for package @thi.ng/rdom diff --git a/packages/rdom/package.json b/packages/rdom/package.json index ba68953de0..65080040f7 100644 --- a/packages/rdom/package.json +++ b/packages/rdom/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rdom", - "version": "0.6.8", + "version": "0.6.9", "description": "Lightweight, reactive, VDOM-less UI/DOM components with async lifecycle and @thi.ng/hiccup compatible", "module": "./index.js", "main": "./lib/index.js", @@ -38,14 +38,14 @@ "pub:wip": "yarn publish --access public --no-git-tag-version" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/checks": "^2.9.10", + "@thi.ng/api": "^7.2.0", + "@thi.ng/checks": "^2.9.11", "@thi.ng/errors": "^1.3.4", - "@thi.ng/hiccup": "^3.6.21", - "@thi.ng/paths": "^4.2.13", + "@thi.ng/hiccup": "^3.6.22", + "@thi.ng/paths": "^4.2.14", "@thi.ng/prefixes": "^1.0.2", - "@thi.ng/rstream": "^6.0.20", - "@thi.ng/strings": "^2.1.6" + "@thi.ng/rstream": "^6.0.21", + "@thi.ng/strings": "^2.1.7" }, "files": [ "*.js", diff --git a/packages/resolve-map/CHANGELOG.md b/packages/resolve-map/CHANGELOG.md index 3e4b0afc68..5907a4a4d1 100644 --- a/packages/resolve-map/CHANGELOG.md +++ b/packages/resolve-map/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.27](https://github.com/thi-ng/umbrella/compare/@thi.ng/resolve-map@4.2.26...@thi.ng/resolve-map@4.2.27) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/resolve-map + + + + + # [4.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/resolve-map@4.1.31...@thi.ng/resolve-map@4.2.0) (2020-07-18) diff --git a/packages/resolve-map/package.json b/packages/resolve-map/package.json index 678cad485e..3ae08c2a23 100644 --- a/packages/resolve-map/package.json +++ b/packages/resolve-map/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/resolve-map", - "version": "4.2.26", + "version": "4.2.27", "description": "DAG resolution of vanilla objects & arrays with internally linked values", "module": "./index.js", "main": "./lib/index.js", @@ -38,10 +38,10 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/checks": "^2.9.10", + "@thi.ng/api": "^7.2.0", + "@thi.ng/checks": "^2.9.11", "@thi.ng/errors": "^1.3.4", - "@thi.ng/paths": "^4.2.13" + "@thi.ng/paths": "^4.2.14" }, "files": [ "*.js", diff --git a/packages/router/CHANGELOG.md b/packages/router/CHANGELOG.md index 8340d07a82..ff665f8bd8 100644 --- a/packages/router/CHANGELOG.md +++ b/packages/router/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.0.54](https://github.com/thi-ng/umbrella/compare/@thi.ng/router@2.0.53...@thi.ng/router@2.0.54) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/router + + + + + # [2.0.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/router@1.0.12...@thi.ng/router@2.0.0) (2019-07-07) ### Code Refactoring diff --git a/packages/router/package.json b/packages/router/package.json index 1a6d1b3777..e1d2fee4f4 100644 --- a/packages/router/package.json +++ b/packages/router/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/router", - "version": "2.0.53", + "version": "2.0.54", "description": "Generic router for browser & non-browser based applications", "module": "./index.js", "main": "./lib/index.js", @@ -38,8 +38,8 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/checks": "^2.9.10", + "@thi.ng/api": "^7.2.0", + "@thi.ng/checks": "^2.9.11", "@thi.ng/equiv": "^1.0.45", "@thi.ng/errors": "^1.3.4", "tslib": "^2.3.1" diff --git a/packages/rstream-csp/CHANGELOG.md b/packages/rstream-csp/CHANGELOG.md index 388f8afa0f..07e5aaae6c 100644 --- a/packages/rstream-csp/CHANGELOG.md +++ b/packages/rstream-csp/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.0.80](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-csp@2.0.79...@thi.ng/rstream-csp@2.0.80) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/rstream-csp + + + + + ## [2.0.79](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-csp@2.0.78...@thi.ng/rstream-csp@2.0.79) (2021-08-22) **Note:** Version bump only for package @thi.ng/rstream-csp diff --git a/packages/rstream-csp/package.json b/packages/rstream-csp/package.json index bf2581f239..32b56ac048 100644 --- a/packages/rstream-csp/package.json +++ b/packages/rstream-csp/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-csp", - "version": "2.0.79", + "version": "2.0.80", "description": "@thi.ng/csp bridge module for @thi.ng/rstream", "module": "./index.js", "main": "./lib/index.js", @@ -38,8 +38,8 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/csp": "^1.1.73", - "@thi.ng/rstream": "^6.0.20" + "@thi.ng/csp": "^1.1.74", + "@thi.ng/rstream": "^6.0.21" }, "files": [ "*.js", diff --git a/packages/rstream-dot/CHANGELOG.md b/packages/rstream-dot/CHANGELOG.md index fc7c07470d..a64baa00b2 100644 --- a/packages/rstream-dot/CHANGELOG.md +++ b/packages/rstream-dot/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.2.29](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-dot@1.2.28...@thi.ng/rstream-dot@1.2.29) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/rstream-dot + + + + + ## [1.2.28](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-dot@1.2.27...@thi.ng/rstream-dot@1.2.28) (2021-08-22) **Note:** Version bump only for package @thi.ng/rstream-dot diff --git a/packages/rstream-dot/package.json b/packages/rstream-dot/package.json index 23fb079ce6..ea43775516 100644 --- a/packages/rstream-dot/package.json +++ b/packages/rstream-dot/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-dot", - "version": "1.2.28", + "version": "1.2.29", "description": "Graphviz DOT conversion of @thi.ng/rstream dataflow graph topologies", "module": "./index.js", "main": "./lib/index.js", @@ -38,9 +38,9 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/rstream": "^6.0.20", - "@thi.ng/strings": "^2.1.6", - "@thi.ng/transducers": "^7.9.1" + "@thi.ng/rstream": "^6.0.21", + "@thi.ng/strings": "^2.1.7", + "@thi.ng/transducers": "^7.9.2" }, "files": [ "*.js", diff --git a/packages/rstream-gestures/CHANGELOG.md b/packages/rstream-gestures/CHANGELOG.md index 9936efe650..fcc7138b54 100644 --- a/packages/rstream-gestures/CHANGELOG.md +++ b/packages/rstream-gestures/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.0.34](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-gestures@3.0.33...@thi.ng/rstream-gestures@3.0.34) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/rstream-gestures + + + + + ## [3.0.33](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-gestures@3.0.32...@thi.ng/rstream-gestures@3.0.33) (2021-08-22) **Note:** Version bump only for package @thi.ng/rstream-gestures diff --git a/packages/rstream-gestures/package.json b/packages/rstream-gestures/package.json index 2889dc806a..be95990bed 100644 --- a/packages/rstream-gestures/package.json +++ b/packages/rstream-gestures/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-gestures", - "version": "3.0.33", + "version": "3.0.34", "description": "Unified mouse, mouse wheel & multi-touch event stream abstraction", "module": "./index.js", "main": "./lib/index.js", @@ -38,11 +38,11 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/checks": "^2.9.10", - "@thi.ng/math": "^4.0.5", - "@thi.ng/rstream": "^6.0.20", - "@thi.ng/transducers": "^7.9.1" + "@thi.ng/api": "^7.2.0", + "@thi.ng/checks": "^2.9.11", + "@thi.ng/math": "^4.0.6", + "@thi.ng/rstream": "^6.0.21", + "@thi.ng/transducers": "^7.9.2" }, "files": [ "*.js", diff --git a/packages/rstream-graph/CHANGELOG.md b/packages/rstream-graph/CHANGELOG.md index 04a09c784f..00e92448df 100644 --- a/packages/rstream-graph/CHANGELOG.md +++ b/packages/rstream-graph/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.2.81](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-graph@3.2.80...@thi.ng/rstream-graph@3.2.81) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/rstream-graph + + + + + ## [3.2.80](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-graph@3.2.79...@thi.ng/rstream-graph@3.2.80) (2021-08-22) **Note:** Version bump only for package @thi.ng/rstream-graph diff --git a/packages/rstream-graph/package.json b/packages/rstream-graph/package.json index e63ce53ffe..96df0cd049 100644 --- a/packages/rstream-graph/package.json +++ b/packages/rstream-graph/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-graph", - "version": "3.2.80", + "version": "3.2.81", "description": "Declarative dataflow graph construction for @thi.ng/rstream", "module": "./index.js", "main": "./lib/index.js", @@ -38,14 +38,14 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/atom": "^4.1.41", - "@thi.ng/checks": "^2.9.10", + "@thi.ng/api": "^7.2.0", + "@thi.ng/atom": "^4.1.42", + "@thi.ng/checks": "^2.9.11", "@thi.ng/errors": "^1.3.4", - "@thi.ng/paths": "^4.2.13", - "@thi.ng/resolve-map": "^4.2.26", - "@thi.ng/rstream": "^6.0.20", - "@thi.ng/transducers": "^7.9.1" + "@thi.ng/paths": "^4.2.14", + "@thi.ng/resolve-map": "^4.2.27", + "@thi.ng/rstream": "^6.0.21", + "@thi.ng/transducers": "^7.9.2" }, "files": [ "*.js", diff --git a/packages/rstream-log-file/CHANGELOG.md b/packages/rstream-log-file/CHANGELOG.md index 9776aeb8b4..0160bb1521 100644 --- a/packages/rstream-log-file/CHANGELOG.md +++ b/packages/rstream-log-file/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log-file@1.0.5...@thi.ng/rstream-log-file@1.0.6) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/rstream-log-file + + + + + ## [1.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log-file@1.0.4...@thi.ng/rstream-log-file@1.0.5) (2021-08-22) **Note:** Version bump only for package @thi.ng/rstream-log-file diff --git a/packages/rstream-log-file/package.json b/packages/rstream-log-file/package.json index 3969245d0d..43b61476d5 100644 --- a/packages/rstream-log-file/package.json +++ b/packages/rstream-log-file/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-log-file", - "version": "1.0.5", + "version": "1.0.6", "description": "File output handler for structured, multilevel & hierarchical loggers based on @thi.ng/rstream", "module": "./index.js", "main": "./lib/index.js", @@ -38,7 +38,7 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/rstream": "^6.0.20" + "@thi.ng/rstream": "^6.0.21" }, "files": [ "*.js", diff --git a/packages/rstream-log/CHANGELOG.md b/packages/rstream-log/CHANGELOG.md index 5ef9be4d73..ff73e225a8 100644 --- a/packages/rstream-log/CHANGELOG.md +++ b/packages/rstream-log/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.2.33](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log@3.2.32...@thi.ng/rstream-log@3.2.33) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/rstream-log + + + + + ## [3.2.32](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log@3.2.31...@thi.ng/rstream-log@3.2.32) (2021-08-22) **Note:** Version bump only for package @thi.ng/rstream-log diff --git a/packages/rstream-log/package.json b/packages/rstream-log/package.json index 2caaebb84a..387dcb877b 100644 --- a/packages/rstream-log/package.json +++ b/packages/rstream-log/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-log", - "version": "3.2.32", + "version": "3.2.33", "description": "Structured, multilevel & hierarchical loggers based on @thi.ng/rstream", "module": "./index.js", "main": "./lib/index.js", @@ -38,12 +38,12 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/checks": "^2.9.10", + "@thi.ng/api": "^7.2.0", + "@thi.ng/checks": "^2.9.11", "@thi.ng/errors": "^1.3.4", - "@thi.ng/rstream": "^6.0.20", - "@thi.ng/strings": "^2.1.6", - "@thi.ng/transducers": "^7.9.1" + "@thi.ng/rstream": "^6.0.21", + "@thi.ng/strings": "^2.1.7", + "@thi.ng/transducers": "^7.9.2" }, "files": [ "*.js", diff --git a/packages/rstream-query/CHANGELOG.md b/packages/rstream-query/CHANGELOG.md index c6e7ff0288..b692acb426 100644 --- a/packages/rstream-query/CHANGELOG.md +++ b/packages/rstream-query/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.1.89](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-query@1.1.88...@thi.ng/rstream-query@1.1.89) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/rstream-query + + + + + ## [1.1.88](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-query@1.1.87...@thi.ng/rstream-query@1.1.88) (2021-08-22) **Note:** Version bump only for package @thi.ng/rstream-query diff --git a/packages/rstream-query/package.json b/packages/rstream-query/package.json index 0400fc3602..7bce8756cf 100644 --- a/packages/rstream-query/package.json +++ b/packages/rstream-query/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-query", - "version": "1.1.88", + "version": "1.1.89", "description": "@thi.ng/rstream based triple store & reactive query engine", "module": "./index.js", "main": "./lib/index.js", @@ -38,15 +38,15 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/associative": "^5.2.15", - "@thi.ng/checks": "^2.9.10", + "@thi.ng/api": "^7.2.0", + "@thi.ng/associative": "^5.2.16", + "@thi.ng/checks": "^2.9.11", "@thi.ng/equiv": "^1.0.45", "@thi.ng/errors": "^1.3.4", - "@thi.ng/math": "^4.0.5", - "@thi.ng/rstream": "^6.0.20", - "@thi.ng/rstream-dot": "^1.2.28", - "@thi.ng/transducers": "^7.9.1" + "@thi.ng/math": "^4.0.6", + "@thi.ng/rstream": "^6.0.21", + "@thi.ng/rstream-dot": "^1.2.29", + "@thi.ng/transducers": "^7.9.2" }, "files": [ "*.js", diff --git a/packages/rstream/CHANGELOG.md b/packages/rstream/CHANGELOG.md index f375341f25..b97aab2c1e 100644 --- a/packages/rstream/CHANGELOG.md +++ b/packages/rstream/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [6.0.21](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream@6.0.20...@thi.ng/rstream@6.0.21) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/rstream + + + + + ## [6.0.20](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream@6.0.19...@thi.ng/rstream@6.0.20) (2021-08-22) **Note:** Version bump only for package @thi.ng/rstream diff --git a/packages/rstream/package.json b/packages/rstream/package.json index 8405cf6666..0403afb975 100644 --- a/packages/rstream/package.json +++ b/packages/rstream/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream", - "version": "6.0.20", + "version": "6.0.21", "description": "Reactive streams & subscription primitives for constructing dataflow graphs / pipelines", "module": "./index.js", "main": "./lib/index.js", @@ -38,13 +38,13 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/arrays": "^1.0.2", - "@thi.ng/associative": "^5.2.15", - "@thi.ng/atom": "^4.1.41", - "@thi.ng/checks": "^2.9.10", + "@thi.ng/api": "^7.2.0", + "@thi.ng/arrays": "^1.0.3", + "@thi.ng/associative": "^5.2.16", + "@thi.ng/atom": "^4.1.42", + "@thi.ng/checks": "^2.9.11", "@thi.ng/errors": "^1.3.4", - "@thi.ng/transducers": "^7.9.1" + "@thi.ng/transducers": "^7.9.2" }, "files": [ "*.js", diff --git a/packages/sax/CHANGELOG.md b/packages/sax/CHANGELOG.md index e961a8526e..7bf28a07d8 100644 --- a/packages/sax/CHANGELOG.md +++ b/packages/sax/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.1.73](https://github.com/thi-ng/umbrella/compare/@thi.ng/sax@1.1.72...@thi.ng/sax@1.1.73) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/sax + + + + + # [1.1.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/sax@1.0.19...@thi.ng/sax@1.1.0) (2019-07-07) ### Features diff --git a/packages/sax/package.json b/packages/sax/package.json index 1a228f54ab..3103d572f0 100644 --- a/packages/sax/package.json +++ b/packages/sax/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/sax", - "version": "1.1.72", + "version": "1.1.73", "description": "Transducer-based, SAX-like, non-validating, speedy & tiny XML parser", "module": "./index.js", "main": "./lib/index.js", @@ -38,9 +38,9 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/transducers": "^7.9.1", - "@thi.ng/transducers-fsm": "^1.1.72" + "@thi.ng/api": "^7.2.0", + "@thi.ng/transducers": "^7.9.2", + "@thi.ng/transducers-fsm": "^1.1.73" }, "files": [ "*.js", diff --git a/packages/scenegraph/CHANGELOG.md b/packages/scenegraph/CHANGELOG.md index b8ad171fcf..382e195fac 100644 --- a/packages/scenegraph/CHANGELOG.md +++ b/packages/scenegraph/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.3.43](https://github.com/thi-ng/umbrella/compare/@thi.ng/scenegraph@0.3.42...@thi.ng/scenegraph@0.3.43) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/scenegraph + + + + + # [0.3.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/scenegraph@0.2.1...@thi.ng/scenegraph@0.3.0) (2020-07-28) diff --git a/packages/scenegraph/package.json b/packages/scenegraph/package.json index b23365c56a..474c75be3a 100644 --- a/packages/scenegraph/package.json +++ b/packages/scenegraph/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/scenegraph", - "version": "0.3.42", + "version": "0.3.43", "description": "Extensible 2D/3D scene graph with @thi.ng/hiccup-canvas support", "module": "./index.js", "main": "./lib/index.js", @@ -38,10 +38,10 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/checks": "^2.9.10", - "@thi.ng/matrices": "^1.0.4", - "@thi.ng/vectors": "^6.1.2" + "@thi.ng/api": "^7.2.0", + "@thi.ng/checks": "^2.9.11", + "@thi.ng/matrices": "^1.0.5", + "@thi.ng/vectors": "^6.2.0" }, "files": [ "*.js", diff --git a/packages/seq/CHANGELOG.md b/packages/seq/CHANGELOG.md index 483c99bc6d..deb2b8f6d3 100644 --- a/packages/seq/CHANGELOG.md +++ b/packages/seq/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.2.43](https://github.com/thi-ng/umbrella/compare/@thi.ng/seq@0.2.42...@thi.ng/seq@0.2.43) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/seq + + + + + # [0.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/seq@0.1.0...@thi.ng/seq@0.2.0) (2020-01-24) ### Features diff --git a/packages/seq/package.json b/packages/seq/package.json index 002f7e16d2..615b76fdad 100644 --- a/packages/seq/package.json +++ b/packages/seq/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/seq", - "version": "0.2.42", + "version": "0.2.43", "description": "Various implementations of the @thi.ng/api `ISeq` interface / sequence abstraction", "module": "./index.js", "main": "./lib/index.js", @@ -38,8 +38,8 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/checks": "^2.9.10" + "@thi.ng/api": "^7.2.0", + "@thi.ng/checks": "^2.9.11" }, "files": [ "*.js", diff --git a/packages/sexpr/CHANGELOG.md b/packages/sexpr/CHANGELOG.md index 0e1eb0dd1f..7b864cf0df 100644 --- a/packages/sexpr/CHANGELOG.md +++ b/packages/sexpr/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.2.48](https://github.com/thi-ng/umbrella/compare/@thi.ng/sexpr@0.2.47...@thi.ng/sexpr@0.2.48) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/sexpr + + + + + ## [0.2.35](https://github.com/thi-ng/umbrella/compare/@thi.ng/sexpr@0.2.34...@thi.ng/sexpr@0.2.35) (2021-03-03) diff --git a/packages/sexpr/package.json b/packages/sexpr/package.json index 5e0cdc6e25..0ab211e95b 100644 --- a/packages/sexpr/package.json +++ b/packages/sexpr/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/sexpr", - "version": "0.2.47", + "version": "0.2.48", "description": "Extensible S-Expression parser & runtime infrastructure", "module": "./index.js", "main": "./lib/index.js", @@ -38,9 +38,9 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/checks": "^2.9.10", - "@thi.ng/defmulti": "^1.3.16" + "@thi.ng/api": "^7.2.0", + "@thi.ng/checks": "^2.9.11", + "@thi.ng/defmulti": "^1.3.17" }, "files": [ "*.js", diff --git a/packages/shader-ast-glsl/CHANGELOG.md b/packages/shader-ast-glsl/CHANGELOG.md index 4ca608ce07..f170f645ce 100644 --- a/packages/shader-ast-glsl/CHANGELOG.md +++ b/packages/shader-ast-glsl/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.2.48](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-glsl@0.2.47...@thi.ng/shader-ast-glsl@0.2.48) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/shader-ast-glsl + + + + + ## [0.2.47](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-glsl@0.2.46...@thi.ng/shader-ast-glsl@0.2.47) (2021-08-22) **Note:** Version bump only for package @thi.ng/shader-ast-glsl diff --git a/packages/shader-ast-glsl/package.json b/packages/shader-ast-glsl/package.json index b38b8a6d72..adbbc5f26f 100644 --- a/packages/shader-ast-glsl/package.json +++ b/packages/shader-ast-glsl/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/shader-ast-glsl", - "version": "0.2.47", + "version": "0.2.48", "description": "Customizable GLSL codegen for @thi.ng/shader-ast", "module": "./index.js", "main": "./lib/index.js", @@ -38,10 +38,10 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/checks": "^2.9.10", + "@thi.ng/api": "^7.2.0", + "@thi.ng/checks": "^2.9.11", "@thi.ng/errors": "^1.3.4", - "@thi.ng/shader-ast": "^0.10.3" + "@thi.ng/shader-ast": "^0.10.4" }, "files": [ "*.js", diff --git a/packages/shader-ast-js/CHANGELOG.md b/packages/shader-ast-js/CHANGELOG.md index 768e316a5b..6cdee65843 100644 --- a/packages/shader-ast-js/CHANGELOG.md +++ b/packages/shader-ast-js/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.5.49](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-js@0.5.48...@thi.ng/shader-ast-js@0.5.49) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/shader-ast-js + + + + + ## [0.5.48](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-js@0.5.47...@thi.ng/shader-ast-js@0.5.48) (2021-08-22) **Note:** Version bump only for package @thi.ng/shader-ast-js diff --git a/packages/shader-ast-js/package.json b/packages/shader-ast-js/package.json index cea90343f2..97a4f24cbe 100644 --- a/packages/shader-ast-js/package.json +++ b/packages/shader-ast-js/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/shader-ast-js", - "version": "0.5.48", + "version": "0.5.49", "description": "Customizable JS codegen, compiler & runtime for @thi.ng/shader-ast", "module": "./index.js", "main": "./lib/index.js", @@ -38,14 +38,14 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/checks": "^2.9.10", + "@thi.ng/api": "^7.2.0", + "@thi.ng/checks": "^2.9.11", "@thi.ng/errors": "^1.3.4", - "@thi.ng/math": "^4.0.5", - "@thi.ng/matrices": "^1.0.4", - "@thi.ng/pixel": "^1.0.4", - "@thi.ng/shader-ast": "^0.10.3", - "@thi.ng/vectors": "^6.1.2" + "@thi.ng/math": "^4.0.6", + "@thi.ng/matrices": "^1.0.5", + "@thi.ng/pixel": "^1.0.5", + "@thi.ng/shader-ast": "^0.10.4", + "@thi.ng/vectors": "^6.2.0" }, "files": [ "*.js", diff --git a/packages/shader-ast-stdlib/CHANGELOG.md b/packages/shader-ast-stdlib/CHANGELOG.md index 5804efb87b..37590e2cf5 100644 --- a/packages/shader-ast-stdlib/CHANGELOG.md +++ b/packages/shader-ast-stdlib/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-stdlib@0.9.3...@thi.ng/shader-ast-stdlib@0.9.4) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/shader-ast-stdlib + + + + + ## [0.9.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-stdlib@0.9.2...@thi.ng/shader-ast-stdlib@0.9.3) (2021-08-22) **Note:** Version bump only for package @thi.ng/shader-ast-stdlib diff --git a/packages/shader-ast-stdlib/package.json b/packages/shader-ast-stdlib/package.json index e8428c94a5..fffe8e8472 100644 --- a/packages/shader-ast-stdlib/package.json +++ b/packages/shader-ast-stdlib/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/shader-ast-stdlib", - "version": "0.9.3", + "version": "0.9.4", "description": "Function collection for modular GPGPU / shader programming with @thi.ng/shader-ast", "module": "./index.js", "main": "./lib/index.js", @@ -38,8 +38,8 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/shader-ast": "^0.10.3" + "@thi.ng/api": "^7.2.0", + "@thi.ng/shader-ast": "^0.10.4" }, "files": [ "*.js", diff --git a/packages/shader-ast/CHANGELOG.md b/packages/shader-ast/CHANGELOG.md index 1fb854843d..6032d4b648 100644 --- a/packages/shader-ast/CHANGELOG.md +++ b/packages/shader-ast/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.10.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast@0.10.3...@thi.ng/shader-ast@0.10.4) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/shader-ast + + + + + ## [0.10.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast@0.10.2...@thi.ng/shader-ast@0.10.3) (2021-08-22) **Note:** Version bump only for package @thi.ng/shader-ast diff --git a/packages/shader-ast/package.json b/packages/shader-ast/package.json index adc8807845..c9b8cd9fb0 100644 --- a/packages/shader-ast/package.json +++ b/packages/shader-ast/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/shader-ast", - "version": "0.10.3", + "version": "0.10.4", "description": "DSL to define shader code in TypeScript and cross-compile to GLSL, JS and other targets", "module": "./index.js", "main": "./lib/index.js", @@ -38,12 +38,12 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/checks": "^2.9.10", - "@thi.ng/defmulti": "^1.3.16", - "@thi.ng/dgraph": "^1.3.34", + "@thi.ng/api": "^7.2.0", + "@thi.ng/checks": "^2.9.11", + "@thi.ng/defmulti": "^1.3.17", + "@thi.ng/dgraph": "^1.3.35", "@thi.ng/errors": "^1.3.4", - "@thi.ng/math": "^4.0.5" + "@thi.ng/math": "^4.0.6" }, "files": [ "*.js", diff --git a/packages/simd/CHANGELOG.md b/packages/simd/CHANGELOG.md index d6e87f52a8..e598e8b2d0 100644 --- a/packages/simd/CHANGELOG.md +++ b/packages/simd/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.4.41](https://github.com/thi-ng/umbrella/compare/@thi.ng/simd@0.4.40...@thi.ng/simd@0.4.41) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/simd + + + + + # [0.4.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/simd@0.3.1...@thi.ng/simd@0.4.0) (2020-07-25) diff --git a/packages/simd/package.json b/packages/simd/package.json index 4eaa480e80..9ca3034322 100644 --- a/packages/simd/package.json +++ b/packages/simd/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/simd", - "version": "0.4.40", + "version": "0.4.41", "description": "WASM based SIMD vector operations for batch processing", "module": "./index.js", "main": "./lib/index.js", @@ -43,7 +43,7 @@ "assemblyscript": "0.19.11" }, "dependencies": { - "@thi.ng/transducers-binary": "^1.0.4" + "@thi.ng/transducers-binary": "^1.0.5" }, "files": [ "*.js", diff --git a/packages/soa/CHANGELOG.md b/packages/soa/CHANGELOG.md index ad0b915a97..8e9ab1e3d1 100644 --- a/packages/soa/CHANGELOG.md +++ b/packages/soa/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.2.25](https://github.com/thi-ng/umbrella/compare/@thi.ng/soa@0.2.24...@thi.ng/soa@0.2.25) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/soa + + + + + # [0.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/soa@0.1.47...@thi.ng/soa@0.2.0) (2021-02-20) diff --git a/packages/soa/package.json b/packages/soa/package.json index 5330fbbf71..cc7db179d3 100644 --- a/packages/soa/package.json +++ b/packages/soa/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/soa", - "version": "0.2.24", + "version": "0.2.25", "description": "SOA & AOS memory mapped structured views with optional & extensible serialization", "module": "./index.js", "main": "./lib/index.js", @@ -41,11 +41,11 @@ "@thi.ng/equiv": "^1.0.45" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/binary": "^2.2.10", + "@thi.ng/api": "^7.2.0", + "@thi.ng/binary": "^2.2.11", "@thi.ng/errors": "^1.3.4", - "@thi.ng/transducers-binary": "^1.0.4", - "@thi.ng/vectors": "^6.1.2" + "@thi.ng/transducers-binary": "^1.0.5", + "@thi.ng/vectors": "^6.2.0" }, "files": [ "*.js", diff --git a/packages/sparse/CHANGELOG.md b/packages/sparse/CHANGELOG.md index 29f14f10de..24de4f121d 100644 --- a/packages/sparse/CHANGELOG.md +++ b/packages/sparse/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.89](https://github.com/thi-ng/umbrella/compare/@thi.ng/sparse@0.1.88...@thi.ng/sparse@0.1.89) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/sparse + + + + + # 0.1.0 (2019-02-17) ### Features diff --git a/packages/sparse/package.json b/packages/sparse/package.json index 6505cbf43e..48795ea3a2 100644 --- a/packages/sparse/package.json +++ b/packages/sparse/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/sparse", - "version": "0.1.88", + "version": "0.1.89", "description": "Sparse vector & matrix implementations", "module": "./index.js", "main": "./lib/index.js", @@ -38,9 +38,9 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", + "@thi.ng/api": "^7.2.0", "@thi.ng/errors": "^1.3.4", - "@thi.ng/transducers": "^7.9.1" + "@thi.ng/transducers": "^7.9.2" }, "files": [ "*.js", diff --git a/packages/strings/CHANGELOG.md b/packages/strings/CHANGELOG.md index 881bc91cda..8d58f41ba9 100644 --- a/packages/strings/CHANGELOG.md +++ b/packages/strings/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.1.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/strings@2.1.6...@thi.ng/strings@2.1.7) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/strings + + + + + # [2.1.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/strings@2.0.0...@thi.ng/strings@2.1.0) (2021-03-24) diff --git a/packages/strings/package.json b/packages/strings/package.json index 7315864dfa..7454abded0 100644 --- a/packages/strings/package.json +++ b/packages/strings/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/strings", - "version": "2.1.6", + "version": "2.1.7", "description": "Various string formatting & utility functions", "module": "./index.js", "main": "./lib/index.js", @@ -38,10 +38,10 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", + "@thi.ng/api": "^7.2.0", "@thi.ng/errors": "^1.3.4", "@thi.ng/hex": "^1.0.4", - "@thi.ng/memoize": "^2.1.20" + "@thi.ng/memoize": "^2.1.21" }, "files": [ "*.js", diff --git a/packages/system/CHANGELOG.md b/packages/system/CHANGELOG.md index c61843f2e4..5bd9d2761f 100644 --- a/packages/system/CHANGELOG.md +++ b/packages/system/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/system@1.0.7...@thi.ng/system@1.0.8) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/system + + + + + ## [1.0.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/system@1.0.6...@thi.ng/system@1.0.7) (2021-08-22) **Note:** Version bump only for package @thi.ng/system diff --git a/packages/system/package.json b/packages/system/package.json index d0a352222c..550e0adc04 100644 --- a/packages/system/package.json +++ b/packages/system/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/system", - "version": "1.0.7", + "version": "1.0.8", "description": "Minimal and explicit dependency-injection & lifecycle container for stateful app components", "module": "./index.js", "main": "./lib/index.js", @@ -38,8 +38,8 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/dgraph": "^1.3.34" + "@thi.ng/api": "^7.2.0", + "@thi.ng/dgraph": "^1.3.35" }, "files": [ "*.js", diff --git a/packages/text-canvas/CHANGELOG.md b/packages/text-canvas/CHANGELOG.md index bd3207858a..711549153d 100644 --- a/packages/text-canvas/CHANGELOG.md +++ b/packages/text-canvas/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.1.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/text-canvas@1.1.3...@thi.ng/text-canvas@1.1.4) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/text-canvas + + + + + # [1.1.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/text-canvas@1.0.3...@thi.ng/text-canvas@1.1.0) (2021-08-13) diff --git a/packages/text-canvas/package.json b/packages/text-canvas/package.json index 750950ccac..8c64b50be4 100644 --- a/packages/text-canvas/package.json +++ b/packages/text-canvas/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/text-canvas", - "version": "1.1.3", + "version": "1.1.4", "description": "Text based canvas, drawing, tables with arbitrary formatting (incl. ANSI/HTML)", "module": "./index.js", "main": "./lib/index.js", @@ -38,14 +38,14 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/arrays": "^1.0.2", - "@thi.ng/checks": "^2.9.10", - "@thi.ng/geom-clip-line": "^1.2.44", - "@thi.ng/math": "^4.0.5", - "@thi.ng/memoize": "^2.1.20", - "@thi.ng/strings": "^2.1.6", - "@thi.ng/transducers": "^7.9.1" + "@thi.ng/api": "^7.2.0", + "@thi.ng/arrays": "^1.0.3", + "@thi.ng/checks": "^2.9.11", + "@thi.ng/geom-clip-line": "^1.2.45", + "@thi.ng/math": "^4.0.6", + "@thi.ng/memoize": "^2.1.21", + "@thi.ng/strings": "^2.1.7", + "@thi.ng/transducers": "^7.9.2" }, "files": [ "*.js", diff --git a/packages/transducers-binary/CHANGELOG.md b/packages/transducers-binary/CHANGELOG.md index 84778b54fd..0bb3baea0e 100644 --- a/packages/transducers-binary/CHANGELOG.md +++ b/packages/transducers-binary/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-binary@1.0.4...@thi.ng/transducers-binary@1.0.5) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/transducers-binary + + + + + # [0.6.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-binary@0.5.33...@thi.ng/transducers-binary@0.6.0) (2020-12-22) diff --git a/packages/transducers-binary/package.json b/packages/transducers-binary/package.json index 7c8c3376d1..deb6fb739f 100644 --- a/packages/transducers-binary/package.json +++ b/packages/transducers-binary/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/transducers-binary", - "version": "1.0.4", + "version": "1.0.5", "description": "Binary data related transducers & reducers", "module": "./index.js", "main": "./lib/index.js", @@ -38,12 +38,12 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/binary": "^2.2.10", - "@thi.ng/compose": "^1.4.35", + "@thi.ng/binary": "^2.2.11", + "@thi.ng/compose": "^1.4.36", "@thi.ng/errors": "^1.3.4", "@thi.ng/hex": "^1.0.4", - "@thi.ng/random": "^2.4.7", - "@thi.ng/transducers": "^7.9.1" + "@thi.ng/random": "^2.4.8", + "@thi.ng/transducers": "^7.9.2" }, "files": [ "*.js", diff --git a/packages/transducers-fsm/CHANGELOG.md b/packages/transducers-fsm/CHANGELOG.md index b1f0850128..68aa398e9c 100644 --- a/packages/transducers-fsm/CHANGELOG.md +++ b/packages/transducers-fsm/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.1.73](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-fsm@1.1.72...@thi.ng/transducers-fsm@1.1.73) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/transducers-fsm + + + + + # [1.1.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-fsm@1.0.19...@thi.ng/transducers-fsm@1.1.0) (2019-07-07) ### Features diff --git a/packages/transducers-fsm/package.json b/packages/transducers-fsm/package.json index ea0addc0b7..ff796399d9 100644 --- a/packages/transducers-fsm/package.json +++ b/packages/transducers-fsm/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/transducers-fsm", - "version": "1.1.72", + "version": "1.1.73", "description": "Transducer-based Finite State Machine transformer", "module": "./index.js", "main": "./lib/index.js", @@ -38,8 +38,8 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/transducers": "^7.9.1" + "@thi.ng/api": "^7.2.0", + "@thi.ng/transducers": "^7.9.2" }, "files": [ "*.js", diff --git a/packages/transducers-hdom/CHANGELOG.md b/packages/transducers-hdom/CHANGELOG.md index abac55acff..75a2384580 100644 --- a/packages/transducers-hdom/CHANGELOG.md +++ b/packages/transducers-hdom/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.0.105](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-hdom@2.0.104...@thi.ng/transducers-hdom@2.0.105) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/transducers-hdom + + + + + # [2.0.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-hdom@1.2.16...@thi.ng/transducers-hdom@2.0.0) (2019-01-21) ### Build System diff --git a/packages/transducers-hdom/package.json b/packages/transducers-hdom/package.json index 8ae33ba1df..1e19eca3f4 100644 --- a/packages/transducers-hdom/package.json +++ b/packages/transducers-hdom/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/transducers-hdom", - "version": "2.0.104", + "version": "2.0.105", "description": "Transducer based UI updater for @thi.ng/hdom", "module": "./index.js", "main": "./lib/index.js", @@ -38,9 +38,9 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/hdom": "^8.2.31", - "@thi.ng/hiccup": "^3.6.21", - "@thi.ng/transducers": "^7.9.1" + "@thi.ng/hdom": "^8.2.32", + "@thi.ng/hiccup": "^3.6.22", + "@thi.ng/transducers": "^7.9.2" }, "files": [ "*.js", diff --git a/packages/transducers-patch/CHANGELOG.md b/packages/transducers-patch/CHANGELOG.md index 5950dd97d7..fb1dfba02b 100644 --- a/packages/transducers-patch/CHANGELOG.md +++ b/packages/transducers-patch/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.2.30](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-patch@0.2.29...@thi.ng/transducers-patch@0.2.30) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/transducers-patch + + + + + # [0.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-patch@0.1.33...@thi.ng/transducers-patch@0.2.0) (2020-12-22) diff --git a/packages/transducers-patch/package.json b/packages/transducers-patch/package.json index 7b3978b9c4..2d5010ff06 100644 --- a/packages/transducers-patch/package.json +++ b/packages/transducers-patch/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/transducers-patch", - "version": "0.2.29", + "version": "0.2.30", "description": "Reducers for patch-based, immutable-by-default array & object editing", "module": "./index.js", "main": "./lib/index.js", @@ -38,11 +38,11 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/checks": "^2.9.10", + "@thi.ng/api": "^7.2.0", + "@thi.ng/checks": "^2.9.11", "@thi.ng/errors": "^1.3.4", - "@thi.ng/paths": "^4.2.13", - "@thi.ng/transducers": "^7.9.1" + "@thi.ng/paths": "^4.2.14", + "@thi.ng/transducers": "^7.9.2" }, "files": [ "*.js", diff --git a/packages/transducers-stats/CHANGELOG.md b/packages/transducers-stats/CHANGELOG.md index 9329b12832..f8c15bff65 100644 --- a/packages/transducers-stats/CHANGELOG.md +++ b/packages/transducers-stats/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.1.74](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-stats@1.1.73...@thi.ng/transducers-stats@1.1.74) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/transducers-stats + + + + + # [1.1.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-stats@1.0.19...@thi.ng/transducers-stats@1.1.0) (2019-07-07) ### Features diff --git a/packages/transducers-stats/package.json b/packages/transducers-stats/package.json index 4156a40ea8..b4e8e8ddd2 100644 --- a/packages/transducers-stats/package.json +++ b/packages/transducers-stats/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/transducers-stats", - "version": "1.1.73", + "version": "1.1.74", "description": "Transducers for statistical / technical analysis", "module": "./index.js", "main": "./lib/index.js", @@ -38,10 +38,10 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/checks": "^2.9.10", - "@thi.ng/dcons": "^2.3.33", + "@thi.ng/checks": "^2.9.11", + "@thi.ng/dcons": "^2.3.34", "@thi.ng/errors": "^1.3.4", - "@thi.ng/transducers": "^7.9.1" + "@thi.ng/transducers": "^7.9.2" }, "files": [ "*.js", diff --git a/packages/transducers/CHANGELOG.md b/packages/transducers/CHANGELOG.md index 84d9a06ee7..8d357fea85 100644 --- a/packages/transducers/CHANGELOG.md +++ b/packages/transducers/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [7.9.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers@7.9.1...@thi.ng/transducers@7.9.2) (2021-09-03) + + +### Bug Fixes + +* **transducers:** fix [#310](https://github.com/thi-ng/umbrella/issues/310), update flatten/flattenWith ([bfbd726](https://github.com/thi-ng/umbrella/commit/bfbd7269fe506c0f40c109f1701a1ea50dc944e9)) + + + + + ## [7.9.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers@7.9.0...@thi.ng/transducers@7.9.1) (2021-08-19) diff --git a/packages/transducers/package.json b/packages/transducers/package.json index 2c90bb133f..fbaff57e62 100644 --- a/packages/transducers/package.json +++ b/packages/transducers/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/transducers", - "version": "7.9.1", + "version": "7.9.2", "description": "Lightweight transducer implementations for ES6 / TypeScript", "module": "./index.js", "main": "./lib/index.js", @@ -38,14 +38,14 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/arrays": "^1.0.2", - "@thi.ng/checks": "^2.9.10", - "@thi.ng/compare": "^1.3.33", - "@thi.ng/compose": "^1.4.35", + "@thi.ng/api": "^7.2.0", + "@thi.ng/arrays": "^1.0.3", + "@thi.ng/checks": "^2.9.11", + "@thi.ng/compare": "^1.3.34", + "@thi.ng/compose": "^1.4.36", "@thi.ng/errors": "^1.3.4", - "@thi.ng/math": "^4.0.5", - "@thi.ng/random": "^2.4.7" + "@thi.ng/math": "^4.0.6", + "@thi.ng/random": "^2.4.8" }, "files": [ "*.js", diff --git a/packages/vclock/CHANGELOG.md b/packages/vclock/CHANGELOG.md index d47f51dc9f..405f25674d 100644 --- a/packages/vclock/CHANGELOG.md +++ b/packages/vclock/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.16](https://github.com/thi-ng/umbrella/compare/@thi.ng/vclock@0.1.15...@thi.ng/vclock@0.1.16) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/vclock + + + + + # 0.1.0 (2020-11-26) diff --git a/packages/vclock/package.json b/packages/vclock/package.json index 0aa39c60b7..23c2ac866f 100644 --- a/packages/vclock/package.json +++ b/packages/vclock/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/vclock", - "version": "0.1.15", + "version": "0.1.16", "description": "Vector clock functions for synchronizing distributed states & processes", "module": "./index.js", "main": "./lib/index.js", @@ -38,7 +38,7 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9" + "@thi.ng/api": "^7.2.0" }, "files": [ "*.js", diff --git a/packages/vector-pools/CHANGELOG.md b/packages/vector-pools/CHANGELOG.md index 57ce578256..285e9789b7 100644 --- a/packages/vector-pools/CHANGELOG.md +++ b/packages/vector-pools/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.0.25](https://github.com/thi-ng/umbrella/compare/@thi.ng/vector-pools@2.0.24...@thi.ng/vector-pools@2.0.25) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/vector-pools + + + + + # [2.0.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/vector-pools@1.0.57...@thi.ng/vector-pools@2.0.0) (2021-02-20) diff --git a/packages/vector-pools/package.json b/packages/vector-pools/package.json index df2fe19886..8e8f86a6b1 100644 --- a/packages/vector-pools/package.json +++ b/packages/vector-pools/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/vector-pools", - "version": "2.0.24", + "version": "2.0.25", "description": "Data structures for managing & working with strided, memory mapped vectors", "module": "./index.js", "main": "./lib/index.js", @@ -38,12 +38,12 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/binary": "^2.2.10", - "@thi.ng/checks": "^2.9.10", - "@thi.ng/malloc": "^5.0.13", - "@thi.ng/transducers": "^7.9.1", - "@thi.ng/vectors": "^6.1.2" + "@thi.ng/api": "^7.2.0", + "@thi.ng/binary": "^2.2.11", + "@thi.ng/checks": "^2.9.11", + "@thi.ng/malloc": "^5.0.14", + "@thi.ng/transducers": "^7.9.2", + "@thi.ng/vectors": "^6.2.0" }, "files": [ "*.js", diff --git a/packages/vectors/CHANGELOG.md b/packages/vectors/CHANGELOG.md index ef8e7a3def..c9645f06b5 100644 --- a/packages/vectors/CHANGELOG.md +++ b/packages/vectors/CHANGELOG.md @@ -3,6 +3,33 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/vectors@6.1.2...@thi.ng/vectors@6.2.0) (2021-09-03) + + +### Bug Fixes + +* **vectors:** add correct type for setNS() ([3817d65](https://github.com/thi-ng/umbrella/commit/3817d6562fc9ab749f1dde25d57e8108c91ebefc)) + + +### Features + +* **vectors:** add covariance(), correlation() fns ([b8d661d](https://github.com/thi-ng/umbrella/commit/b8d661dadebb725868fe48650e6461567706e47b)) +* **vectors:** add formatter support ([2bbb54e](https://github.com/thi-ng/umbrella/commit/2bbb54ee322bd3b22f73e36d430c4477fd2a25cd)) +* **vectors:** add generic strided dot product ([9c34793](https://github.com/thi-ng/umbrella/commit/9c34793950e9cb831dee46d5dbbc19b0dfb982df)) +* **vectors:** add new distance metrics ([24aa2f4](https://github.com/thi-ng/umbrella/commit/24aa2f43060ad2030797c6de031437a65ab783da)) +* **vectors:** add new module re-exports ([92e7f73](https://github.com/thi-ng/umbrella/commit/92e7f730741b09018dae92e4428fe635b02125ab)) +* **vectors:** add statistics related vector ops ([d6507ad](https://github.com/thi-ng/umbrella/commit/d6507ad8a3821fd2839a6c0d34d7d254d81790de)) +* **vectors:** add strided versions of various ops ([cbd9576](https://github.com/thi-ng/umbrella/commit/cbd95760715d8fbd1d2b974f87c0cf80db08bbb5)) + + +### Performance Improvements + +* **vectors:** update standardize() ([e87b979](https://github.com/thi-ng/umbrella/commit/e87b979d54026f3a104762fac30105e51f93eef5)) + + + + + # [6.1.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/vectors@6.0.7...@thi.ng/vectors@6.1.0) (2021-08-17) diff --git a/packages/vectors/package.json b/packages/vectors/package.json index f20bf73141..ba38d33892 100644 --- a/packages/vectors/package.json +++ b/packages/vectors/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/vectors", - "version": "6.1.2", + "version": "6.2.0", "description": "Optimized 2d/3d/4d and arbitrary length vector operations", "module": "./index.js", "main": "./lib/index.js", @@ -38,15 +38,15 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/binary": "^2.2.10", - "@thi.ng/checks": "^2.9.10", + "@thi.ng/api": "^7.2.0", + "@thi.ng/binary": "^2.2.11", + "@thi.ng/checks": "^2.9.11", "@thi.ng/equiv": "^1.0.45", "@thi.ng/errors": "^1.3.4", - "@thi.ng/math": "^4.0.5", - "@thi.ng/memoize": "^2.1.20", - "@thi.ng/random": "^2.4.7", - "@thi.ng/transducers": "^7.9.1" + "@thi.ng/math": "^4.0.6", + "@thi.ng/memoize": "^2.1.21", + "@thi.ng/random": "^2.4.8", + "@thi.ng/transducers": "^7.9.2" }, "files": [ "*.js", diff --git a/packages/viz/CHANGELOG.md b/packages/viz/CHANGELOG.md index d072e4e260..d356314e25 100644 --- a/packages/viz/CHANGELOG.md +++ b/packages/viz/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.2.42](https://github.com/thi-ng/umbrella/compare/@thi.ng/viz@0.2.41...@thi.ng/viz@0.2.42) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/viz + + + + + ## [0.2.41](https://github.com/thi-ng/umbrella/compare/@thi.ng/viz@0.2.40...@thi.ng/viz@0.2.41) (2021-08-22) **Note:** Version bump only for package @thi.ng/viz diff --git a/packages/viz/package.json b/packages/viz/package.json index fe844730b2..9d18e97255 100644 --- a/packages/viz/package.json +++ b/packages/viz/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/viz", - "version": "0.2.41", + "version": "0.2.42", "description": "Declarative, functional & multi-format data visualization toolkit based around @thi.ng/hiccup", "module": "./index.js", "main": "./lib/index.js", @@ -44,16 +44,16 @@ "tool:tags": "ts-node -P tools/tsconfig.json tools/tagcloud.ts" }, "devDependencies": { - "@thi.ng/date": "^1.0.5" + "@thi.ng/date": "^1.0.6" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/arrays": "^1.0.2", - "@thi.ng/associative": "^5.2.15", - "@thi.ng/checks": "^2.9.10", - "@thi.ng/math": "^4.0.5", - "@thi.ng/strings": "^2.1.6", - "@thi.ng/transducers": "^7.9.1" + "@thi.ng/api": "^7.2.0", + "@thi.ng/arrays": "^1.0.3", + "@thi.ng/associative": "^5.2.16", + "@thi.ng/checks": "^2.9.11", + "@thi.ng/math": "^4.0.6", + "@thi.ng/strings": "^2.1.7", + "@thi.ng/transducers": "^7.9.2" }, "files": [ "*.js", diff --git a/packages/webgl-msdf/CHANGELOG.md b/packages/webgl-msdf/CHANGELOG.md index 083164e817..c271d096ec 100644 --- a/packages/webgl-msdf/CHANGELOG.md +++ b/packages/webgl-msdf/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl-msdf@1.0.7...@thi.ng/webgl-msdf@1.0.8) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/webgl-msdf + + + + + ## [1.0.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl-msdf@1.0.6...@thi.ng/webgl-msdf@1.0.7) (2021-08-22) **Note:** Version bump only for package @thi.ng/webgl-msdf diff --git a/packages/webgl-msdf/package.json b/packages/webgl-msdf/package.json index 0e1a7a586f..771ca23279 100644 --- a/packages/webgl-msdf/package.json +++ b/packages/webgl-msdf/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/webgl-msdf", - "version": "1.0.7", + "version": "1.0.8", "description": "Multi-channel SDF font rendering & basic text layout for WebGL", "module": "./index.js", "main": "./lib/index.js", @@ -38,12 +38,12 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/shader-ast": "^0.10.3", - "@thi.ng/transducers": "^7.9.1", - "@thi.ng/vector-pools": "^2.0.24", - "@thi.ng/vectors": "^6.1.2", - "@thi.ng/webgl": "^5.0.13" + "@thi.ng/api": "^7.2.0", + "@thi.ng/shader-ast": "^0.10.4", + "@thi.ng/transducers": "^7.9.2", + "@thi.ng/vector-pools": "^2.0.25", + "@thi.ng/vectors": "^6.2.0", + "@thi.ng/webgl": "^5.0.14" }, "files": [ "*.js", diff --git a/packages/webgl-shadertoy/CHANGELOG.md b/packages/webgl-shadertoy/CHANGELOG.md index 537d966634..f46695d16f 100644 --- a/packages/webgl-shadertoy/CHANGELOG.md +++ b/packages/webgl-shadertoy/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.2.91](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl-shadertoy@0.2.90...@thi.ng/webgl-shadertoy@0.2.91) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/webgl-shadertoy + + + + + ## [0.2.90](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl-shadertoy@0.2.89...@thi.ng/webgl-shadertoy@0.2.90) (2021-08-22) **Note:** Version bump only for package @thi.ng/webgl-shadertoy diff --git a/packages/webgl-shadertoy/package.json b/packages/webgl-shadertoy/package.json index 95ecc354ef..eceadc834e 100644 --- a/packages/webgl-shadertoy/package.json +++ b/packages/webgl-shadertoy/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/webgl-shadertoy", - "version": "0.2.90", + "version": "0.2.91", "description": "Basic WebGL scaffolding for running interactive fragment shaders via @thi.ng/shader-ast", "module": "./index.js", "main": "./lib/index.js", @@ -38,10 +38,10 @@ "pub": "yarn build && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/shader-ast": "^0.10.3", - "@thi.ng/shader-ast-glsl": "^0.2.47", - "@thi.ng/webgl": "^5.0.13" + "@thi.ng/api": "^7.2.0", + "@thi.ng/shader-ast": "^0.10.4", + "@thi.ng/shader-ast-glsl": "^0.2.48", + "@thi.ng/webgl": "^5.0.14" }, "files": [ "*.js", diff --git a/packages/webgl/CHANGELOG.md b/packages/webgl/CHANGELOG.md index bba42215e7..e438e3c356 100644 --- a/packages/webgl/CHANGELOG.md +++ b/packages/webgl/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.14](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl@5.0.13...@thi.ng/webgl@5.0.14) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/webgl + + + + + ## [5.0.13](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl@5.0.12...@thi.ng/webgl@5.0.13) (2021-08-22) **Note:** Version bump only for package @thi.ng/webgl diff --git a/packages/webgl/package.json b/packages/webgl/package.json index 862409caf6..83b3e2f4ab 100644 --- a/packages/webgl/package.json +++ b/packages/webgl/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/webgl", - "version": "5.0.13", + "version": "5.0.14", "description": "WebGL & GLSL abstraction layer", "module": "./index.js", "main": "./lib/index.js", @@ -39,20 +39,20 @@ }, "dependencies": { "@thi.ng/adapt-dpi": "^1.0.23", - "@thi.ng/api": "^7.1.9", - "@thi.ng/associative": "^5.2.15", - "@thi.ng/checks": "^2.9.10", + "@thi.ng/api": "^7.2.0", + "@thi.ng/associative": "^5.2.16", + "@thi.ng/checks": "^2.9.11", "@thi.ng/equiv": "^1.0.45", "@thi.ng/errors": "^1.3.4", - "@thi.ng/matrices": "^1.0.4", - "@thi.ng/memoize": "^2.1.20", - "@thi.ng/pixel": "^1.0.4", - "@thi.ng/shader-ast": "^0.10.3", - "@thi.ng/shader-ast-glsl": "^0.2.47", - "@thi.ng/shader-ast-stdlib": "^0.9.3", - "@thi.ng/transducers": "^7.9.1", - "@thi.ng/vector-pools": "^2.0.24", - "@thi.ng/vectors": "^6.1.2" + "@thi.ng/matrices": "^1.0.5", + "@thi.ng/memoize": "^2.1.21", + "@thi.ng/pixel": "^1.0.5", + "@thi.ng/shader-ast": "^0.10.4", + "@thi.ng/shader-ast-glsl": "^0.2.48", + "@thi.ng/shader-ast-stdlib": "^0.9.4", + "@thi.ng/transducers": "^7.9.2", + "@thi.ng/vector-pools": "^2.0.25", + "@thi.ng/vectors": "^6.2.0" }, "files": [ "*.js", diff --git a/packages/zipper/CHANGELOG.md b/packages/zipper/CHANGELOG.md index 7dc5672619..76ac81c44d 100644 --- a/packages/zipper/CHANGELOG.md +++ b/packages/zipper/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/zipper@1.0.2...@thi.ng/zipper@1.0.3) (2021-09-03) + +**Note:** Version bump only for package @thi.ng/zipper + + + + + # 0.1.0 (2019-11-30) ### Features diff --git a/packages/zipper/package.json b/packages/zipper/package.json index 5fe69cf483..e8b65dd51c 100644 --- a/packages/zipper/package.json +++ b/packages/zipper/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/zipper", - "version": "1.0.2", + "version": "1.0.3", "description": "Functional tree editing, manipulation & navigation", "module": "./index.js", "main": "./lib/index.js", @@ -38,9 +38,9 @@ "pub": "yarn build:release && yarn publish --access public" }, "dependencies": { - "@thi.ng/api": "^7.1.9", - "@thi.ng/arrays": "^1.0.2", - "@thi.ng/checks": "^2.9.10" + "@thi.ng/api": "^7.2.0", + "@thi.ng/arrays": "^1.0.3", + "@thi.ng/checks": "^2.9.11" }, "files": [ "*.js",