From 722bf3e3a368c62575faff26695326dc72954d6d Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Sun, 31 May 2020 20:54:11 +0100 Subject: [PATCH 1/6] feat(api): add deref(), isDeref() fns & MaybeDeref (cherry picked from commit 2ab46adee629bf06d064bdcd5c064f7fcc1e7433) --- packages/api/src/api/deref.ts | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/packages/api/src/api/deref.ts b/packages/api/src/api/deref.ts index 4923314268..16a34cd437 100644 --- a/packages/api/src/api/deref.ts +++ b/packages/api/src/api/deref.ts @@ -10,6 +10,8 @@ export interface IDeref { deref(): T; } +export type MaybeDeref = IDeref | T; + /** * If `T` is a {@link IDeref}, returns its value type or else `T`. */ @@ -40,3 +42,19 @@ export type DerefedKeys< > = { [P in K]: Derefed; }; + +/** + * Returns true iff `x` implements {@link IDeref}. + * + * @param x + */ +export const isDeref = (x: any): x is IDeref => + x != null && typeof x["deref"] === "function"; + +/** + * If `x` implements {@link IDeref}, returns its wrapped value, else + * returns `x` itself. + * + * @param x - + */ +export const deref = (x: MaybeDeref) => (isDeref(x) ? x.deref() : x); From 13f4184f755fadb0a585b7e443c1218a7e2df5db Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Sun, 31 May 2020 20:55:56 +0100 Subject: [PATCH 2/6] feat(transducers): add IDeref support slidingWindow() (cherry picked from commit c75175689544f172acde856b4261ca9dc128d1dd) --- .../transducers/src/xform/sliding-window.ts | 25 +++++++++++-------- 1 file changed, 15 insertions(+), 10 deletions(-) diff --git a/packages/transducers/src/xform/sliding-window.ts b/packages/transducers/src/xform/sliding-window.ts index 922ff6c9cd..9bac4c785d 100644 --- a/packages/transducers/src/xform/sliding-window.ts +++ b/packages/transducers/src/xform/sliding-window.ts @@ -1,6 +1,7 @@ +import { deref, MaybeDeref } from "@thi.ng/api"; +import type { Reducer, Transducer } from "../api"; import { compR } from "../func/compr"; import { $iter } from "../iterator"; -import type { Reducer, Transducer } from "../api"; /** * Sliding window transducer, similar to `partition(size, 1)`, but @@ -8,6 +9,11 @@ import type { Reducer, Transducer } from "../api"; * true (default). Each emitted window is a shallow copy of the internal * accumulation buffer. * + * @remarks + * If `size` is implements {@link IDeref}, the window size will be + * re-evaluated for each new input and therefore can be used as + * mechanism to dynamically adjust the window size. + * * @example * ```ts * [...window(3, range(5))] @@ -22,33 +28,32 @@ import type { Reducer, Transducer } from "../api"; * @param src - */ export function slidingWindow( - size: number, + size: MaybeDeref, partial?: boolean ): Transducer; export function slidingWindow( - size: number, + size: MaybeDeref, src: Iterable ): IterableIterator; export function slidingWindow( - size: number, + size: MaybeDeref, partial: boolean, src: Iterable ): IterableIterator; export function slidingWindow(...args: any[]): any { const iter = $iter(slidingWindow, args); - if (iter) { - return iter; - } - const size: number = args[0]; + if (iter) return iter; + const size: MaybeDeref = args[0]; const partial: boolean = args[1] !== false; return (rfn: Reducer) => { const reduce = rfn[2]; let buf: T[] = []; return compR(rfn, (acc, x: T) => { buf.push(x); - if (partial || buf.length === size) { + const _size = deref(size); + if (partial || buf.length >= _size) { acc = reduce(acc, buf); - buf = buf.slice(buf.length === size ? 1 : 0); + buf = buf.slice(buf.length >= _size ? 1 : 0, _size); } return acc; }); From 2c818496ffa3c71d0c92320a5f1cbb1786255af2 Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Sun, 31 May 2020 21:34:05 +0100 Subject: [PATCH 3/6] refactor(webgl): update deref() uniform handling --- packages/webgl/src/shader.ts | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/packages/webgl/src/shader.ts b/packages/webgl/src/shader.ts index 3988da6e75..8eadf5e981 100644 --- a/packages/webgl/src/shader.ts +++ b/packages/webgl/src/shader.ts @@ -1,7 +1,6 @@ -import type { Fn3, IDeref, IObjectOf } from "@thi.ng/api"; +import { deref, Fn3, IObjectOf } from "@thi.ng/api"; import { existsAndNotNull, - implementsFunction, isArray, isBoolean, isFunction, @@ -122,11 +121,7 @@ export class Shader implements IShader { const u = shaderUnis[id]; if (u) { let val = specUnis[id]; - val = isFunction(val) - ? val(shaderUnis, specUnis) - : implementsFunction(val, "deref") - ? (>val).deref() - : val; + val = isFunction(val) ? val(shaderUnis, specUnis) : deref(val); // console.log(id, val); u.setter(val); } else { From cecd14e5aab9aeee65b1822ffd8395f5f73fed53 Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Sun, 31 May 2020 21:34:36 +0100 Subject: [PATCH 4/6] docs: update readmes --- packages/api/README.md | 2 +- packages/transducers/README.md | 2 +- packages/webgl/README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/api/README.md b/packages/api/README.md index d908dc6152..954b235a91 100644 --- a/packages/api/README.md +++ b/packages/api/README.md @@ -52,7 +52,7 @@ yarn add @thi.ng/api ``` -Package sizes (gzipped, pre-treeshake): ESM: 2.01 KB / CJS: 2.14 KB / UMD: 2.12 KB +Package sizes (gzipped, pre-treeshake): ESM: 2.05 KB / CJS: 2.19 KB / UMD: 2.16 KB ## Dependencies diff --git a/packages/transducers/README.md b/packages/transducers/README.md index ef68667cb5..fb7f99c596 100644 --- a/packages/transducers/README.md +++ b/packages/transducers/README.md @@ -151,7 +151,7 @@ yarn add @thi.ng/transducers ``` -Package sizes (gzipped, pre-treeshake): ESM: 7.97 KB / CJS: 8.49 KB / UMD: 7.67 KB +Package sizes (gzipped, pre-treeshake): ESM: 7.98 KB / CJS: 8.50 KB / UMD: 7.71 KB ## Dependencies diff --git a/packages/webgl/README.md b/packages/webgl/README.md index 1e1ef13dab..5e2115dbc6 100644 --- a/packages/webgl/README.md +++ b/packages/webgl/README.md @@ -89,7 +89,7 @@ yarn add @thi.ng/webgl ``` -Package sizes (gzipped, pre-treeshake): ESM: 11.29 KB / CJS: 11.45 KB / UMD: 11.28 KB +Package sizes (gzipped, pre-treeshake): ESM: 11.27 KB / CJS: 11.44 KB / UMD: 11.27 KB ## Dependencies From 2f3263a2087034dfd07acfbe61555946d4aebf6c Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Mon, 1 Jun 2020 01:02:05 +0100 Subject: [PATCH 5/6] docs: update WIP pkg list --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2e24635527..fc59088fac 100644 --- a/README.md +++ b/README.md @@ -110,11 +110,11 @@ fairly detailed overview for contributors here: ## Projects - + +- [@thi.ng/hdom2020](https://github.com/thi-ng/umbrella/tree/feature/hdom2020/packages/hdom2020) - Diff-less, reactive version of thi.ng/hdom ### Fundamentals From a25c4eed5fba2c7d1fddb02dd706bae534affc93 Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Mon, 1 Jun 2020 01:27:46 +0100 Subject: [PATCH 6/6] Publish - @thi.ng/adjacency@0.1.46 - @thi.ng/api@6.11.0 - @thi.ng/arrays@0.6.8 - @thi.ng/associative@4.0.10 - @thi.ng/atom@4.1.9 - @thi.ng/bencode@0.3.25 - @thi.ng/bitfield@0.3.10 - @thi.ng/cache@1.0.45 - @thi.ng/color@1.2.1 - @thi.ng/compare@1.3.7 - @thi.ng/compose@1.4.8 - @thi.ng/csp@1.1.25 - @thi.ng/dcons@2.2.18 - @thi.ng/defmulti@1.2.16 - @thi.ng/dgraph-dot@0.1.10 - @thi.ng/dgraph@1.2.10 - @thi.ng/diff@3.2.22 - @thi.ng/dl-asset@0.3.10 - @thi.ng/dot@1.2.8 - @thi.ng/dsp-io-wav@0.1.15 - @thi.ng/dsp@2.0.17 - @thi.ng/dynvar@0.1.14 - @thi.ng/ecs@0.3.17 - @thi.ng/fsm@2.4.11 - @thi.ng/geom-accel@2.1.7 - @thi.ng/geom-api@1.0.19 - @thi.ng/geom-arc@0.2.30 - @thi.ng/geom-clip-line@1.0.17 - @thi.ng/geom-clip-poly@1.0.17 - @thi.ng/geom-closest-point@0.3.30 - @thi.ng/geom-hull@0.0.50 - @thi.ng/geom-io-obj@0.1.8 - @thi.ng/geom-isec@0.4.19 - @thi.ng/geom-isoline@0.1.48 - @thi.ng/geom-poly-utils@0.1.48 - @thi.ng/geom-resample@0.2.30 - @thi.ng/geom-splines@0.5.17 - @thi.ng/geom-subdiv-curve@0.1.47 - @thi.ng/geom-tessellate@0.2.30 - @thi.ng/geom-voronoi@0.1.48 - @thi.ng/geom@1.9.6 - @thi.ng/gp@0.1.18 - @thi.ng/grid-iterators@0.3.15 - @thi.ng/hdom-canvas@2.4.25 - @thi.ng/hdom-components@3.2.11 - @thi.ng/hdom-mock@1.1.27 - @thi.ng/hdom@8.0.27 - @thi.ng/heaps@1.2.15 - @thi.ng/hiccup-carbon-icons@1.0.39 - @thi.ng/hiccup-css@1.1.25 - @thi.ng/hiccup-markdown@1.2.14 - @thi.ng/hiccup-svg@3.4.21 - @thi.ng/hiccup@3.2.24 - @thi.ng/idgen@0.2.14 - @thi.ng/iges@1.1.32 - @thi.ng/imgui@0.2.19 - @thi.ng/interceptors@2.2.20 - @thi.ng/intervals@2.0.15 - @thi.ng/iterators@5.1.25 - @thi.ng/layout@0.1.12 - @thi.ng/leb128@1.0.19 - @thi.ng/lsys@0.2.45 - @thi.ng/malloc@4.1.16 - @thi.ng/matrices@0.6.17 - @thi.ng/memoize@2.0.12 - @thi.ng/mime@0.1.12 - @thi.ng/morton@2.0.14 - @thi.ng/parse@0.5.6 - @thi.ng/pixel@0.3.1 - @thi.ng/pointfree-lang@1.4.4 - @thi.ng/pointfree@2.0.5 - @thi.ng/poisson@1.1.1 - @thi.ng/porter-duff@0.1.20 - @thi.ng/ramp@0.1.19 - @thi.ng/random@1.4.10 - @thi.ng/range-coder@1.0.45 - @thi.ng/resolve-map@4.1.25 - @thi.ng/router@2.0.22 - @thi.ng/rstream-csp@2.0.23 - @thi.ng/rstream-dot@1.1.30 - @thi.ng/rstream-gestures@2.0.22 - @thi.ng/rstream-graph@3.2.23 - @thi.ng/rstream-log-file@0.1.45 - @thi.ng/rstream-log@3.1.30 - @thi.ng/rstream-query@1.1.30 - @thi.ng/rstream@4.3.4 - @thi.ng/sax@1.1.25 - @thi.ng/scenegraph@0.1.20 - @thi.ng/seq@0.2.14 - @thi.ng/sexpr@0.2.17 - @thi.ng/shader-ast-glsl@0.1.28 - @thi.ng/shader-ast-js@0.4.24 - @thi.ng/shader-ast-stdlib@0.3.21 - @thi.ng/shader-ast@0.3.22 - @thi.ng/simd@0.2.2 - @thi.ng/soa@0.1.21 - @thi.ng/sparse@0.1.41 - @thi.ng/strings@1.8.9 - @thi.ng/system@0.2.10 - @thi.ng/text-canvas@0.2.14 - @thi.ng/transducers-binary@0.5.15 - @thi.ng/transducers-fsm@1.1.25 - @thi.ng/transducers-hdom@2.0.54 - @thi.ng/transducers-patch@0.1.16 - @thi.ng/transducers-stats@1.1.25 - @thi.ng/transducers@6.7.0 - @thi.ng/vector-pools@1.0.30 - @thi.ng/vectors@4.4.2 - @thi.ng/webgl-msdf@0.1.34 - @thi.ng/webgl-shadertoy@0.2.21 - @thi.ng/webgl@1.0.16 - @thi.ng/zipper@0.1.16 --- packages/adjacency/CHANGELOG.md | 8 ++++ packages/adjacency/package.json | 12 +++--- packages/api/CHANGELOG.md | 11 ++++++ packages/api/package.json | 2 +- packages/arrays/CHANGELOG.md | 8 ++++ packages/arrays/package.json | 8 ++-- packages/associative/CHANGELOG.md | 8 ++++ packages/associative/package.json | 10 ++--- packages/atom/CHANGELOG.md | 8 ++++ packages/atom/package.json | 4 +- packages/bencode/CHANGELOG.md | 8 ++++ packages/bencode/package.json | 12 +++--- packages/bitfield/CHANGELOG.md | 8 ++++ packages/bitfield/package.json | 6 +-- packages/cache/CHANGELOG.md | 8 ++++ packages/cache/package.json | 8 ++-- packages/color/CHANGELOG.md | 8 ++++ packages/color/package.json | 14 +++---- 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 | 10 ++--- packages/dcons/CHANGELOG.md | 8 ++++ packages/dcons/package.json | 10 ++--- 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/dl-asset/CHANGELOG.md | 8 ++++ packages/dl-asset/package.json | 6 +-- packages/dot/CHANGELOG.md | 8 ++++ packages/dot/package.json | 4 +- packages/dsp-io-wav/CHANGELOG.md | 8 ++++ packages/dsp-io-wav/package.json | 8 ++-- packages/dsp/CHANGELOG.md | 8 ++++ packages/dsp/package.json | 6 +-- packages/dynvar/CHANGELOG.md | 8 ++++ packages/dynvar/package.json | 4 +- packages/ecs/CHANGELOG.md | 8 ++++ packages/ecs/package.json | 12 +++--- packages/fsm/CHANGELOG.md | 8 ++++ packages/fsm/package.json | 10 ++--- packages/geom-accel/CHANGELOG.md | 8 ++++ packages/geom-accel/package.json | 16 ++++---- packages/geom-api/CHANGELOG.md | 8 ++++ packages/geom-api/package.json | 6 +-- 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 | 4 +- 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-hull/CHANGELOG.md | 8 ++++ packages/geom-hull/package.json | 4 +- 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 | 10 ++--- 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 | 14 +++---- packages/geom/CHANGELOG.md | 8 ++++ packages/geom/package.json | 46 +++++++++++------------ packages/gp/CHANGELOG.md | 8 ++++ packages/gp/package.json | 10 ++--- packages/grid-iterators/CHANGELOG.md | 8 ++++ packages/grid-iterators/package.json | 10 ++--- packages/hdom-canvas/CHANGELOG.md | 8 ++++ packages/hdom-canvas/package.json | 12 +++--- packages/hdom-components/CHANGELOG.md | 8 ++++ packages/hdom-components/package.json | 8 ++-- packages/hdom-mock/CHANGELOG.md | 8 ++++ packages/hdom-mock/package.json | 6 +-- packages/hdom/CHANGELOG.md | 8 ++++ packages/hdom/package.json | 10 ++--- packages/heaps/CHANGELOG.md | 8 ++++ packages/heaps/package.json | 6 +-- 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 | 6 +-- packages/hiccup-markdown/CHANGELOG.md | 8 ++++ packages/hiccup-markdown/package.json | 16 ++++---- packages/hiccup-svg/CHANGELOG.md | 8 ++++ packages/hiccup-svg/package.json | 6 +-- packages/hiccup/CHANGELOG.md | 8 ++++ packages/hiccup/package.json | 4 +- packages/idgen/CHANGELOG.md | 8 ++++ packages/idgen/package.json | 4 +- packages/iges/CHANGELOG.md | 8 ++++ packages/iges/package.json | 12 +++--- packages/imgui/CHANGELOG.md | 8 ++++ packages/imgui/package.json | 18 ++++----- packages/interceptors/CHANGELOG.md | 8 ++++ packages/interceptors/package.json | 6 +-- packages/intervals/CHANGELOG.md | 8 ++++ packages/intervals/package.json | 4 +- packages/iterators/CHANGELOG.md | 8 ++++ packages/iterators/package.json | 6 +-- packages/layout/CHANGELOG.md | 8 ++++ packages/layout/package.json | 4 +- packages/leb128/CHANGELOG.md | 8 ++++ packages/leb128/package.json | 4 +- packages/lsys/CHANGELOG.md | 8 ++++ packages/lsys/package.json | 12 +++--- packages/malloc/CHANGELOG.md | 8 ++++ packages/malloc/package.json | 4 +- packages/matrices/CHANGELOG.md | 8 ++++ packages/matrices/package.json | 6 +-- 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 | 4 +- packages/parse/CHANGELOG.md | 8 ++++ packages/parse/package.json | 8 ++-- packages/pixel/CHANGELOG.md | 8 ++++ packages/pixel/package.json | 6 +-- packages/pointfree-lang/CHANGELOG.md | 8 ++++ packages/pointfree-lang/package.json | 6 +-- packages/pointfree/CHANGELOG.md | 8 ++++ packages/pointfree/package.json | 6 +-- packages/poisson/CHANGELOG.md | 8 ++++ packages/poisson/package.json | 10 ++--- packages/porter-duff/CHANGELOG.md | 8 ++++ packages/porter-duff/package.json | 4 +- packages/ramp/CHANGELOG.md | 8 ++++ packages/ramp/package.json | 12 +++--- packages/random/CHANGELOG.md | 8 ++++ packages/random/package.json | 4 +- packages/range-coder/CHANGELOG.md | 8 ++++ packages/range-coder/package.json | 4 +- packages/resolve-map/CHANGELOG.md | 8 ++++ packages/resolve-map/package.json | 4 +- packages/router/CHANGELOG.md | 8 ++++ packages/router/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 | 4 +- packages/rstream-gestures/CHANGELOG.md | 8 ++++ packages/rstream-gestures/package.json | 8 ++-- packages/rstream-graph/CHANGELOG.md | 8 ++++ packages/rstream-graph/package.json | 10 ++--- 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 | 8 ++-- packages/rstream-query/CHANGELOG.md | 8 ++++ packages/rstream-query/package.json | 12 +++--- packages/rstream/CHANGELOG.md | 8 ++++ packages/rstream/package.json | 10 ++--- packages/sax/CHANGELOG.md | 8 ++++ packages/sax/package.json | 8 ++-- packages/scenegraph/CHANGELOG.md | 8 ++++ packages/scenegraph/package.json | 8 ++-- packages/seq/CHANGELOG.md | 8 ++++ packages/seq/package.json | 4 +- packages/sexpr/CHANGELOG.md | 8 ++++ packages/sexpr/package.json | 6 +-- packages/shader-ast-glsl/CHANGELOG.md | 8 ++++ packages/shader-ast-glsl/package.json | 6 +-- packages/shader-ast-js/CHANGELOG.md | 8 ++++ packages/shader-ast-js/package.json | 12 +++--- 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 | 8 ++-- packages/simd/CHANGELOG.md | 8 ++++ packages/simd/package.json | 6 +-- packages/soa/CHANGELOG.md | 8 ++++ packages/soa/package.json | 8 ++-- 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 | 12 +++--- 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 | 6 +-- packages/transducers-stats/CHANGELOG.md | 8 ++++ packages/transducers-stats/package.json | 6 +-- packages/transducers/CHANGELOG.md | 11 ++++++ packages/transducers/package.json | 14 +++---- packages/vector-pools/CHANGELOG.md | 8 ++++ packages/vector-pools/package.json | 10 ++--- packages/vectors/CHANGELOG.md | 8 ++++ packages/vectors/package.json | 10 ++--- packages/webgl-msdf/CHANGELOG.md | 8 ++++ packages/webgl-msdf/package.json | 14 +++---- packages/webgl-shadertoy/CHANGELOG.md | 8 ++++ packages/webgl-shadertoy/package.json | 12 +++--- packages/webgl/CHANGELOG.md | 8 ++++ packages/webgl/package.json | 22 +++++------ packages/zipper/CHANGELOG.md | 8 ++++ packages/zipper/package.json | 6 +-- 224 files changed, 1351 insertions(+), 449 deletions(-) diff --git a/packages/adjacency/CHANGELOG.md b/packages/adjacency/CHANGELOG.md index 46f0301b23..df8bc69158 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. +## [0.1.46](https://github.com/thi-ng/umbrella/compare/@thi.ng/adjacency@0.1.45...@thi.ng/adjacency@0.1.46) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/adjacency + + + + + ## [0.1.45](https://github.com/thi-ng/umbrella/compare/@thi.ng/adjacency@0.1.44...@thi.ng/adjacency@0.1.45) (2020-05-29) **Note:** Version bump only for package @thi.ng/adjacency diff --git a/packages/adjacency/package.json b/packages/adjacency/package.json index 937b57ca37..a848a1b869 100644 --- a/packages/adjacency/package.json +++ b/packages/adjacency/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/adjacency", - "version": "0.1.45", + "version": "0.1.46", "description": "Sparse & bitwise adjacency matrices and related functions for directed & undirected graphs", "module": "./index.js", "main": "./lib/index.js", @@ -34,7 +34,7 @@ "devDependencies": { "@istanbuljs/nyc-config-typescript": "^1.0.1", "@microsoft/api-extractor": "^7.8.0", - "@thi.ng/vectors": "^4.4.1", + "@thi.ng/vectors": "^4.4.2", "@types/mocha": "^7.0.2", "@types/node": "^14.0.1", "mocha": "^7.1.2", @@ -44,12 +44,12 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", + "@thi.ng/api": "^6.11.0", "@thi.ng/binary": "^2.0.7", - "@thi.ng/bitfield": "^0.3.9", + "@thi.ng/bitfield": "^0.3.10", "@thi.ng/checks": "^2.7.0", - "@thi.ng/dcons": "^2.2.17", - "@thi.ng/sparse": "^0.1.40", + "@thi.ng/dcons": "^2.2.18", + "@thi.ng/sparse": "^0.1.41", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/api/CHANGELOG.md b/packages/api/CHANGELOG.md index 1c53f14627..268c565db5 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. +# [6.11.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/api@6.10.5...@thi.ng/api@6.11.0) (2020-06-01) + + +### Features + +* **api:** add deref(), isDeref() fns & MaybeDeref ([722bf3e](https://github.com/thi-ng/umbrella/commit/722bf3e3a368c62575faff26695326dc72954d6d)) + + + + + # [6.10.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/api@6.9.1...@thi.ng/api@6.10.0) (2020-04-06) diff --git a/packages/api/package.json b/packages/api/package.json index acd9542373..c2ee4bcc6e 100644 --- a/packages/api/package.json +++ b/packages/api/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/api", - "version": "6.10.5", + "version": "6.11.0", "description": "Common, generic types, interfaces & mixins", "module": "./index.js", "main": "./lib/index.js", diff --git a/packages/arrays/CHANGELOG.md b/packages/arrays/CHANGELOG.md index 795868952d..d59c65a9cc 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. +## [0.6.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/arrays@0.6.7...@thi.ng/arrays@0.6.8) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/arrays + + + + + # [0.6.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/arrays@0.5.6...@thi.ng/arrays@0.6.0) (2020-03-28) diff --git a/packages/arrays/package.json b/packages/arrays/package.json index 692858ac0f..acb06cca54 100644 --- a/packages/arrays/package.json +++ b/packages/arrays/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/arrays", - "version": "0.6.7", + "version": "0.6.8", "description": "Array / Arraylike utilities", "module": "./index.js", "main": "./lib/index.js", @@ -43,12 +43,12 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", + "@thi.ng/api": "^6.11.0", "@thi.ng/checks": "^2.7.0", - "@thi.ng/compare": "^1.3.6", + "@thi.ng/compare": "^1.3.7", "@thi.ng/equiv": "^1.0.23", "@thi.ng/errors": "^1.2.14", - "@thi.ng/random": "^1.4.9", + "@thi.ng/random": "^1.4.10", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/associative/CHANGELOG.md b/packages/associative/CHANGELOG.md index 03ea9cfea5..2ce6a78ec9 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. +## [4.0.10](https://github.com/thi-ng/umbrella/compare/@thi.ng/associative@4.0.9...@thi.ng/associative@4.0.10) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/associative + + + + + ## [4.0.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/associative@4.0.8...@thi.ng/associative@4.0.9) (2020-05-29) **Note:** Version bump only for package @thi.ng/associative diff --git a/packages/associative/package.json b/packages/associative/package.json index 5c02655b51..01f45df324 100644 --- a/packages/associative/package.json +++ b/packages/associative/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/associative", - "version": "4.0.9", + "version": "4.0.10", "description": "Alternative Map and Set implementations with customizable equality semantics & supporting operations", "module": "./index.js", "main": "./lib/index.js", @@ -43,14 +43,14 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", + "@thi.ng/api": "^6.11.0", "@thi.ng/binary": "^2.0.7", "@thi.ng/checks": "^2.7.0", - "@thi.ng/compare": "^1.3.6", - "@thi.ng/dcons": "^2.2.17", + "@thi.ng/compare": "^1.3.7", + "@thi.ng/dcons": "^2.2.18", "@thi.ng/equiv": "^1.0.23", "@thi.ng/errors": "^1.2.14", - "@thi.ng/transducers": "^6.6.0", + "@thi.ng/transducers": "^6.7.0", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/atom/CHANGELOG.md b/packages/atom/CHANGELOG.md index 2b2598f6e3..5b0467f97f 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.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/atom@4.1.8...@thi.ng/atom@4.1.9) (2020-06-01) + +**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 d93eb81126..fdc01fd913 100644 --- a/packages/atom/package.json +++ b/packages/atom/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/atom", - "version": "4.1.8", + "version": "4.1.9", "description": "Mutable wrappers for nested immutable values with optional undo/redo history and transaction support", "module": "./index.js", "main": "./lib/index.js", @@ -43,7 +43,7 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", + "@thi.ng/api": "^6.11.0", "@thi.ng/checks": "^2.7.0", "@thi.ng/equiv": "^1.0.23", "@thi.ng/errors": "^1.2.14", diff --git a/packages/bencode/CHANGELOG.md b/packages/bencode/CHANGELOG.md index 7693b88c5f..7bc17b3d69 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. +## [0.3.25](https://github.com/thi-ng/umbrella/compare/@thi.ng/bencode@0.3.24...@thi.ng/bencode@0.3.25) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/bencode + + + + + ## [0.3.24](https://github.com/thi-ng/umbrella/compare/@thi.ng/bencode@0.3.23...@thi.ng/bencode@0.3.24) (2020-05-29) **Note:** Version bump only for package @thi.ng/bencode diff --git a/packages/bencode/package.json b/packages/bencode/package.json index 6b885504c8..ec3e058a5d 100644 --- a/packages/bencode/package.json +++ b/packages/bencode/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/bencode", - "version": "0.3.24", + "version": "0.3.25", "description": "Bencode binary encoder / decoder with optional UTF8 encoding & floating point support", "module": "./index.js", "main": "./lib/index.js", @@ -43,13 +43,13 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", - "@thi.ng/arrays": "^0.6.7", + "@thi.ng/api": "^6.11.0", + "@thi.ng/arrays": "^0.6.8", "@thi.ng/checks": "^2.7.0", - "@thi.ng/defmulti": "^1.2.15", + "@thi.ng/defmulti": "^1.2.16", "@thi.ng/errors": "^1.2.14", - "@thi.ng/transducers": "^6.6.0", - "@thi.ng/transducers-binary": "^0.5.14", + "@thi.ng/transducers": "^6.7.0", + "@thi.ng/transducers-binary": "^0.5.15", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/bitfield/CHANGELOG.md b/packages/bitfield/CHANGELOG.md index 95646ea43f..71c7d7d0c6 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. +## [0.3.10](https://github.com/thi-ng/umbrella/compare/@thi.ng/bitfield@0.3.9...@thi.ng/bitfield@0.3.10) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/bitfield + + + + + # [0.3.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/bitfield@0.2.8...@thi.ng/bitfield@0.3.0) (2020-03-06) diff --git a/packages/bitfield/package.json b/packages/bitfield/package.json index 7b3b08bd76..83fd946f0d 100644 --- a/packages/bitfield/package.json +++ b/packages/bitfield/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/bitfield", - "version": "0.3.9", + "version": "0.3.10", "description": "1D / 2D bit field implementations", "module": "./index.js", "main": "./lib/index.js", @@ -43,9 +43,9 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", + "@thi.ng/api": "^6.11.0", "@thi.ng/binary": "^2.0.7", - "@thi.ng/strings": "^1.8.8", + "@thi.ng/strings": "^1.8.9", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/cache/CHANGELOG.md b/packages/cache/CHANGELOG.md index e80ab9a0a8..fd0cfbbc04 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.45](https://github.com/thi-ng/umbrella/compare/@thi.ng/cache@1.0.44...@thi.ng/cache@1.0.45) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/cache + + + + + ## [1.0.44](https://github.com/thi-ng/umbrella/compare/@thi.ng/cache@1.0.43...@thi.ng/cache@1.0.44) (2020-05-29) **Note:** Version bump only for package @thi.ng/cache diff --git a/packages/cache/package.json b/packages/cache/package.json index 218b1e24ae..a460c0dc83 100644 --- a/packages/cache/package.json +++ b/packages/cache/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/cache", - "version": "1.0.44", + "version": "1.0.45", "description": "In-memory cache implementations with ES6 Map-like API and different eviction strategies", "module": "./index.js", "main": "./lib/index.js", @@ -43,9 +43,9 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", - "@thi.ng/dcons": "^2.2.17", - "@thi.ng/transducers": "^6.6.0", + "@thi.ng/api": "^6.11.0", + "@thi.ng/dcons": "^2.2.18", + "@thi.ng/transducers": "^6.7.0", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/color/CHANGELOG.md b/packages/color/CHANGELOG.md index a6f8f9b176..e0a40802a6 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. +## [1.2.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/color@1.2.0...@thi.ng/color@1.2.1) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/color + + + + + # [1.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/color@1.1.21...@thi.ng/color@1.2.0) (2020-05-29) diff --git a/packages/color/package.json b/packages/color/package.json index b905a0eabe..2fb47cad83 100644 --- a/packages/color/package.json +++ b/packages/color/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/color", - "version": "1.2.0", + "version": "1.2.1", "description": "Array-based color ops, conversions, multi-color gradients, presets", "module": "./index.js", "main": "./lib/index.js", @@ -43,15 +43,15 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", + "@thi.ng/api": "^6.11.0", "@thi.ng/checks": "^2.7.0", - "@thi.ng/compose": "^1.4.7", - "@thi.ng/defmulti": "^1.2.15", + "@thi.ng/compose": "^1.4.8", + "@thi.ng/defmulti": "^1.2.16", "@thi.ng/errors": "^1.2.14", "@thi.ng/math": "^1.7.10", - "@thi.ng/strings": "^1.8.8", - "@thi.ng/transducers": "^6.6.0", - "@thi.ng/vectors": "^4.4.1", + "@thi.ng/strings": "^1.8.9", + "@thi.ng/transducers": "^6.7.0", + "@thi.ng/vectors": "^4.4.2", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/compare/CHANGELOG.md b/packages/compare/CHANGELOG.md index 8f224b9802..c22142d4ca 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.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/compare@1.3.6...@thi.ng/compare@1.3.7) (2020-06-01) + +**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 5d0f75556c..4a9c6e415e 100644 --- a/packages/compare/package.json +++ b/packages/compare/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/compare", - "version": "1.3.6", + "version": "1.3.7", "description": "Comparators with support for types implementing the @thi.ng/api/ICompare interface", "module": "./index.js", "main": "./lib/index.js", @@ -43,7 +43,7 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", + "@thi.ng/api": "^6.11.0", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/compose/CHANGELOG.md b/packages/compose/CHANGELOG.md index 9d7e5cac39..c9236a3b88 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.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/compose@1.4.7...@thi.ng/compose@1.4.8) (2020-06-01) + +**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 06e458eccc..fb1efe22ae 100644 --- a/packages/compose/package.json +++ b/packages/compose/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/compose", - "version": "1.4.7", + "version": "1.4.8", "description": "Optimized functional composition helpers", "module": "./index.js", "main": "./lib/index.js", @@ -43,7 +43,7 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", + "@thi.ng/api": "^6.11.0", "@thi.ng/errors": "^1.2.14", "tslib": "^1.12.0" }, diff --git a/packages/csp/CHANGELOG.md b/packages/csp/CHANGELOG.md index 1d9a002a26..267dfc650f 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.25](https://github.com/thi-ng/umbrella/compare/@thi.ng/csp@1.1.24...@thi.ng/csp@1.1.25) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/csp + + + + + ## [1.1.24](https://github.com/thi-ng/umbrella/compare/@thi.ng/csp@1.1.23...@thi.ng/csp@1.1.24) (2020-05-29) **Note:** Version bump only for package @thi.ng/csp diff --git a/packages/csp/package.json b/packages/csp/package.json index 747a750c3c..528374664d 100644 --- a/packages/csp/package.json +++ b/packages/csp/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/csp", - "version": "1.1.24", + "version": "1.1.25", "description": "ES6 promise based CSP primitives & operations", "module": "./index.js", "main": "./lib/index.js", @@ -47,12 +47,12 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", - "@thi.ng/arrays": "^0.6.7", + "@thi.ng/api": "^6.11.0", + "@thi.ng/arrays": "^0.6.8", "@thi.ng/checks": "^2.7.0", - "@thi.ng/dcons": "^2.2.17", + "@thi.ng/dcons": "^2.2.18", "@thi.ng/errors": "^1.2.14", - "@thi.ng/transducers": "^6.6.0", + "@thi.ng/transducers": "^6.7.0", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/dcons/CHANGELOG.md b/packages/dcons/CHANGELOG.md index f9007fda33..e64c8abba3 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.2.18](https://github.com/thi-ng/umbrella/compare/@thi.ng/dcons@2.2.17...@thi.ng/dcons@2.2.18) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/dcons + + + + + ## [2.2.17](https://github.com/thi-ng/umbrella/compare/@thi.ng/dcons@2.2.16...@thi.ng/dcons@2.2.17) (2020-05-29) **Note:** Version bump only for package @thi.ng/dcons diff --git a/packages/dcons/package.json b/packages/dcons/package.json index 98649788e4..65cbfbf357 100644 --- a/packages/dcons/package.json +++ b/packages/dcons/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/dcons", - "version": "2.2.17", + "version": "2.2.18", "description": "Double-linked list with comprehensive set of operations", "module": "./index.js", "main": "./lib/index.js", @@ -43,13 +43,13 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", + "@thi.ng/api": "^6.11.0", "@thi.ng/checks": "^2.7.0", - "@thi.ng/compare": "^1.3.6", + "@thi.ng/compare": "^1.3.7", "@thi.ng/equiv": "^1.0.23", "@thi.ng/errors": "^1.2.14", - "@thi.ng/random": "^1.4.9", - "@thi.ng/transducers": "^6.6.0", + "@thi.ng/random": "^1.4.10", + "@thi.ng/transducers": "^6.7.0", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/defmulti/CHANGELOG.md b/packages/defmulti/CHANGELOG.md index 65333f3a6a..d76eb52d3f 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.2.16](https://github.com/thi-ng/umbrella/compare/@thi.ng/defmulti@1.2.15...@thi.ng/defmulti@1.2.16) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/defmulti + + + + + # [1.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/defmulti@1.1.4...@thi.ng/defmulti@1.2.0) (2019-11-09) ### Features diff --git a/packages/defmulti/package.json b/packages/defmulti/package.json index 361d36d4f6..28cd46d3c2 100644 --- a/packages/defmulti/package.json +++ b/packages/defmulti/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/defmulti", - "version": "1.2.15", + "version": "1.2.16", "description": "Dynamic, extensible multiple dispatch via user supplied dispatch function.", "module": "./index.js", "main": "./lib/index.js", @@ -43,7 +43,7 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", + "@thi.ng/api": "^6.11.0", "@thi.ng/errors": "^1.2.14", "tslib": "^1.12.0" }, diff --git a/packages/dgraph-dot/CHANGELOG.md b/packages/dgraph-dot/CHANGELOG.md index a8062a39d2..f65360beec 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. +## [0.1.10](https://github.com/thi-ng/umbrella/compare/@thi.ng/dgraph-dot@0.1.9...@thi.ng/dgraph-dot@0.1.10) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/dgraph-dot + + + + + ## [0.1.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/dgraph-dot@0.1.8...@thi.ng/dgraph-dot@0.1.9) (2020-05-29) **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 e37899dc2a..ae05edd099 100644 --- a/packages/dgraph-dot/package.json +++ b/packages/dgraph-dot/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/dgraph-dot", - "version": "0.1.9", + "version": "0.1.10", "description": "Customizable Graphviz DOT serialization for @thi.ng/dgraph", "module": "./index.js", "main": "./lib/index.js", @@ -43,9 +43,9 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", - "@thi.ng/dgraph": "^1.2.9", - "@thi.ng/dot": "^1.2.7" + "@thi.ng/api": "^6.11.0", + "@thi.ng/dgraph": "^1.2.10", + "@thi.ng/dot": "^1.2.8" }, "files": [ "*.js", diff --git a/packages/dgraph/CHANGELOG.md b/packages/dgraph/CHANGELOG.md index bc97210c4e..2d1f184307 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.2.10](https://github.com/thi-ng/umbrella/compare/@thi.ng/dgraph@1.2.9...@thi.ng/dgraph@1.2.10) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/dgraph + + + + + ## [1.2.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/dgraph@1.2.8...@thi.ng/dgraph@1.2.9) (2020-05-29) **Note:** Version bump only for package @thi.ng/dgraph diff --git a/packages/dgraph/package.json b/packages/dgraph/package.json index 8b09d626ce..aff9f4b01a 100644 --- a/packages/dgraph/package.json +++ b/packages/dgraph/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/dgraph", - "version": "1.2.9", + "version": "1.2.10", "description": "Type-agnostic directed acyclic graph (DAG) & graph operations", "module": "./index.js", "main": "./lib/index.js", @@ -43,11 +43,11 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", - "@thi.ng/associative": "^4.0.9", + "@thi.ng/api": "^6.11.0", + "@thi.ng/associative": "^4.0.10", "@thi.ng/equiv": "^1.0.23", "@thi.ng/errors": "^1.2.14", - "@thi.ng/transducers": "^6.6.0", + "@thi.ng/transducers": "^6.7.0", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/diff/CHANGELOG.md b/packages/diff/CHANGELOG.md index b3ec0c3e0e..ce75f68685 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. +## [3.2.22](https://github.com/thi-ng/umbrella/compare/@thi.ng/diff@3.2.21...@thi.ng/diff@3.2.22) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/diff + + + + + ## [3.2.20](https://github.com/thi-ng/umbrella/compare/@thi.ng/diff@3.2.19...@thi.ng/diff@3.2.20) (2020-05-05) diff --git a/packages/diff/package.json b/packages/diff/package.json index 912e9a6fff..8163fc2516 100644 --- a/packages/diff/package.json +++ b/packages/diff/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/diff", - "version": "3.2.21", + "version": "3.2.22", "description": "Customizable diff implementations for arrays (sequential) & objects (associative), with or without linear edit logs", "module": "./index.js", "main": "./lib/index.js", @@ -42,7 +42,7 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", + "@thi.ng/api": "^6.11.0", "@thi.ng/equiv": "^1.0.23", "tslib": "^1.12.0" }, diff --git a/packages/dl-asset/CHANGELOG.md b/packages/dl-asset/CHANGELOG.md index 402cc59957..c4b8bf82e4 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. +## [0.3.10](https://github.com/thi-ng/umbrella/compare/@thi.ng/dl-asset@0.3.9...@thi.ng/dl-asset@0.3.10) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/dl-asset + + + + + # 0.3.0 (2020-02-26) diff --git a/packages/dl-asset/package.json b/packages/dl-asset/package.json index 8118087e7e..f9abed42d3 100644 --- a/packages/dl-asset/package.json +++ b/packages/dl-asset/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/dl-asset", - "version": "0.3.9", + "version": "0.3.10", "description": "Local asset download for web apps, with automatic MIME type detection", "module": "./index.js", "main": "./lib/index.js", @@ -43,9 +43,9 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", + "@thi.ng/api": "^6.11.0", "@thi.ng/checks": "^2.7.0", - "@thi.ng/mime": "^0.1.11", + "@thi.ng/mime": "^0.1.12", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/dot/CHANGELOG.md b/packages/dot/CHANGELOG.md index d1337f491f..48c0a61503 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.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/dot@1.2.7...@thi.ng/dot@1.2.8) (2020-06-01) + +**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 13c3c5c36c..d5ad525d05 100644 --- a/packages/dot/package.json +++ b/packages/dot/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/dot", - "version": "1.2.7", + "version": "1.2.8", "description": "Graphviz document abstraction & serialization to DOT format", "module": "./index.js", "main": "./lib/index.js", @@ -43,7 +43,7 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", + "@thi.ng/api": "^6.11.0", "@thi.ng/checks": "^2.7.0", "tslib": "^1.12.0" }, diff --git a/packages/dsp-io-wav/CHANGELOG.md b/packages/dsp-io-wav/CHANGELOG.md index 8cd44e6174..c7e32cf84d 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. +## [0.1.15](https://github.com/thi-ng/umbrella/compare/@thi.ng/dsp-io-wav@0.1.14...@thi.ng/dsp-io-wav@0.1.15) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/dsp-io-wav + + + + + ## [0.1.14](https://github.com/thi-ng/umbrella/compare/@thi.ng/dsp-io-wav@0.1.13...@thi.ng/dsp-io-wav@0.1.14) (2020-05-29) **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 53f4b685f9..5e66421f41 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": "0.1.14", + "version": "0.1.15", "description": "WAV file format generation", "module": "./index.js", "main": "./lib/index.js", @@ -43,10 +43,10 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", + "@thi.ng/api": "^6.11.0", "@thi.ng/binary": "^2.0.7", - "@thi.ng/transducers": "^6.6.0", - "@thi.ng/transducers-binary": "^0.5.14", + "@thi.ng/transducers": "^6.7.0", + "@thi.ng/transducers-binary": "^0.5.15", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/dsp/CHANGELOG.md b/packages/dsp/CHANGELOG.md index bf6b47ca23..4f56050a47 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. +## [2.0.17](https://github.com/thi-ng/umbrella/compare/@thi.ng/dsp@2.0.16...@thi.ng/dsp@2.0.17) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/dsp + + + + + ## [2.0.16](https://github.com/thi-ng/umbrella/compare/@thi.ng/dsp@2.0.15...@thi.ng/dsp@2.0.16) (2020-05-29) **Note:** Version bump only for package @thi.ng/dsp diff --git a/packages/dsp/package.json b/packages/dsp/package.json index 1c418ade54..ecdfb6b78f 100644 --- a/packages/dsp/package.json +++ b/packages/dsp/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/dsp", - "version": "2.0.16", + "version": "2.0.17", "description": "Composable signal generators, oscillators, filters, FFT, spectrum, windowing & related DSP utils", "module": "./index.js", "main": "./lib/index.js", @@ -43,10 +43,10 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", + "@thi.ng/api": "^6.11.0", "@thi.ng/checks": "^2.7.0", "@thi.ng/math": "^1.7.10", - "@thi.ng/transducers": "^6.6.0", + "@thi.ng/transducers": "^6.7.0", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/dynvar/CHANGELOG.md b/packages/dynvar/CHANGELOG.md index 0849bdf272..ea80b6390a 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.14](https://github.com/thi-ng/umbrella/compare/@thi.ng/dynvar@0.1.13...@thi.ng/dynvar@0.1.14) (2020-06-01) + +**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 028f6c4044..11dfd5f637 100644 --- a/packages/dynvar/package.json +++ b/packages/dynvar/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/dynvar", - "version": "0.1.13", + "version": "0.1.14", "description": "Dynamically scoped variable bindings", "module": "./index.js", "main": "./lib/index.js", @@ -43,7 +43,7 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", + "@thi.ng/api": "^6.11.0", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/ecs/CHANGELOG.md b/packages/ecs/CHANGELOG.md index 77cf1d30e5..eed17ff5aa 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.3.17](https://github.com/thi-ng/umbrella/compare/@thi.ng/ecs@0.3.16...@thi.ng/ecs@0.3.17) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/ecs + + + + + ## [0.3.16](https://github.com/thi-ng/umbrella/compare/@thi.ng/ecs@0.3.15...@thi.ng/ecs@0.3.16) (2020-05-29) **Note:** Version bump only for package @thi.ng/ecs diff --git a/packages/ecs/package.json b/packages/ecs/package.json index 4cfa0087d3..daf1b885f9 100644 --- a/packages/ecs/package.json +++ b/packages/ecs/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/ecs", - "version": "0.3.16", + "version": "0.3.17", "description": "Entity Component System based around typed arrays & sparse sets", "module": "./index.js", "main": "./lib/index.js", @@ -44,13 +44,13 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", - "@thi.ng/associative": "^4.0.9", + "@thi.ng/api": "^6.11.0", + "@thi.ng/associative": "^4.0.10", "@thi.ng/binary": "^2.0.7", "@thi.ng/checks": "^2.7.0", - "@thi.ng/dcons": "^2.2.17", - "@thi.ng/idgen": "^0.2.13", - "@thi.ng/transducers": "^6.6.0", + "@thi.ng/dcons": "^2.2.18", + "@thi.ng/idgen": "^0.2.14", + "@thi.ng/transducers": "^6.7.0", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/fsm/CHANGELOG.md b/packages/fsm/CHANGELOG.md index 6b7d16a6d9..0e37b64169 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.11](https://github.com/thi-ng/umbrella/compare/@thi.ng/fsm@2.4.10...@thi.ng/fsm@2.4.11) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/fsm + + + + + ## [2.4.10](https://github.com/thi-ng/umbrella/compare/@thi.ng/fsm@2.4.9...@thi.ng/fsm@2.4.10) (2020-05-29) **Note:** Version bump only for package @thi.ng/fsm diff --git a/packages/fsm/package.json b/packages/fsm/package.json index df985418bf..228fcb00fc 100644 --- a/packages/fsm/package.json +++ b/packages/fsm/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/fsm", - "version": "2.4.10", + "version": "2.4.11", "description": "Composable primitives for building declarative, transducer based Finite-State Machines & matchers for arbitrary data streams", "module": "./index.js", "main": "./lib/index.js", @@ -43,12 +43,12 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", - "@thi.ng/arrays": "^0.6.7", + "@thi.ng/api": "^6.11.0", + "@thi.ng/arrays": "^0.6.8", "@thi.ng/equiv": "^1.0.23", "@thi.ng/errors": "^1.2.14", - "@thi.ng/strings": "^1.8.8", - "@thi.ng/transducers": "^6.6.0", + "@thi.ng/strings": "^1.8.9", + "@thi.ng/transducers": "^6.7.0", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/geom-accel/CHANGELOG.md b/packages/geom-accel/CHANGELOG.md index 299c7f9a88..c7b4a76c54 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.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-accel@2.1.6...@thi.ng/geom-accel@2.1.7) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/geom-accel + + + + + ## [2.1.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-accel@2.1.5...@thi.ng/geom-accel@2.1.6) (2020-05-29) **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 85e4b8d24d..2f6d77c8df 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.6", + "version": "2.1.7", "description": "n-D spatial indexing data structures with a shared ES6 Map/Set-like API", "module": "./index.js", "main": "./lib/index.js", @@ -44,16 +44,16 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", - "@thi.ng/arrays": "^0.6.7", + "@thi.ng/api": "^6.11.0", + "@thi.ng/arrays": "^0.6.8", "@thi.ng/checks": "^2.7.0", "@thi.ng/equiv": "^1.0.23", - "@thi.ng/geom-api": "^1.0.18", - "@thi.ng/geom-isec": "^0.4.18", - "@thi.ng/heaps": "^1.2.14", + "@thi.ng/geom-api": "^1.0.19", + "@thi.ng/geom-isec": "^0.4.19", + "@thi.ng/heaps": "^1.2.15", "@thi.ng/math": "^1.7.10", - "@thi.ng/transducers": "^6.6.0", - "@thi.ng/vectors": "^4.4.1", + "@thi.ng/transducers": "^6.7.0", + "@thi.ng/vectors": "^4.4.2", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/geom-api/CHANGELOG.md b/packages/geom-api/CHANGELOG.md index e0423a3bc4..0daaeae944 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. +## [1.0.19](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-api@1.0.18...@thi.ng/geom-api@1.0.19) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/geom-api + + + + + ## [1.0.18](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-api@1.0.17...@thi.ng/geom-api@1.0.18) (2020-05-29) **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 35662acf88..41c4f8a511 100644 --- a/packages/geom-api/package.json +++ b/packages/geom-api/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-api", - "version": "1.0.18", + "version": "1.0.19", "description": "Shared type & interface declarations for @thi.ng/geom packages", "module": "./index.js", "main": "./lib/index.js", @@ -43,8 +43,8 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", - "@thi.ng/vectors": "^4.4.1", + "@thi.ng/api": "^6.11.0", + "@thi.ng/vectors": "^4.4.2", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/geom-arc/CHANGELOG.md b/packages/geom-arc/CHANGELOG.md index ef33f539a8..14c4e12ed8 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. +## [0.2.30](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-arc@0.2.29...@thi.ng/geom-arc@0.2.30) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/geom-arc + + + + + ## [0.2.29](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-arc@0.2.28...@thi.ng/geom-arc@0.2.29) (2020-05-29) **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 fe8409042a..4b373d4c6a 100644 --- a/packages/geom-arc/package.json +++ b/packages/geom-arc/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-arc", - "version": "0.2.29", + "version": "0.2.30", "description": "2D circular / elliptic arc operations", "module": "./index.js", "main": "./lib/index.js", @@ -44,10 +44,10 @@ }, "dependencies": { "@thi.ng/checks": "^2.7.0", - "@thi.ng/geom-api": "^1.0.18", - "@thi.ng/geom-resample": "^0.2.29", + "@thi.ng/geom-api": "^1.0.19", + "@thi.ng/geom-resample": "^0.2.30", "@thi.ng/math": "^1.7.10", - "@thi.ng/vectors": "^4.4.1", + "@thi.ng/vectors": "^4.4.2", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/geom-clip-line/CHANGELOG.md b/packages/geom-clip-line/CHANGELOG.md index 2fb8b9292f..3c9004c52d 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.0.17](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-clip-line@1.0.16...@thi.ng/geom-clip-line@1.0.17) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/geom-clip-line + + + + + ## [1.0.16](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-clip-line@1.0.15...@thi.ng/geom-clip-line@1.0.16) (2020-05-29) **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 0c9e22d4e4..9e2eae9754 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.0.16", + "version": "1.0.17", "description": "2D line clipping (Liang-Barsky)", "module": "./index.js", "main": "./lib/index.js", @@ -43,7 +43,7 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/vectors": "^4.4.1", + "@thi.ng/vectors": "^4.4.2", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/geom-clip-poly/CHANGELOG.md b/packages/geom-clip-poly/CHANGELOG.md index a418ec61cd..60a97a0215 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.17](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-clip-poly@1.0.16...@thi.ng/geom-clip-poly@1.0.17) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/geom-clip-poly + + + + + ## [1.0.16](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-clip-poly@1.0.15...@thi.ng/geom-clip-poly@1.0.16) (2020-05-29) **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 6019209fdf..98574c1687 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.16", + "version": "1.0.17", "description": "2D convex polygon clipping (Sutherland-Hodgeman)", "module": "./index.js", "main": "./lib/index.js", @@ -43,10 +43,10 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/geom-isec": "^0.4.18", - "@thi.ng/geom-poly-utils": "^0.1.47", + "@thi.ng/geom-isec": "^0.4.19", + "@thi.ng/geom-poly-utils": "^0.1.48", "@thi.ng/math": "^1.7.10", - "@thi.ng/vectors": "^4.4.1", + "@thi.ng/vectors": "^4.4.2", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/geom-closest-point/CHANGELOG.md b/packages/geom-closest-point/CHANGELOG.md index e71823bdc9..a1446f7c63 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. +## [0.3.30](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-closest-point@0.3.29...@thi.ng/geom-closest-point@0.3.30) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/geom-closest-point + + + + + ## [0.3.29](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-closest-point@0.3.28...@thi.ng/geom-closest-point@0.3.29) (2020-05-29) **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 8ab325e1f9..641e794ac2 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": "0.3.29", + "version": "0.3.30", "description": "2D / 3D closest point / proximity helpers", "module": "./index.js", "main": "./lib/index.js", @@ -44,7 +44,7 @@ }, "dependencies": { "@thi.ng/math": "^1.7.10", - "@thi.ng/vectors": "^4.4.1", + "@thi.ng/vectors": "^4.4.2", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/geom-hull/CHANGELOG.md b/packages/geom-hull/CHANGELOG.md index 35780e517e..b28e5eaffd 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. +## [0.0.50](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-hull@0.0.49...@thi.ng/geom-hull@0.0.50) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/geom-hull + + + + + ## [0.0.49](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-hull@0.0.48...@thi.ng/geom-hull@0.0.49) (2020-05-29) **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 8f84625e05..3a8aac19e6 100644 --- a/packages/geom-hull/package.json +++ b/packages/geom-hull/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-hull", - "version": "0.0.49", + "version": "0.0.50", "description": "Fast 2D convex hull (Graham Scan)", "module": "./index.js", "main": "./lib/index.js", @@ -44,7 +44,7 @@ }, "dependencies": { "@thi.ng/math": "^1.7.10", - "@thi.ng/vectors": "^4.4.1", + "@thi.ng/vectors": "^4.4.2", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/geom-io-obj/CHANGELOG.md b/packages/geom-io-obj/CHANGELOG.md index 694de0fa6e..d227799747 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.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-io-obj@0.1.7...@thi.ng/geom-io-obj@0.1.8) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/geom-io-obj + + + + + ## [0.1.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-io-obj@0.1.6...@thi.ng/geom-io-obj@0.1.7) (2020-05-29) **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 65d2c01aa1..a0eadc21d7 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.7", + "version": "0.1.8", "description": "Wavefront OBJ parser (& exporter soon)", "module": "./index.js", "main": "./lib/index.js", @@ -43,8 +43,8 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", - "@thi.ng/vectors": "^4.4.1" + "@thi.ng/api": "^6.11.0", + "@thi.ng/vectors": "^4.4.2" }, "files": [ "*.js", diff --git a/packages/geom-isec/CHANGELOG.md b/packages/geom-isec/CHANGELOG.md index a7873ec840..43c14bc0b5 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. +## [0.4.19](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-isec@0.4.18...@thi.ng/geom-isec@0.4.19) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/geom-isec + + + + + ## [0.4.18](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-isec@0.4.17...@thi.ng/geom-isec@0.4.18) (2020-05-29) **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 c5acd0a98e..0d867769bf 100644 --- a/packages/geom-isec/package.json +++ b/packages/geom-isec/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-isec", - "version": "0.4.18", + "version": "0.4.19", "description": "2D/3D shape intersection checks", "module": "./index.js", "main": "./lib/index.js", @@ -43,11 +43,11 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", - "@thi.ng/geom-api": "^1.0.18", - "@thi.ng/geom-closest-point": "^0.3.29", + "@thi.ng/api": "^6.11.0", + "@thi.ng/geom-api": "^1.0.19", + "@thi.ng/geom-closest-point": "^0.3.30", "@thi.ng/math": "^1.7.10", - "@thi.ng/vectors": "^4.4.1", + "@thi.ng/vectors": "^4.4.2", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/geom-isoline/CHANGELOG.md b/packages/geom-isoline/CHANGELOG.md index 0e0b25c983..4b73381b94 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. +## [0.1.48](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-isoline@0.1.47...@thi.ng/geom-isoline@0.1.48) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/geom-isoline + + + + + ## [0.1.47](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-isoline@0.1.46...@thi.ng/geom-isoline@0.1.47) (2020-05-29) **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 0a22c706ed..124f1e1c77 100644 --- a/packages/geom-isoline/package.json +++ b/packages/geom-isoline/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-isoline", - "version": "0.1.47", + "version": "0.1.48", "description": "Fast 2D contour line extraction / generation", "module": "./index.js", "main": "./lib/index.js", @@ -43,8 +43,8 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/transducers": "^6.6.0", - "@thi.ng/vectors": "^4.4.1", + "@thi.ng/transducers": "^6.7.0", + "@thi.ng/vectors": "^4.4.2", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/geom-poly-utils/CHANGELOG.md b/packages/geom-poly-utils/CHANGELOG.md index 72e7817331..74ad69e603 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. +## [0.1.48](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-poly-utils@0.1.47...@thi.ng/geom-poly-utils@0.1.48) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/geom-poly-utils + + + + + ## [0.1.47](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-poly-utils@0.1.46...@thi.ng/geom-poly-utils@0.1.47) (2020-05-29) **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 3760898942..4e6bdb9729 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": "0.1.47", + "version": "0.1.48", "description": "2D polygon / triangle analysis & processing utilities", "module": "./index.js", "main": "./lib/index.js", @@ -44,9 +44,9 @@ }, "dependencies": { "@thi.ng/errors": "^1.2.14", - "@thi.ng/geom-api": "^1.0.18", + "@thi.ng/geom-api": "^1.0.19", "@thi.ng/math": "^1.7.10", - "@thi.ng/vectors": "^4.4.1", + "@thi.ng/vectors": "^4.4.2", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/geom-resample/CHANGELOG.md b/packages/geom-resample/CHANGELOG.md index 30ee17e2af..52b5801b44 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. +## [0.2.30](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-resample@0.2.29...@thi.ng/geom-resample@0.2.30) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/geom-resample + + + + + ## [0.2.29](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-resample@0.2.28...@thi.ng/geom-resample@0.2.29) (2020-05-29) **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 9aaa287b76..6171ef70b2 100644 --- a/packages/geom-resample/package.json +++ b/packages/geom-resample/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-resample", - "version": "0.2.29", + "version": "0.2.30", "description": "Customizable nD polyline interpolation, re-sampling, splitting & nearest point computation", "module": "./index.js", "main": "./lib/index.js", @@ -44,10 +44,10 @@ }, "dependencies": { "@thi.ng/checks": "^2.7.0", - "@thi.ng/geom-api": "^1.0.18", - "@thi.ng/geom-closest-point": "^0.3.29", + "@thi.ng/geom-api": "^1.0.19", + "@thi.ng/geom-closest-point": "^0.3.30", "@thi.ng/math": "^1.7.10", - "@thi.ng/vectors": "^4.4.1", + "@thi.ng/vectors": "^4.4.2", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/geom-splines/CHANGELOG.md b/packages/geom-splines/CHANGELOG.md index 6248488d0d..a2a560bd2c 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. +## [0.5.17](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-splines@0.5.16...@thi.ng/geom-splines@0.5.17) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/geom-splines + + + + + ## [0.5.16](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-splines@0.5.15...@thi.ng/geom-splines@0.5.16) (2020-05-29) **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 c7dd73e125..4dd8474414 100644 --- a/packages/geom-splines/package.json +++ b/packages/geom-splines/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-splines", - "version": "0.5.16", + "version": "0.5.17", "description": "nD cubic & quadratic curve analysis, conversion, interpolation, splitting", "module": "./index.js", "main": "./lib/index.js", @@ -44,11 +44,11 @@ }, "dependencies": { "@thi.ng/checks": "^2.7.0", - "@thi.ng/geom-api": "^1.0.18", - "@thi.ng/geom-arc": "^0.2.29", - "@thi.ng/geom-resample": "^0.2.29", + "@thi.ng/geom-api": "^1.0.19", + "@thi.ng/geom-arc": "^0.2.30", + "@thi.ng/geom-resample": "^0.2.30", "@thi.ng/math": "^1.7.10", - "@thi.ng/vectors": "^4.4.1", + "@thi.ng/vectors": "^4.4.2", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/geom-subdiv-curve/CHANGELOG.md b/packages/geom-subdiv-curve/CHANGELOG.md index 8e084fefa6..49f6e731f9 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. +## [0.1.47](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-subdiv-curve@0.1.46...@thi.ng/geom-subdiv-curve@0.1.47) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/geom-subdiv-curve + + + + + ## [0.1.46](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-subdiv-curve@0.1.45...@thi.ng/geom-subdiv-curve@0.1.46) (2020-05-29) **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 2eab82dd13..db33f17c57 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": "0.1.46", + "version": "0.1.47", "description": "Freely customizable, iterative nD subdivision curves for open / closed geometries", "module": "./index.js", "main": "./lib/index.js", @@ -43,9 +43,9 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/geom-api": "^1.0.18", - "@thi.ng/transducers": "^6.6.0", - "@thi.ng/vectors": "^4.4.1", + "@thi.ng/geom-api": "^1.0.19", + "@thi.ng/transducers": "^6.7.0", + "@thi.ng/vectors": "^4.4.2", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/geom-tessellate/CHANGELOG.md b/packages/geom-tessellate/CHANGELOG.md index 5e466ef376..89f144b981 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. +## [0.2.30](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-tessellate@0.2.29...@thi.ng/geom-tessellate@0.2.30) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/geom-tessellate + + + + + ## [0.2.29](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-tessellate@0.2.28...@thi.ng/geom-tessellate@0.2.29) (2020-05-29) **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 0acdb71e6f..e8f7d6e7af 100644 --- a/packages/geom-tessellate/package.json +++ b/packages/geom-tessellate/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-tessellate", - "version": "0.2.29", + "version": "0.2.30", "description": "2D/3D convex polygon tessellators", "module": "./index.js", "main": "./lib/index.js", @@ -44,11 +44,11 @@ }, "dependencies": { "@thi.ng/checks": "^2.7.0", - "@thi.ng/geom-api": "^1.0.18", - "@thi.ng/geom-isec": "^0.4.18", - "@thi.ng/geom-poly-utils": "^0.1.47", - "@thi.ng/transducers": "^6.6.0", - "@thi.ng/vectors": "^4.4.1", + "@thi.ng/geom-api": "^1.0.19", + "@thi.ng/geom-isec": "^0.4.19", + "@thi.ng/geom-poly-utils": "^0.1.48", + "@thi.ng/transducers": "^6.7.0", + "@thi.ng/vectors": "^4.4.2", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/geom-voronoi/CHANGELOG.md b/packages/geom-voronoi/CHANGELOG.md index 642a1b5530..b6fcca3f02 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. +## [0.1.48](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-voronoi@0.1.47...@thi.ng/geom-voronoi@0.1.48) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/geom-voronoi + + + + + ## [0.1.47](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-voronoi@0.1.46...@thi.ng/geom-voronoi@0.1.47) (2020-05-29) **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 4c7dbd8967..681b33f21b 100644 --- a/packages/geom-voronoi/package.json +++ b/packages/geom-voronoi/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-voronoi", - "version": "0.1.47", + "version": "0.1.48", "description": "Fast, incremental 2D Delaunay & Voronoi mesh implementation", "module": "./index.js", "main": "./lib/index.js", @@ -43,15 +43,15 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", + "@thi.ng/api": "^6.11.0", "@thi.ng/checks": "^2.7.0", - "@thi.ng/geom-clip-line": "^1.0.16", - "@thi.ng/geom-clip-poly": "^1.0.16", - "@thi.ng/geom-isec": "^0.4.18", - "@thi.ng/geom-poly-utils": "^0.1.47", + "@thi.ng/geom-clip-line": "^1.0.17", + "@thi.ng/geom-clip-poly": "^1.0.17", + "@thi.ng/geom-isec": "^0.4.19", + "@thi.ng/geom-poly-utils": "^0.1.48", "@thi.ng/math": "^1.7.10", "@thi.ng/quad-edge": "^0.2.16", - "@thi.ng/vectors": "^4.4.1", + "@thi.ng/vectors": "^4.4.2", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/geom/CHANGELOG.md b/packages/geom/CHANGELOG.md index ba6f25da52..f179bc9dd8 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. +## [1.9.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom@1.9.5...@thi.ng/geom@1.9.6) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/geom + + + + + ## [1.9.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom@1.9.4...@thi.ng/geom@1.9.5) (2020-05-29) **Note:** Version bump only for package @thi.ng/geom diff --git a/packages/geom/package.json b/packages/geom/package.json index a083917421..f376278e6c 100644 --- a/packages/geom/package.json +++ b/packages/geom/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom", - "version": "1.9.5", + "version": "1.9.6", "description": "Functional, polymorphic API for 2D geometry types & SVG generation", "module": "./index.js", "main": "./lib/index.js", @@ -43,32 +43,32 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", - "@thi.ng/arrays": "^0.6.7", + "@thi.ng/api": "^6.11.0", + "@thi.ng/arrays": "^0.6.8", "@thi.ng/checks": "^2.7.0", - "@thi.ng/compose": "^1.4.7", - "@thi.ng/defmulti": "^1.2.15", + "@thi.ng/compose": "^1.4.8", + "@thi.ng/defmulti": "^1.2.16", "@thi.ng/equiv": "^1.0.23", "@thi.ng/errors": "^1.2.14", - "@thi.ng/geom-api": "^1.0.18", - "@thi.ng/geom-arc": "^0.2.29", - "@thi.ng/geom-clip-line": "^1.0.16", - "@thi.ng/geom-clip-poly": "^1.0.16", - "@thi.ng/geom-closest-point": "^0.3.29", - "@thi.ng/geom-hull": "^0.0.49", - "@thi.ng/geom-isec": "^0.4.18", - "@thi.ng/geom-poly-utils": "^0.1.47", - "@thi.ng/geom-resample": "^0.2.29", - "@thi.ng/geom-splines": "^0.5.16", - "@thi.ng/geom-subdiv-curve": "^0.1.46", - "@thi.ng/geom-tessellate": "^0.2.29", - "@thi.ng/hiccup": "^3.2.23", - "@thi.ng/hiccup-svg": "^3.4.20", + "@thi.ng/geom-api": "^1.0.19", + "@thi.ng/geom-arc": "^0.2.30", + "@thi.ng/geom-clip-line": "^1.0.17", + "@thi.ng/geom-clip-poly": "^1.0.17", + "@thi.ng/geom-closest-point": "^0.3.30", + "@thi.ng/geom-hull": "^0.0.50", + "@thi.ng/geom-isec": "^0.4.19", + "@thi.ng/geom-poly-utils": "^0.1.48", + "@thi.ng/geom-resample": "^0.2.30", + "@thi.ng/geom-splines": "^0.5.17", + "@thi.ng/geom-subdiv-curve": "^0.1.47", + "@thi.ng/geom-tessellate": "^0.2.30", + "@thi.ng/hiccup": "^3.2.24", + "@thi.ng/hiccup-svg": "^3.4.21", "@thi.ng/math": "^1.7.10", - "@thi.ng/matrices": "^0.6.16", - "@thi.ng/random": "^1.4.9", - "@thi.ng/transducers": "^6.6.0", - "@thi.ng/vectors": "^4.4.1", + "@thi.ng/matrices": "^0.6.17", + "@thi.ng/random": "^1.4.10", + "@thi.ng/transducers": "^6.7.0", + "@thi.ng/vectors": "^4.4.2", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/gp/CHANGELOG.md b/packages/gp/CHANGELOG.md index 30dc04abf9..b298201062 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.1.18](https://github.com/thi-ng/umbrella/compare/@thi.ng/gp@0.1.17...@thi.ng/gp@0.1.18) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/gp + + + + + ## [0.1.17](https://github.com/thi-ng/umbrella/compare/@thi.ng/gp@0.1.16...@thi.ng/gp@0.1.17) (2020-05-29) **Note:** Version bump only for package @thi.ng/gp diff --git a/packages/gp/package.json b/packages/gp/package.json index a5c1b21b00..ea110c563f 100644 --- a/packages/gp/package.json +++ b/packages/gp/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/gp", - "version": "0.1.17", + "version": "0.1.18", "description": "Genetic programming helpers & strategies (tree based & multi-expression programming)", "module": "./index.js", "main": "./lib/index.js", @@ -43,11 +43,11 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", + "@thi.ng/api": "^6.11.0", "@thi.ng/math": "^1.7.10", - "@thi.ng/random": "^1.4.9", - "@thi.ng/transducers": "^6.6.0", - "@thi.ng/zipper": "^0.1.15", + "@thi.ng/random": "^1.4.10", + "@thi.ng/transducers": "^6.7.0", + "@thi.ng/zipper": "^0.1.16", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/grid-iterators/CHANGELOG.md b/packages/grid-iterators/CHANGELOG.md index dae559fc0c..74e0506de5 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. +## [0.3.15](https://github.com/thi-ng/umbrella/compare/@thi.ng/grid-iterators@0.3.14...@thi.ng/grid-iterators@0.3.15) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/grid-iterators + + + + + ## [0.3.14](https://github.com/thi-ng/umbrella/compare/@thi.ng/grid-iterators@0.3.13...@thi.ng/grid-iterators@0.3.14) (2020-05-29) **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 e04c0e5111..63319b857b 100644 --- a/packages/grid-iterators/package.json +++ b/packages/grid-iterators/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/grid-iterators", - "version": "0.3.14", + "version": "0.3.15", "description": "2D grid iterators w/ multiple orderings", "module": "./index.js", "main": "./lib/index.js", @@ -44,11 +44,11 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/arrays": "^0.6.7", + "@thi.ng/arrays": "^0.6.8", "@thi.ng/binary": "^2.0.7", - "@thi.ng/morton": "^2.0.13", - "@thi.ng/random": "^1.4.9", - "@thi.ng/transducers": "^6.6.0", + "@thi.ng/morton": "^2.0.14", + "@thi.ng/random": "^1.4.10", + "@thi.ng/transducers": "^6.7.0", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/hdom-canvas/CHANGELOG.md b/packages/hdom-canvas/CHANGELOG.md index 7706f5b7ff..f8156300a9 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. +## [2.4.25](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-canvas@2.4.24...@thi.ng/hdom-canvas@2.4.25) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/hdom-canvas + + + + + ## [2.4.24](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-canvas@2.4.23...@thi.ng/hdom-canvas@2.4.24) (2020-05-29) **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 ca6dfa0f3c..48c999c054 100644 --- a/packages/hdom-canvas/package.json +++ b/packages/hdom-canvas/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hdom-canvas", - "version": "2.4.24", + "version": "2.4.25", "description": "Declarative canvas scenegraph & visualization for @thi.ng/hdom", "module": "./index.js", "main": "./lib/index.js", @@ -43,13 +43,13 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", + "@thi.ng/api": "^6.11.0", "@thi.ng/checks": "^2.7.0", - "@thi.ng/color": "^1.2.0", - "@thi.ng/diff": "^3.2.21", - "@thi.ng/hdom": "^8.0.26", + "@thi.ng/color": "^1.2.1", + "@thi.ng/diff": "^3.2.22", + "@thi.ng/hdom": "^8.0.27", "@thi.ng/math": "^1.7.10", - "@thi.ng/vectors": "^4.4.1", + "@thi.ng/vectors": "^4.4.2", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/hdom-components/CHANGELOG.md b/packages/hdom-components/CHANGELOG.md index 93b45ffa90..2027aa44eb 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. +## [3.2.11](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-components@3.2.10...@thi.ng/hdom-components@3.2.11) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/hdom-components + + + + + ## [3.2.10](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-components@3.2.9...@thi.ng/hdom-components@3.2.10) (2020-05-29) **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 a7c1a505a4..386bb82943 100644 --- a/packages/hdom-components/package.json +++ b/packages/hdom-components/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hdom-components", - "version": "3.2.10", + "version": "3.2.11", "description": "Raw, skinnable UI & SVG components for @thi.ng/hdom", "module": "./index.js", "main": "./lib/index.js", @@ -43,11 +43,11 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", + "@thi.ng/api": "^6.11.0", "@thi.ng/checks": "^2.7.0", "@thi.ng/math": "^1.7.10", - "@thi.ng/transducers": "^6.6.0", - "@thi.ng/transducers-stats": "^1.1.24", + "@thi.ng/transducers": "^6.7.0", + "@thi.ng/transducers-stats": "^1.1.25", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/hdom-mock/CHANGELOG.md b/packages/hdom-mock/CHANGELOG.md index 1960053efb..8cc87f4c34 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.27](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-mock@1.1.26...@thi.ng/hdom-mock@1.1.27) (2020-06-01) + +**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 22dd6d0d40..a803c3425c 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.26", + "version": "1.1.27", "description": "Mock base implementation for @thi.ng/hdom API", "module": "./index.js", "main": "./lib/index.js", @@ -43,9 +43,9 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", + "@thi.ng/api": "^6.11.0", "@thi.ng/checks": "^2.7.0", - "@thi.ng/hdom": "^8.0.26", + "@thi.ng/hdom": "^8.0.27", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/hdom/CHANGELOG.md b/packages/hdom/CHANGELOG.md index bfd08b12dd..bcca8cb3c9 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.0.27](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom@8.0.26...@thi.ng/hdom@8.0.27) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/hdom + + + + + ## [8.0.18](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom@8.0.17...@thi.ng/hdom@8.0.18) (2020-04-06) diff --git a/packages/hdom/package.json b/packages/hdom/package.json index f5088b597b..72e0083e81 100644 --- a/packages/hdom/package.json +++ b/packages/hdom/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hdom", - "version": "8.0.26", + "version": "8.0.27", "description": "Lightweight vanilla ES6 UI component trees with customizable branch-local behaviors", "module": "./index.js", "main": "./lib/index.js", @@ -34,7 +34,7 @@ "devDependencies": { "@istanbuljs/nyc-config-typescript": "^1.0.1", "@microsoft/api-extractor": "^7.8.0", - "@thi.ng/atom": "^4.1.8", + "@thi.ng/atom": "^4.1.9", "@types/mocha": "^7.0.2", "@types/node": "^14.0.1", "mocha": "^7.1.2", @@ -44,12 +44,12 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", + "@thi.ng/api": "^6.11.0", "@thi.ng/checks": "^2.7.0", - "@thi.ng/diff": "^3.2.21", + "@thi.ng/diff": "^3.2.22", "@thi.ng/equiv": "^1.0.23", "@thi.ng/errors": "^1.2.14", - "@thi.ng/hiccup": "^3.2.23", + "@thi.ng/hiccup": "^3.2.24", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/heaps/CHANGELOG.md b/packages/heaps/CHANGELOG.md index ce0271e729..d87e761964 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.2.15](https://github.com/thi-ng/umbrella/compare/@thi.ng/heaps@1.2.14...@thi.ng/heaps@1.2.15) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/heaps + + + + + # [1.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/heaps@1.1.6...@thi.ng/heaps@1.2.0) (2020-01-24) ### Features diff --git a/packages/heaps/package.json b/packages/heaps/package.json index 0b2b6a6bdf..3b8a6f23f9 100644 --- a/packages/heaps/package.json +++ b/packages/heaps/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/heaps", - "version": "1.2.14", + "version": "1.2.15", "description": "Various heap implementations for arbitrary values and with customizable ordering", "module": "./index.js", "main": "./lib/index.js", @@ -44,8 +44,8 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", - "@thi.ng/compare": "^1.3.6", + "@thi.ng/api": "^6.11.0", + "@thi.ng/compare": "^1.3.7", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/hiccup-carbon-icons/CHANGELOG.md b/packages/hiccup-carbon-icons/CHANGELOG.md index 02598f306e..0ce98298cd 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. +## [1.0.39](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-carbon-icons@1.0.38...@thi.ng/hiccup-carbon-icons@1.0.39) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/hiccup-carbon-icons + + + + + # [1.0.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-carbon-icons@0.1.2...@thi.ng/hiccup-carbon-icons@1.0.0) (2019-01-21) ### Build System diff --git a/packages/hiccup-carbon-icons/package.json b/packages/hiccup-carbon-icons/package.json index 565ac6af4c..3063d9fff8 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": "1.0.38", + "version": "1.0.39", "description": "Full set of IBM's Carbon icons in hiccup format", "module": "./index.js", "main": "./lib/index.js", @@ -34,7 +34,7 @@ "devDependencies": { "@istanbuljs/nyc-config-typescript": "^1.0.1", "@microsoft/api-extractor": "^7.8.0", - "@thi.ng/hiccup": "^3.2.23", + "@thi.ng/hiccup": "^3.2.24", "@types/mocha": "^7.0.2", "@types/node": "^14.0.1", "mocha": "^7.1.2", diff --git a/packages/hiccup-css/CHANGELOG.md b/packages/hiccup-css/CHANGELOG.md index b960a1296f..1629ac8147 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.25](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-css@1.1.24...@thi.ng/hiccup-css@1.1.25) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/hiccup-css + + + + + ## [1.1.24](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-css@1.1.23...@thi.ng/hiccup-css@1.1.24) (2020-05-29) **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 bf32c6330f..67dc1a70a6 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.24", + "version": "1.1.25", "description": "CSS from nested JS data structures", "module": "./index.js", "main": "./lib/index.js", @@ -43,10 +43,10 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", + "@thi.ng/api": "^6.11.0", "@thi.ng/checks": "^2.7.0", "@thi.ng/errors": "^1.2.14", - "@thi.ng/transducers": "^6.6.0", + "@thi.ng/transducers": "^6.7.0", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/hiccup-markdown/CHANGELOG.md b/packages/hiccup-markdown/CHANGELOG.md index e7e87800cd..bb4eeb06a0 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.2.14](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-markdown@1.2.13...@thi.ng/hiccup-markdown@1.2.14) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/hiccup-markdown + + + + + ## [1.2.13](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-markdown@1.2.12...@thi.ng/hiccup-markdown@1.2.13) (2020-05-29) **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 8890c1bf39..2fe39a87a7 100644 --- a/packages/hiccup-markdown/package.json +++ b/packages/hiccup-markdown/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hiccup-markdown", - "version": "1.2.13", + "version": "1.2.14", "description": "Markdown parser & serializer from/to Hiccup format", "module": "./index.js", "main": "./lib/index.js", @@ -43,15 +43,15 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/arrays": "^0.6.7", + "@thi.ng/arrays": "^0.6.8", "@thi.ng/checks": "^2.7.0", - "@thi.ng/defmulti": "^1.2.15", + "@thi.ng/defmulti": "^1.2.16", "@thi.ng/errors": "^1.2.14", - "@thi.ng/fsm": "^2.4.10", - "@thi.ng/hiccup": "^3.2.23", - "@thi.ng/strings": "^1.8.8", - "@thi.ng/text-canvas": "^0.2.13", - "@thi.ng/transducers": "^6.6.0", + "@thi.ng/fsm": "^2.4.11", + "@thi.ng/hiccup": "^3.2.24", + "@thi.ng/strings": "^1.8.9", + "@thi.ng/text-canvas": "^0.2.14", + "@thi.ng/transducers": "^6.7.0", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/hiccup-svg/CHANGELOG.md b/packages/hiccup-svg/CHANGELOG.md index 3d67bd4b0c..304d3f6cc8 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.4.21](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-svg@3.4.20...@thi.ng/hiccup-svg@3.4.21) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/hiccup-svg + + + + + ## [3.4.20](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-svg@3.4.19...@thi.ng/hiccup-svg@3.4.20) (2020-05-29) **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 bb625c19a5..aa4ebf405c 100644 --- a/packages/hiccup-svg/package.json +++ b/packages/hiccup-svg/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hiccup-svg", - "version": "3.4.20", + "version": "3.4.21", "description": "SVG element functions for @thi.ng/hiccup & @thi.ng/hdom", "module": "./index.js", "main": "./lib/index.js", @@ -44,8 +44,8 @@ }, "dependencies": { "@thi.ng/checks": "^2.7.0", - "@thi.ng/color": "^1.2.0", - "@thi.ng/hiccup": "^3.2.23", + "@thi.ng/color": "^1.2.1", + "@thi.ng/hiccup": "^3.2.24", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/hiccup/CHANGELOG.md b/packages/hiccup/CHANGELOG.md index 5d76bc3876..8065af579e 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.2.24](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup@3.2.23...@thi.ng/hiccup@3.2.24) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/hiccup + + + + + ## [3.2.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup@3.2.3...@thi.ng/hiccup@3.2.4) (2019-08-21) ### Bug Fixes diff --git a/packages/hiccup/package.json b/packages/hiccup/package.json index 44095748e0..67ce7c3fd9 100644 --- a/packages/hiccup/package.json +++ b/packages/hiccup/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hiccup", - "version": "3.2.23", + "version": "3.2.24", "description": "HTML/SVG/XML serialization of nested data structures, iterables & closures", "module": "./index.js", "main": "./lib/index.js", @@ -34,7 +34,7 @@ "devDependencies": { "@istanbuljs/nyc-config-typescript": "^1.0.1", "@microsoft/api-extractor": "^7.8.0", - "@thi.ng/atom": "^4.1.8", + "@thi.ng/atom": "^4.1.9", "@types/mocha": "^7.0.2", "@types/node": "^14.0.1", "mocha": "^7.1.2", diff --git a/packages/idgen/CHANGELOG.md b/packages/idgen/CHANGELOG.md index cc10273c49..131d8b95f2 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. +## [0.2.14](https://github.com/thi-ng/umbrella/compare/@thi.ng/idgen@0.2.13...@thi.ng/idgen@0.2.14) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/idgen + + + + + # [0.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/idgen@0.1.0...@thi.ng/idgen@0.2.0) (2020-01-24) ### Features diff --git a/packages/idgen/package.json b/packages/idgen/package.json index 4305299d3f..c2d1be1d38 100644 --- a/packages/idgen/package.json +++ b/packages/idgen/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/idgen", - "version": "0.2.13", + "version": "0.2.14", "description": "Generator of opaque numeric identifiers with optional support for ID versioning and efficient re-use", "module": "./index.js", "main": "./lib/index.js", @@ -43,7 +43,7 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", + "@thi.ng/api": "^6.11.0", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/iges/CHANGELOG.md b/packages/iges/CHANGELOG.md index 97a1e753bf..1c7b9f28f4 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.32](https://github.com/thi-ng/umbrella/compare/@thi.ng/iges@1.1.31...@thi.ng/iges@1.1.32) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/iges + + + + + ## [1.1.31](https://github.com/thi-ng/umbrella/compare/@thi.ng/iges@1.1.30...@thi.ng/iges@1.1.31) (2020-05-29) **Note:** Version bump only for package @thi.ng/iges diff --git a/packages/iges/package.json b/packages/iges/package.json index 9301da60b3..e5025837e1 100644 --- a/packages/iges/package.json +++ b/packages/iges/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/iges", - "version": "1.1.31", + "version": "1.1.32", "description": "IGES 5.3 serializer for (currently only) polygonal geometry, both open & closed", "module": "./index.js", "main": "./lib/index.js", @@ -43,12 +43,12 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", + "@thi.ng/api": "^6.11.0", "@thi.ng/checks": "^2.7.0", - "@thi.ng/defmulti": "^1.2.15", - "@thi.ng/strings": "^1.8.8", - "@thi.ng/transducers": "^6.6.0", - "@thi.ng/vectors": "^4.4.1", + "@thi.ng/defmulti": "^1.2.16", + "@thi.ng/strings": "^1.8.9", + "@thi.ng/transducers": "^6.7.0", + "@thi.ng/vectors": "^4.4.2", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/imgui/CHANGELOG.md b/packages/imgui/CHANGELOG.md index 465604aec0..2968b64d1e 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. +## [0.2.19](https://github.com/thi-ng/umbrella/compare/@thi.ng/imgui@0.2.18...@thi.ng/imgui@0.2.19) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/imgui + + + + + ## [0.2.18](https://github.com/thi-ng/umbrella/compare/@thi.ng/imgui@0.2.17...@thi.ng/imgui@0.2.18) (2020-05-29) **Note:** Version bump only for package @thi.ng/imgui diff --git a/packages/imgui/package.json b/packages/imgui/package.json index 871e4d911e..14b8ed492b 100644 --- a/packages/imgui/package.json +++ b/packages/imgui/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/imgui", - "version": "0.2.18", + "version": "0.2.19", "description": "Immediate mode GUI with flexible state handling & data only shape output", "module": "./index.js", "main": "./lib/index.js", @@ -43,16 +43,16 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", + "@thi.ng/api": "^6.11.0", "@thi.ng/checks": "^2.7.0", - "@thi.ng/geom": "^1.9.5", - "@thi.ng/geom-api": "^1.0.18", - "@thi.ng/geom-isec": "^0.4.18", - "@thi.ng/geom-tessellate": "^0.2.29", - "@thi.ng/layout": "^0.1.11", + "@thi.ng/geom": "^1.9.6", + "@thi.ng/geom-api": "^1.0.19", + "@thi.ng/geom-isec": "^0.4.19", + "@thi.ng/geom-tessellate": "^0.2.30", + "@thi.ng/layout": "^0.1.12", "@thi.ng/math": "^1.7.10", - "@thi.ng/transducers": "^6.6.0", - "@thi.ng/vectors": "^4.4.1", + "@thi.ng/transducers": "^6.7.0", + "@thi.ng/vectors": "^4.4.2", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/interceptors/CHANGELOG.md b/packages/interceptors/CHANGELOG.md index f127eeef0f..149cbafd2d 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.20](https://github.com/thi-ng/umbrella/compare/@thi.ng/interceptors@2.2.19...@thi.ng/interceptors@2.2.20) (2020-06-01) + +**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 4b2ec77239..09e9e64359 100644 --- a/packages/interceptors/package.json +++ b/packages/interceptors/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/interceptors", - "version": "2.2.19", + "version": "2.2.20", "description": "Interceptor based event bus, side effect & immutable state handling", "module": "./index.js", "main": "./lib/index.js", @@ -43,8 +43,8 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", - "@thi.ng/atom": "^4.1.8", + "@thi.ng/api": "^6.11.0", + "@thi.ng/atom": "^4.1.9", "@thi.ng/checks": "^2.7.0", "@thi.ng/errors": "^1.2.14", "@thi.ng/paths": "^4.0.7", diff --git a/packages/intervals/CHANGELOG.md b/packages/intervals/CHANGELOG.md index 75d31f3d87..d57cb45f9a 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. +## [2.0.15](https://github.com/thi-ng/umbrella/compare/@thi.ng/intervals@2.0.14...@thi.ng/intervals@2.0.15) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/intervals + + + + + # [2.0.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/intervals@1.0.15...@thi.ng/intervals@2.0.0) (2019-11-30) ### Bug Fixes diff --git a/packages/intervals/package.json b/packages/intervals/package.json index 7a2b7349e2..33dda4b7ba 100644 --- a/packages/intervals/package.json +++ b/packages/intervals/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/intervals", - "version": "2.0.14", + "version": "2.0.15", "description": "Closed/open/semi-open interval data type, queries & operations", "module": "./index.js", "main": "./lib/index.js", @@ -43,7 +43,7 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", + "@thi.ng/api": "^6.11.0", "@thi.ng/checks": "^2.7.0", "@thi.ng/dlogic": "^1.0.23", "@thi.ng/errors": "^1.2.14", diff --git a/packages/iterators/CHANGELOG.md b/packages/iterators/CHANGELOG.md index 3260c82e75..feab03d107 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.25](https://github.com/thi-ng/umbrella/compare/@thi.ng/iterators@5.1.24...@thi.ng/iterators@5.1.25) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/iterators + + + + + ## [5.1.24](https://github.com/thi-ng/umbrella/compare/@thi.ng/iterators@5.1.23...@thi.ng/iterators@5.1.24) (2020-05-29) **Note:** Version bump only for package @thi.ng/iterators diff --git a/packages/iterators/package.json b/packages/iterators/package.json index 8d6a39dd9f..e2989085f7 100644 --- a/packages/iterators/package.json +++ b/packages/iterators/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/iterators", - "version": "5.1.24", + "version": "5.1.25", "description": "Clojure inspired, composable ES6 iterators & generators", "module": "./index.js", "main": "./lib/index.js", @@ -43,8 +43,8 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", - "@thi.ng/dcons": "^2.2.17", + "@thi.ng/api": "^6.11.0", + "@thi.ng/dcons": "^2.2.18", "@thi.ng/errors": "^1.2.14", "tslib": "^1.12.0" }, diff --git a/packages/layout/CHANGELOG.md b/packages/layout/CHANGELOG.md index 2f4f24c514..6d5f32a949 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. +## [0.1.12](https://github.com/thi-ng/umbrella/compare/@thi.ng/layout@0.1.11...@thi.ng/layout@0.1.12) (2020-06-01) + +**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 8b9ace1e45..794984199b 100644 --- a/packages/layout/package.json +++ b/packages/layout/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/layout", - "version": "0.1.11", + "version": "0.1.12", "description": "TODO", "module": "./index.js", "main": "./lib/index.js", @@ -43,7 +43,7 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", + "@thi.ng/api": "^6.11.0", "@thi.ng/checks": "^2.7.0", "tslib": "^1.12.0" }, diff --git a/packages/leb128/CHANGELOG.md b/packages/leb128/CHANGELOG.md index e5569ede3b..a50f016eb9 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.19](https://github.com/thi-ng/umbrella/compare/@thi.ng/leb128@1.0.18...@thi.ng/leb128@1.0.19) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/leb128 + + + + + ## [1.0.18](https://github.com/thi-ng/umbrella/compare/@thi.ng/leb128@1.0.17...@thi.ng/leb128@1.0.18) (2020-05-29) **Note:** Version bump only for package @thi.ng/leb128 diff --git a/packages/leb128/package.json b/packages/leb128/package.json index e9fa438019..ee9beab5ca 100644 --- a/packages/leb128/package.json +++ b/packages/leb128/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/leb128", - "version": "1.0.18", + "version": "1.0.19", "description": "WASM based LEB128 encoder / decoder (signed & unsigned)", "module": "./index.js", "main": "./lib/index.js", @@ -46,7 +46,7 @@ "dependencies": { "@thi.ng/checks": "^2.7.0", "@thi.ng/errors": "^1.2.14", - "@thi.ng/transducers-binary": "^0.5.14", + "@thi.ng/transducers-binary": "^0.5.15", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/lsys/CHANGELOG.md b/packages/lsys/CHANGELOG.md index 1e7b63e74b..7f81578a8f 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. +## [0.2.45](https://github.com/thi-ng/umbrella/compare/@thi.ng/lsys@0.2.44...@thi.ng/lsys@0.2.45) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/lsys + + + + + ## [0.2.44](https://github.com/thi-ng/umbrella/compare/@thi.ng/lsys@0.2.43...@thi.ng/lsys@0.2.44) (2020-05-29) **Note:** Version bump only for package @thi.ng/lsys diff --git a/packages/lsys/package.json b/packages/lsys/package.json index 9cfe751c34..210ce0d8de 100644 --- a/packages/lsys/package.json +++ b/packages/lsys/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/lsys", - "version": "0.2.44", + "version": "0.2.45", "description": "Functional, extensible L-System architecture w/ support for probabilistic rules", "module": "./index.js", "main": "./lib/index.js", @@ -43,13 +43,13 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", - "@thi.ng/compose": "^1.4.7", + "@thi.ng/api": "^6.11.0", + "@thi.ng/compose": "^1.4.8", "@thi.ng/errors": "^1.2.14", "@thi.ng/math": "^1.7.10", - "@thi.ng/random": "^1.4.9", - "@thi.ng/transducers": "^6.6.0", - "@thi.ng/vectors": "^4.4.1", + "@thi.ng/random": "^1.4.10", + "@thi.ng/transducers": "^6.7.0", + "@thi.ng/vectors": "^4.4.2", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/malloc/CHANGELOG.md b/packages/malloc/CHANGELOG.md index e58aae34c2..2961507ec1 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. +## [4.1.16](https://github.com/thi-ng/umbrella/compare/@thi.ng/malloc@4.1.15...@thi.ng/malloc@4.1.16) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/malloc + + + + + # [4.1.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/malloc@4.0.5...@thi.ng/malloc@4.1.0) (2019-11-09) ### Bug Fixes diff --git a/packages/malloc/package.json b/packages/malloc/package.json index 3c0ddbdb84..e97e6d23ad 100644 --- a/packages/malloc/package.json +++ b/packages/malloc/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/malloc", - "version": "4.1.15", + "version": "4.1.16", "description": "ArrayBuffer based malloc() impl for hybrid JS/WASM use cases, based on thi.ng/tinyalloc", "module": "./index.js", "main": "./lib/index.js", @@ -43,7 +43,7 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", + "@thi.ng/api": "^6.11.0", "@thi.ng/binary": "^2.0.7", "@thi.ng/checks": "^2.7.0", "@thi.ng/errors": "^1.2.14", diff --git a/packages/matrices/CHANGELOG.md b/packages/matrices/CHANGELOG.md index e4285f2341..702c069140 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. +## [0.6.17](https://github.com/thi-ng/umbrella/compare/@thi.ng/matrices@0.6.16...@thi.ng/matrices@0.6.17) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/matrices + + + + + ## [0.6.16](https://github.com/thi-ng/umbrella/compare/@thi.ng/matrices@0.6.15...@thi.ng/matrices@0.6.16) (2020-05-29) **Note:** Version bump only for package @thi.ng/matrices diff --git a/packages/matrices/package.json b/packages/matrices/package.json index 216d272a67..a7407f3b78 100644 --- a/packages/matrices/package.json +++ b/packages/matrices/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/matrices", - "version": "0.6.16", + "version": "0.6.17", "description": "Matrix & quaternion operations for 2D/3D geometry processing", "module": "./index.js", "main": "./lib/index.js", @@ -43,10 +43,10 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", + "@thi.ng/api": "^6.11.0", "@thi.ng/checks": "^2.7.0", "@thi.ng/math": "^1.7.10", - "@thi.ng/vectors": "^4.4.1", + "@thi.ng/vectors": "^4.4.2", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/memoize/CHANGELOG.md b/packages/memoize/CHANGELOG.md index 7617c06e90..fa0e655ef8 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.0.12](https://github.com/thi-ng/umbrella/compare/@thi.ng/memoize@2.0.11...@thi.ng/memoize@2.0.12) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/memoize + + + + + # [2.0.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/memoize@1.1.8...@thi.ng/memoize@2.0.0) (2020-02-25) diff --git a/packages/memoize/package.json b/packages/memoize/package.json index b3832ca89d..571960209d 100644 --- a/packages/memoize/package.json +++ b/packages/memoize/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/memoize", - "version": "2.0.11", + "version": "2.0.12", "description": "Function memoization with configurable caching", "module": "./index.js", "main": "./lib/index.js", @@ -43,7 +43,7 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", + "@thi.ng/api": "^6.11.0", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/mime/CHANGELOG.md b/packages/mime/CHANGELOG.md index 23c8f98536..2179a306b6 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. +## [0.1.12](https://github.com/thi-ng/umbrella/compare/@thi.ng/mime@0.1.11...@thi.ng/mime@0.1.12) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/mime + + + + + # 0.1.0 (2020-02-25) diff --git a/packages/mime/package.json b/packages/mime/package.json index 7d22f53fa3..47ecee5f0c 100644 --- a/packages/mime/package.json +++ b/packages/mime/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/mime", - "version": "0.1.11", + "version": "0.1.12", "description": "350+ file extension to MIME type mappings, based on mime-db", "module": "./index.js", "main": "./lib/index.js", @@ -43,7 +43,7 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", + "@thi.ng/api": "^6.11.0", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/morton/CHANGELOG.md b/packages/morton/CHANGELOG.md index 55b8b27857..7f31b60eff 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.14](https://github.com/thi-ng/umbrella/compare/@thi.ng/morton@2.0.13...@thi.ng/morton@2.0.14) (2020-06-01) + +**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 5e69a2777e..56b9314ecf 100644 --- a/packages/morton/package.json +++ b/packages/morton/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/morton", - "version": "2.0.13", + "version": "2.0.14", "description": "Z-order curve / Morton encoding, decoding & range extraction for arbitrary dimensions", "module": "./index.js", "main": "./lib/index.js", @@ -43,7 +43,7 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", + "@thi.ng/api": "^6.11.0", "@thi.ng/binary": "^2.0.7", "@thi.ng/math": "^1.7.10", "tslib": "^1.12.0" diff --git a/packages/parse/CHANGELOG.md b/packages/parse/CHANGELOG.md index dd212a5b58..aea60a6eec 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. +## [0.5.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/parse@0.5.5...@thi.ng/parse@0.5.6) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/parse + + + + + # [0.5.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/parse@0.4.1...@thi.ng/parse@0.5.0) (2020-04-23) diff --git a/packages/parse/package.json b/packages/parse/package.json index 8d428520c3..63df892136 100644 --- a/packages/parse/package.json +++ b/packages/parse/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/parse", - "version": "0.5.5", + "version": "0.5.6", "description": "Purely functional parser combinators & AST generation for generic inputs", "module": "./index.js", "main": "./lib/index.js", @@ -43,11 +43,11 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", + "@thi.ng/api": "^6.11.0", "@thi.ng/checks": "^2.7.0", - "@thi.ng/defmulti": "^1.2.15", + "@thi.ng/defmulti": "^1.2.16", "@thi.ng/errors": "^1.2.14", - "@thi.ng/strings": "^1.8.8" + "@thi.ng/strings": "^1.8.9" }, "files": [ "*.js", diff --git a/packages/pixel/CHANGELOG.md b/packages/pixel/CHANGELOG.md index f358d1a39c..ec47503044 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. +## [0.3.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/pixel@0.3.0...@thi.ng/pixel@0.3.1) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/pixel + + + + + # [0.3.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/pixel@0.2.0...@thi.ng/pixel@0.3.0) (2020-05-29) diff --git a/packages/pixel/package.json b/packages/pixel/package.json index 7b03e6ada1..89473354b1 100644 --- a/packages/pixel/package.json +++ b/packages/pixel/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/pixel", - "version": "0.3.0", + "version": "0.3.1", "description": "Typed array backed, packed integer and unpacked floating point pixel buffers w/ customizable formats, blitting, dithering, conversions", "module": "./index.js", "main": "./lib/index.js", @@ -43,10 +43,10 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", + "@thi.ng/api": "^6.11.0", "@thi.ng/checks": "^2.7.0", "@thi.ng/math": "^1.7.10", - "@thi.ng/porter-duff": "^0.1.19", + "@thi.ng/porter-duff": "^0.1.20", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/pointfree-lang/CHANGELOG.md b/packages/pointfree-lang/CHANGELOG.md index cb63b54da2..2c5eed8bfa 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.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/pointfree-lang@1.4.3...@thi.ng/pointfree-lang@1.4.4) (2020-06-01) + +**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 7d01a0e49e..0c518c264e 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.3", + "version": "1.4.4", "description": "Forth style syntax layer/compiler & CLI for the @thi.ng/pointfree DSL", "module": "./index.js", "main": "./lib/index.js", @@ -47,10 +47,10 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", + "@thi.ng/api": "^6.11.0", "@thi.ng/bench": "^2.0.12", "@thi.ng/errors": "^1.2.14", - "@thi.ng/pointfree": "^2.0.4", + "@thi.ng/pointfree": "^2.0.5", "commander": "^5.1.0", "tslib": "^1.12.0" }, diff --git a/packages/pointfree/CHANGELOG.md b/packages/pointfree/CHANGELOG.md index fd1c800859..1f49f71f2a 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.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/pointfree@2.0.4...@thi.ng/pointfree@2.0.5) (2020-06-01) + +**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 8b3c1fa1c3..718af06344 100644 --- a/packages/pointfree/package.json +++ b/packages/pointfree/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/pointfree", - "version": "2.0.4", + "version": "2.0.5", "description": "Pointfree functional composition / Forth style stack execution engine", "module": "./index.js", "main": "./lib/index.js", @@ -43,9 +43,9 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", + "@thi.ng/api": "^6.11.0", "@thi.ng/checks": "^2.7.0", - "@thi.ng/compose": "^1.4.7", + "@thi.ng/compose": "^1.4.8", "@thi.ng/equiv": "^1.0.23", "@thi.ng/errors": "^1.2.14", "tslib": "^1.12.0" diff --git a/packages/poisson/CHANGELOG.md b/packages/poisson/CHANGELOG.md index 92405c60e4..2a593d9eed 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.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/poisson@1.1.0...@thi.ng/poisson@1.1.1) (2020-06-01) + +**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 b750b70865..cc7142d7d0 100644 --- a/packages/poisson/package.json +++ b/packages/poisson/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/poisson", - "version": "1.1.0", + "version": "1.1.1", "description": "nD Stratified grid and Poisson-disc sampling w/ support for spatial density functions and custom PRNGs", "module": "./index.js", "main": "./lib/index.js", @@ -44,10 +44,10 @@ }, "dependencies": { "@thi.ng/checks": "^2.7.0", - "@thi.ng/geom-api": "^1.0.18", - "@thi.ng/random": "^1.4.9", - "@thi.ng/transducers": "^6.6.0", - "@thi.ng/vectors": "^4.4.1", + "@thi.ng/geom-api": "^1.0.19", + "@thi.ng/random": "^1.4.10", + "@thi.ng/transducers": "^6.7.0", + "@thi.ng/vectors": "^4.4.2", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/porter-duff/CHANGELOG.md b/packages/porter-duff/CHANGELOG.md index c81030290e..f34d6fb2bb 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. +## [0.1.20](https://github.com/thi-ng/umbrella/compare/@thi.ng/porter-duff@0.1.19...@thi.ng/porter-duff@0.1.20) (2020-06-01) + +**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 f6ca1da5b6..c02b49d394 100644 --- a/packages/porter-duff/package.json +++ b/packages/porter-duff/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/porter-duff", - "version": "0.1.19", + "version": "0.1.20", "description": "Porter-Duff operators for packed ints & float-array alpha compositing", "module": "./index.js", "main": "./lib/index.js", @@ -43,7 +43,7 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", + "@thi.ng/api": "^6.11.0", "@thi.ng/math": "^1.7.10", "tslib": "^1.12.0" }, diff --git a/packages/ramp/CHANGELOG.md b/packages/ramp/CHANGELOG.md index 270f30d1b9..5c9c6e5984 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. +## [0.1.19](https://github.com/thi-ng/umbrella/compare/@thi.ng/ramp@0.1.18...@thi.ng/ramp@0.1.19) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/ramp + + + + + ## [0.1.18](https://github.com/thi-ng/umbrella/compare/@thi.ng/ramp@0.1.17...@thi.ng/ramp@0.1.18) (2020-05-29) **Note:** Version bump only for package @thi.ng/ramp diff --git a/packages/ramp/package.json b/packages/ramp/package.json index 23a8e72c19..e563e39f83 100644 --- a/packages/ramp/package.json +++ b/packages/ramp/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/ramp", - "version": "0.1.18", + "version": "0.1.19", "description": "Parametric interpolated 1D lookup tables for remapping values", "module": "./index.js", "main": "./lib/index.js", @@ -43,12 +43,12 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", - "@thi.ng/arrays": "^0.6.7", - "@thi.ng/compare": "^1.3.6", + "@thi.ng/api": "^6.11.0", + "@thi.ng/arrays": "^0.6.8", + "@thi.ng/compare": "^1.3.7", "@thi.ng/math": "^1.7.10", - "@thi.ng/transducers": "^6.6.0", - "@thi.ng/vectors": "^4.4.1", + "@thi.ng/transducers": "^6.7.0", + "@thi.ng/vectors": "^4.4.2", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/random/CHANGELOG.md b/packages/random/CHANGELOG.md index dbd13f0658..7d45a641ff 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. +## [1.4.10](https://github.com/thi-ng/umbrella/compare/@thi.ng/random@1.4.9...@thi.ng/random@1.4.10) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/random + + + + + # [1.4.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/random@1.3.2...@thi.ng/random@1.4.0) (2020-03-01) diff --git a/packages/random/package.json b/packages/random/package.json index 14d8cdd64e..8ec1704d49 100644 --- a/packages/random/package.json +++ b/packages/random/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/random", - "version": "1.4.9", + "version": "1.4.10", "description": "Pseudo-random number generators w/ unified API", "module": "./index.js", "main": "./lib/index.js", @@ -43,7 +43,7 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", + "@thi.ng/api": "^6.11.0", "@thi.ng/checks": "^2.7.0", "tslib": "^1.12.0" }, diff --git a/packages/range-coder/CHANGELOG.md b/packages/range-coder/CHANGELOG.md index f9010d740d..f886506d98 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.45](https://github.com/thi-ng/umbrella/compare/@thi.ng/range-coder@1.0.44...@thi.ng/range-coder@1.0.45) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/range-coder + + + + + ## [1.0.44](https://github.com/thi-ng/umbrella/compare/@thi.ng/range-coder@1.0.43...@thi.ng/range-coder@1.0.44) (2020-05-29) **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 5b279ad9da..0ee557e89e 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.44", + "version": "1.0.45", "description": "Binary data range encoder / decoder", "module": "./index.js", "main": "./lib/index.js", @@ -34,7 +34,7 @@ "devDependencies": { "@istanbuljs/nyc-config-typescript": "^1.0.1", "@microsoft/api-extractor": "^7.8.0", - "@thi.ng/transducers": "^6.6.0", + "@thi.ng/transducers": "^6.7.0", "@types/mocha": "^7.0.2", "@types/node": "^14.0.1", "mocha": "^7.1.2", diff --git a/packages/resolve-map/CHANGELOG.md b/packages/resolve-map/CHANGELOG.md index 2dd60baf2b..289276af8f 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.1.25](https://github.com/thi-ng/umbrella/compare/@thi.ng/resolve-map@4.1.24...@thi.ng/resolve-map@4.1.25) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/resolve-map + + + + + ## [4.1.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/resolve-map@4.1.1...@thi.ng/resolve-map@4.1.2) (2019-07-08) ### Bug Fixes diff --git a/packages/resolve-map/package.json b/packages/resolve-map/package.json index 51c1e38e26..23a73f2cf0 100644 --- a/packages/resolve-map/package.json +++ b/packages/resolve-map/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/resolve-map", - "version": "4.1.24", + "version": "4.1.25", "description": "DAG resolution of vanilla objects & arrays with internally linked values", "module": "./index.js", "main": "./lib/index.js", @@ -42,7 +42,7 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", + "@thi.ng/api": "^6.11.0", "@thi.ng/checks": "^2.7.0", "@thi.ng/errors": "^1.2.14", "@thi.ng/paths": "^4.0.7", diff --git a/packages/router/CHANGELOG.md b/packages/router/CHANGELOG.md index 8340d07a82..2b37b4e06e 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.22](https://github.com/thi-ng/umbrella/compare/@thi.ng/router@2.0.21...@thi.ng/router@2.0.22) (2020-06-01) + +**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 c17704cb49..59f613339c 100644 --- a/packages/router/package.json +++ b/packages/router/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/router", - "version": "2.0.21", + "version": "2.0.22", "description": "Generic router for browser & non-browser based applications", "module": "./index.js", "main": "./lib/index.js", @@ -43,7 +43,7 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", + "@thi.ng/api": "^6.11.0", "@thi.ng/checks": "^2.7.0", "@thi.ng/equiv": "^1.0.23", "@thi.ng/errors": "^1.2.14", diff --git a/packages/rstream-csp/CHANGELOG.md b/packages/rstream-csp/CHANGELOG.md index 37bb031900..e229bba202 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.23](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-csp@2.0.22...@thi.ng/rstream-csp@2.0.23) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/rstream-csp + + + + + ## [2.0.22](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-csp@2.0.21...@thi.ng/rstream-csp@2.0.22) (2020-05-29) **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 495e6c1493..ee280b6887 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.22", + "version": "2.0.23", "description": "@thi.ng/csp bridge module for @thi.ng/rstream", "module": "./index.js", "main": "./lib/index.js", @@ -43,8 +43,8 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/csp": "^1.1.24", - "@thi.ng/rstream": "^4.3.3", + "@thi.ng/csp": "^1.1.25", + "@thi.ng/rstream": "^4.3.4", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/rstream-dot/CHANGELOG.md b/packages/rstream-dot/CHANGELOG.md index 357838bf3f..acfe336063 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.1.30](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-dot@1.1.29...@thi.ng/rstream-dot@1.1.30) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/rstream-dot + + + + + ## [1.1.29](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-dot@1.1.28...@thi.ng/rstream-dot@1.1.29) (2020-05-29) **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 84e4c0ee4b..4b9691a489 100644 --- a/packages/rstream-dot/package.json +++ b/packages/rstream-dot/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-dot", - "version": "1.1.29", + "version": "1.1.30", "description": "Graphviz DOT conversion of @thi.ng/rstream dataflow graph topologies", "module": "./index.js", "main": "./lib/index.js", @@ -43,7 +43,7 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/rstream": "^4.3.3", + "@thi.ng/rstream": "^4.3.4", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/rstream-gestures/CHANGELOG.md b/packages/rstream-gestures/CHANGELOG.md index 807f833133..eb5b803063 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. +## [2.0.22](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-gestures@2.0.21...@thi.ng/rstream-gestures@2.0.22) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/rstream-gestures + + + + + ## [2.0.21](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-gestures@2.0.20...@thi.ng/rstream-gestures@2.0.21) (2020-05-29) **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 1662e73ee3..d9aabb6122 100644 --- a/packages/rstream-gestures/package.json +++ b/packages/rstream-gestures/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-gestures", - "version": "2.0.21", + "version": "2.0.22", "description": "Unified mouse, mouse wheel & multi-touch event stream abstraction", "module": "./index.js", "main": "./lib/index.js", @@ -43,11 +43,11 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", + "@thi.ng/api": "^6.11.0", "@thi.ng/checks": "^2.7.0", "@thi.ng/math": "^1.7.10", - "@thi.ng/rstream": "^4.3.3", - "@thi.ng/transducers": "^6.6.0", + "@thi.ng/rstream": "^4.3.4", + "@thi.ng/transducers": "^6.7.0", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/rstream-graph/CHANGELOG.md b/packages/rstream-graph/CHANGELOG.md index 4f74b5a37d..93aac886c7 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.23](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-graph@3.2.22...@thi.ng/rstream-graph@3.2.23) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/rstream-graph + + + + + ## [3.2.22](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-graph@3.2.21...@thi.ng/rstream-graph@3.2.22) (2020-05-29) **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 8879ce5b00..c6d230543a 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.22", + "version": "3.2.23", "description": "Declarative dataflow graph construction for @thi.ng/rstream", "module": "./index.js", "main": "./lib/index.js", @@ -43,13 +43,13 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", + "@thi.ng/api": "^6.11.0", "@thi.ng/checks": "^2.7.0", "@thi.ng/errors": "^1.2.14", "@thi.ng/paths": "^4.0.7", - "@thi.ng/resolve-map": "^4.1.24", - "@thi.ng/rstream": "^4.3.3", - "@thi.ng/transducers": "^6.6.0", + "@thi.ng/resolve-map": "^4.1.25", + "@thi.ng/rstream": "^4.3.4", + "@thi.ng/transducers": "^6.7.0", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/rstream-log-file/CHANGELOG.md b/packages/rstream-log-file/CHANGELOG.md index 29266e6c31..471b8a35e6 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. +## [0.1.45](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log-file@0.1.44...@thi.ng/rstream-log-file@0.1.45) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/rstream-log-file + + + + + ## [0.1.44](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log-file@0.1.43...@thi.ng/rstream-log-file@0.1.44) (2020-05-29) **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 d4d21c5149..683e941c37 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": "0.1.44", + "version": "0.1.45", "description": "File output handler for structured, multilevel & hierarchical loggers based on @thi.ng/rstream", "module": "./index.js", "main": "./lib/index.js", @@ -43,7 +43,7 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/rstream": "^4.3.3", + "@thi.ng/rstream": "^4.3.4", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/rstream-log/CHANGELOG.md b/packages/rstream-log/CHANGELOG.md index f15242c5ca..c2a658f8c8 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.1.30](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log@3.1.29...@thi.ng/rstream-log@3.1.30) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/rstream-log + + + + + ## [3.1.29](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log@3.1.28...@thi.ng/rstream-log@3.1.29) (2020-05-29) **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 51998ceb6d..b196335ef1 100644 --- a/packages/rstream-log/package.json +++ b/packages/rstream-log/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-log", - "version": "3.1.29", + "version": "3.1.30", "description": "Structured, multilevel & hierarchical loggers based on @thi.ng/rstream", "module": "./index.js", "main": "./lib/index.js", @@ -43,11 +43,11 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", + "@thi.ng/api": "^6.11.0", "@thi.ng/checks": "^2.7.0", "@thi.ng/errors": "^1.2.14", - "@thi.ng/rstream": "^4.3.3", - "@thi.ng/transducers": "^6.6.0", + "@thi.ng/rstream": "^4.3.4", + "@thi.ng/transducers": "^6.7.0", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/rstream-query/CHANGELOG.md b/packages/rstream-query/CHANGELOG.md index 2e95459a8b..69c505c469 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.30](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-query@1.1.29...@thi.ng/rstream-query@1.1.30) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/rstream-query + + + + + ## [1.1.29](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-query@1.1.28...@thi.ng/rstream-query@1.1.29) (2020-05-29) **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 5a160b5216..515292f8d7 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.29", + "version": "1.1.30", "description": "@thi.ng/rstream based triple store & reactive query engine", "module": "./index.js", "main": "./lib/index.js", @@ -43,15 +43,15 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", - "@thi.ng/associative": "^4.0.9", + "@thi.ng/api": "^6.11.0", + "@thi.ng/associative": "^4.0.10", "@thi.ng/checks": "^2.7.0", "@thi.ng/equiv": "^1.0.23", "@thi.ng/errors": "^1.2.14", "@thi.ng/math": "^1.7.10", - "@thi.ng/rstream": "^4.3.3", - "@thi.ng/rstream-dot": "^1.1.29", - "@thi.ng/transducers": "^6.6.0", + "@thi.ng/rstream": "^4.3.4", + "@thi.ng/rstream-dot": "^1.1.30", + "@thi.ng/transducers": "^6.7.0", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/rstream/CHANGELOG.md b/packages/rstream/CHANGELOG.md index dc68b1a07c..9209f7c068 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. +## [4.3.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream@4.3.3...@thi.ng/rstream@4.3.4) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/rstream + + + + + ## [4.3.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream@4.3.2...@thi.ng/rstream@4.3.3) (2020-05-29) **Note:** Version bump only for package @thi.ng/rstream diff --git a/packages/rstream/package.json b/packages/rstream/package.json index 1789498d57..95f39ad059 100644 --- a/packages/rstream/package.json +++ b/packages/rstream/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream", - "version": "4.3.3", + "version": "4.3.4", "description": "Reactive streams & subscription primitives for constructing dataflow graphs / pipelines", "module": "./index.js", "main": "./lib/index.js", @@ -43,13 +43,13 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", - "@thi.ng/associative": "^4.0.9", - "@thi.ng/atom": "^4.1.8", + "@thi.ng/api": "^6.11.0", + "@thi.ng/associative": "^4.0.10", + "@thi.ng/atom": "^4.1.9", "@thi.ng/checks": "^2.7.0", "@thi.ng/errors": "^1.2.14", "@thi.ng/paths": "^4.0.7", - "@thi.ng/transducers": "^6.6.0", + "@thi.ng/transducers": "^6.7.0", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/sax/CHANGELOG.md b/packages/sax/CHANGELOG.md index dda464fce4..391f115be0 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.25](https://github.com/thi-ng/umbrella/compare/@thi.ng/sax@1.1.24...@thi.ng/sax@1.1.25) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/sax + + + + + ## [1.1.24](https://github.com/thi-ng/umbrella/compare/@thi.ng/sax@1.1.23...@thi.ng/sax@1.1.24) (2020-05-29) **Note:** Version bump only for package @thi.ng/sax diff --git a/packages/sax/package.json b/packages/sax/package.json index 2c21782d07..954b013d55 100644 --- a/packages/sax/package.json +++ b/packages/sax/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/sax", - "version": "1.1.24", + "version": "1.1.25", "description": "Transducer-based, SAX-like, non-validating, speedy & tiny XML parser", "module": "./index.js", "main": "./lib/index.js", @@ -43,9 +43,9 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", - "@thi.ng/transducers": "^6.6.0", - "@thi.ng/transducers-fsm": "^1.1.24", + "@thi.ng/api": "^6.11.0", + "@thi.ng/transducers": "^6.7.0", + "@thi.ng/transducers-fsm": "^1.1.25", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/scenegraph/CHANGELOG.md b/packages/scenegraph/CHANGELOG.md index 2f946ee23c..d66084e0dd 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.1.20](https://github.com/thi-ng/umbrella/compare/@thi.ng/scenegraph@0.1.19...@thi.ng/scenegraph@0.1.20) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/scenegraph + + + + + ## [0.1.19](https://github.com/thi-ng/umbrella/compare/@thi.ng/scenegraph@0.1.18...@thi.ng/scenegraph@0.1.19) (2020-05-29) **Note:** Version bump only for package @thi.ng/scenegraph diff --git a/packages/scenegraph/package.json b/packages/scenegraph/package.json index 29ead84141..f45db1b368 100644 --- a/packages/scenegraph/package.json +++ b/packages/scenegraph/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/scenegraph", - "version": "0.1.19", + "version": "0.1.20", "description": "Extensible 2D/3D scene graph with @thi.ng/hdom-canvas support", "module": "./index.js", "main": "./lib/index.js", @@ -43,10 +43,10 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", + "@thi.ng/api": "^6.11.0", "@thi.ng/checks": "^2.7.0", - "@thi.ng/matrices": "^0.6.16", - "@thi.ng/vectors": "^4.4.1", + "@thi.ng/matrices": "^0.6.17", + "@thi.ng/vectors": "^4.4.2", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/seq/CHANGELOG.md b/packages/seq/CHANGELOG.md index 483c99bc6d..4f6a0ac4ed 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.14](https://github.com/thi-ng/umbrella/compare/@thi.ng/seq@0.2.13...@thi.ng/seq@0.2.14) (2020-06-01) + +**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 46dbfaa875..24ed5735bc 100644 --- a/packages/seq/package.json +++ b/packages/seq/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/seq", - "version": "0.2.13", + "version": "0.2.14", "description": "Various implementations of the @thi.ng/api `ISeq` interface / sequence abstraction", "module": "./index.js", "main": "./lib/index.js", @@ -43,7 +43,7 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", + "@thi.ng/api": "^6.11.0", "@thi.ng/checks": "^2.7.0", "tslib": "^1.12.0" }, diff --git a/packages/sexpr/CHANGELOG.md b/packages/sexpr/CHANGELOG.md index 563d1a12c5..b911fa5945 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.17](https://github.com/thi-ng/umbrella/compare/@thi.ng/sexpr@0.2.16...@thi.ng/sexpr@0.2.17) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/sexpr + + + + + # [0.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/sexpr@0.1.0...@thi.ng/sexpr@0.2.0) (2019-09-23) ### Features diff --git a/packages/sexpr/package.json b/packages/sexpr/package.json index 36ca2c2708..e1ba48dd96 100644 --- a/packages/sexpr/package.json +++ b/packages/sexpr/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/sexpr", - "version": "0.2.16", + "version": "0.2.17", "description": "Extensible S-Expression parser & runtime infrastructure", "module": "./index.js", "main": "./lib/index.js", @@ -43,9 +43,9 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", + "@thi.ng/api": "^6.11.0", "@thi.ng/checks": "^2.7.0", - "@thi.ng/defmulti": "^1.2.15", + "@thi.ng/defmulti": "^1.2.16", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/shader-ast-glsl/CHANGELOG.md b/packages/shader-ast-glsl/CHANGELOG.md index 67eef4715f..0038e22107 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.1.28](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-glsl@0.1.27...@thi.ng/shader-ast-glsl@0.1.28) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/shader-ast-glsl + + + + + ## [0.1.27](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-glsl@0.1.26...@thi.ng/shader-ast-glsl@0.1.27) (2020-05-29) **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 573cfe8485..39eba5a7fd 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.1.27", + "version": "0.1.28", "description": "Customizable GLSL code generator for @thi.ng/shader-ast", "module": "./index.js", "main": "./lib/index.js", @@ -43,10 +43,10 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", + "@thi.ng/api": "^6.11.0", "@thi.ng/checks": "^2.7.0", "@thi.ng/errors": "^1.2.14", - "@thi.ng/shader-ast": "^0.3.21", + "@thi.ng/shader-ast": "^0.3.22", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/shader-ast-js/CHANGELOG.md b/packages/shader-ast-js/CHANGELOG.md index c5c99df9d1..6857a2b795 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.4.24](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-js@0.4.23...@thi.ng/shader-ast-js@0.4.24) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/shader-ast-js + + + + + ## [0.4.23](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-js@0.4.22...@thi.ng/shader-ast-js@0.4.23) (2020-05-29) **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 550397b726..30e54617a5 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.4.23", + "version": "0.4.24", "description": "Customizable JS code generator, compiler & runtime for @thi.ng/shader-ast", "module": "./index.js", "main": "./lib/index.js", @@ -43,14 +43,14 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", + "@thi.ng/api": "^6.11.0", "@thi.ng/checks": "^2.7.0", "@thi.ng/errors": "^1.2.14", "@thi.ng/math": "^1.7.10", - "@thi.ng/matrices": "^0.6.16", - "@thi.ng/pixel": "^0.3.0", - "@thi.ng/shader-ast": "^0.3.21", - "@thi.ng/vectors": "^4.4.1", + "@thi.ng/matrices": "^0.6.17", + "@thi.ng/pixel": "^0.3.1", + "@thi.ng/shader-ast": "^0.3.22", + "@thi.ng/vectors": "^4.4.2", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/shader-ast-stdlib/CHANGELOG.md b/packages/shader-ast-stdlib/CHANGELOG.md index 63d1ac82df..225c2d7832 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.3.21](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-stdlib@0.3.20...@thi.ng/shader-ast-stdlib@0.3.21) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/shader-ast-stdlib + + + + + ## [0.3.20](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-stdlib@0.3.19...@thi.ng/shader-ast-stdlib@0.3.20) (2020-05-29) **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 37b2f657de..c13080d174 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.3.20", + "version": "0.3.21", "description": "Function collection for modular GPGPU / shader programming with @thi.ng/shader-ast", "module": "./index.js", "main": "./lib/index.js", @@ -43,7 +43,7 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/shader-ast": "^0.3.21", + "@thi.ng/shader-ast": "^0.3.22", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/shader-ast/CHANGELOG.md b/packages/shader-ast/CHANGELOG.md index e69b064228..23d00c98f3 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.3.22](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast@0.3.21...@thi.ng/shader-ast@0.3.22) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/shader-ast + + + + + ## [0.3.21](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast@0.3.20...@thi.ng/shader-ast@0.3.21) (2020-05-29) **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 92f1662d65..111a5360d9 100644 --- a/packages/shader-ast/package.json +++ b/packages/shader-ast/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/shader-ast", - "version": "0.3.21", + "version": "0.3.22", "description": "DSL to define shader code in TypeScript and cross-compile to GLSL, JS and other targets", "module": "./index.js", "main": "./lib/index.js", @@ -43,10 +43,10 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", + "@thi.ng/api": "^6.11.0", "@thi.ng/checks": "^2.7.0", - "@thi.ng/defmulti": "^1.2.15", - "@thi.ng/dgraph": "^1.2.9", + "@thi.ng/defmulti": "^1.2.16", + "@thi.ng/dgraph": "^1.2.10", "@thi.ng/errors": "^1.2.14", "tslib": "^1.12.0" }, diff --git a/packages/simd/CHANGELOG.md b/packages/simd/CHANGELOG.md index f8372d8a8f..4ed7430d6a 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.2.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/simd@0.2.1...@thi.ng/simd@0.2.2) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/simd + + + + + ## [0.2.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/simd@0.2.0...@thi.ng/simd@0.2.1) (2020-05-29) **Note:** Version bump only for package @thi.ng/simd diff --git a/packages/simd/package.json b/packages/simd/package.json index 7dc0a696f5..c2382533ae 100644 --- a/packages/simd/package.json +++ b/packages/simd/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/simd", - "version": "0.2.1", + "version": "0.2.2", "description": "WASM based SIMD vector operations for batch processing", "module": "./index.js", "main": "./lib/index.js", @@ -47,8 +47,8 @@ }, "dependencies": { "@thi.ng/checks": "^2.7.0", - "@thi.ng/transducers": "^6.6.0", - "@thi.ng/transducers-binary": "^0.5.14", + "@thi.ng/transducers": "^6.7.0", + "@thi.ng/transducers-binary": "^0.5.15", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/soa/CHANGELOG.md b/packages/soa/CHANGELOG.md index c398bf0113..795f778657 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.1.21](https://github.com/thi-ng/umbrella/compare/@thi.ng/soa@0.1.20...@thi.ng/soa@0.1.21) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/soa + + + + + ## [0.1.20](https://github.com/thi-ng/umbrella/compare/@thi.ng/soa@0.1.19...@thi.ng/soa@0.1.20) (2020-05-29) **Note:** Version bump only for package @thi.ng/soa diff --git a/packages/soa/package.json b/packages/soa/package.json index 3ae5da60c2..9756523e8a 100644 --- a/packages/soa/package.json +++ b/packages/soa/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/soa", - "version": "0.1.20", + "version": "0.1.21", "description": "SOA & AOS memory mapped structured views with optional & extensible serialization", "module": "./index.js", "main": "./lib/index.js", @@ -44,10 +44,10 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", + "@thi.ng/api": "^6.11.0", "@thi.ng/binary": "^2.0.7", - "@thi.ng/transducers-binary": "^0.5.14", - "@thi.ng/vectors": "^4.4.1", + "@thi.ng/transducers-binary": "^0.5.15", + "@thi.ng/vectors": "^4.4.2", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/sparse/CHANGELOG.md b/packages/sparse/CHANGELOG.md index 3e4e696366..d95f919b62 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.41](https://github.com/thi-ng/umbrella/compare/@thi.ng/sparse@0.1.40...@thi.ng/sparse@0.1.41) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/sparse + + + + + ## [0.1.40](https://github.com/thi-ng/umbrella/compare/@thi.ng/sparse@0.1.39...@thi.ng/sparse@0.1.40) (2020-05-29) **Note:** Version bump only for package @thi.ng/sparse diff --git a/packages/sparse/package.json b/packages/sparse/package.json index d56411e8be..78a821829b 100644 --- a/packages/sparse/package.json +++ b/packages/sparse/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/sparse", - "version": "0.1.40", + "version": "0.1.41", "description": "Sparse vector & matrix implementations", "module": "./index.js", "main": "./lib/index.js", @@ -43,8 +43,8 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", - "@thi.ng/transducers": "^6.6.0", + "@thi.ng/api": "^6.11.0", + "@thi.ng/transducers": "^6.7.0", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/strings/CHANGELOG.md b/packages/strings/CHANGELOG.md index 4bb9343e09..489c33539f 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. +## [1.8.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/strings@1.8.8...@thi.ng/strings@1.8.9) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/strings + + + + + # [1.8.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/strings@1.7.0...@thi.ng/strings@1.8.0) (2020-03-28) diff --git a/packages/strings/package.json b/packages/strings/package.json index 38fb7bc9ec..51fc0ffa03 100644 --- a/packages/strings/package.json +++ b/packages/strings/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/strings", - "version": "1.8.8", + "version": "1.8.9", "description": "Various string formatting & utility functions", "module": "./index.js", "main": "./lib/index.js", @@ -43,9 +43,9 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", + "@thi.ng/api": "^6.11.0", "@thi.ng/errors": "^1.2.14", - "@thi.ng/memoize": "^2.0.11", + "@thi.ng/memoize": "^2.0.12", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/system/CHANGELOG.md b/packages/system/CHANGELOG.md index 30d8167baa..4f661f4d13 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. +## [0.2.10](https://github.com/thi-ng/umbrella/compare/@thi.ng/system@0.2.9...@thi.ng/system@0.2.10) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/system + + + + + ## [0.2.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/system@0.2.8...@thi.ng/system@0.2.9) (2020-05-29) **Note:** Version bump only for package @thi.ng/system diff --git a/packages/system/package.json b/packages/system/package.json index dd216d0510..f2e854b8d4 100644 --- a/packages/system/package.json +++ b/packages/system/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/system", - "version": "0.2.9", + "version": "0.2.10", "description": "Minimal DI / life cycle container for stateful app components", "module": "./index.js", "main": "./lib/index.js", @@ -43,8 +43,8 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", - "@thi.ng/dgraph": "^1.2.9", + "@thi.ng/api": "^6.11.0", + "@thi.ng/dgraph": "^1.2.10", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/text-canvas/CHANGELOG.md b/packages/text-canvas/CHANGELOG.md index 84f6bbe361..d0e8a103d4 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. +## [0.2.14](https://github.com/thi-ng/umbrella/compare/@thi.ng/text-canvas@0.2.13...@thi.ng/text-canvas@0.2.14) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/text-canvas + + + + + ## [0.2.13](https://github.com/thi-ng/umbrella/compare/@thi.ng/text-canvas@0.2.12...@thi.ng/text-canvas@0.2.13) (2020-05-29) **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 6591d10851..dd6fc641fe 100644 --- a/packages/text-canvas/package.json +++ b/packages/text-canvas/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/text-canvas", - "version": "0.2.13", + "version": "0.2.14", "description": "Text based canvas, drawing, tables with arbitrary formatting (incl. ANSI/HTML)", "module": "./index.js", "main": "./lib/index.js", @@ -44,12 +44,12 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", - "@thi.ng/arrays": "^0.6.7", - "@thi.ng/geom-clip-line": "^1.0.16", + "@thi.ng/api": "^6.11.0", + "@thi.ng/arrays": "^0.6.8", + "@thi.ng/geom-clip-line": "^1.0.17", "@thi.ng/math": "^1.7.10", - "@thi.ng/memoize": "^2.0.11", - "@thi.ng/transducers": "^6.6.0", + "@thi.ng/memoize": "^2.0.12", + "@thi.ng/transducers": "^6.7.0", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/transducers-binary/CHANGELOG.md b/packages/transducers-binary/CHANGELOG.md index 28f24068d4..97378f6253 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. +## [0.5.15](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-binary@0.5.14...@thi.ng/transducers-binary@0.5.15) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/transducers-binary + + + + + ## [0.5.14](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-binary@0.5.13...@thi.ng/transducers-binary@0.5.14) (2020-05-29) **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 5f175adb9f..f2b5a171b8 100644 --- a/packages/transducers-binary/package.json +++ b/packages/transducers-binary/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/transducers-binary", - "version": "0.5.14", + "version": "0.5.15", "description": "Binary data related transducers & reducers", "module": "./index.js", "main": "./lib/index.js", @@ -43,10 +43,10 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/compose": "^1.4.7", - "@thi.ng/random": "^1.4.9", - "@thi.ng/strings": "^1.8.8", - "@thi.ng/transducers": "^6.6.0", + "@thi.ng/compose": "^1.4.8", + "@thi.ng/random": "^1.4.10", + "@thi.ng/strings": "^1.8.9", + "@thi.ng/transducers": "^6.7.0", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/transducers-fsm/CHANGELOG.md b/packages/transducers-fsm/CHANGELOG.md index d4cb11307f..9004ad7a89 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.25](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-fsm@1.1.24...@thi.ng/transducers-fsm@1.1.25) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/transducers-fsm + + + + + ## [1.1.24](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-fsm@1.1.23...@thi.ng/transducers-fsm@1.1.24) (2020-05-29) **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 8ff8cb8f8a..f6cc51a581 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.24", + "version": "1.1.25", "description": "Transducer-based Finite State Machine transformer", "module": "./index.js", "main": "./lib/index.js", @@ -43,8 +43,8 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", - "@thi.ng/transducers": "^6.6.0", + "@thi.ng/api": "^6.11.0", + "@thi.ng/transducers": "^6.7.0", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/transducers-hdom/CHANGELOG.md b/packages/transducers-hdom/CHANGELOG.md index 75d70744cb..4ede4d82e9 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.54](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-hdom@2.0.53...@thi.ng/transducers-hdom@2.0.54) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/transducers-hdom + + + + + ## [2.0.53](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-hdom@2.0.52...@thi.ng/transducers-hdom@2.0.53) (2020-05-29) **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 a2fe34b150..45c2a43eba 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.53", + "version": "2.0.54", "description": "Transducer based UI updater for @thi.ng/hdom", "module": "./index.js", "main": "./lib/index.js", @@ -43,9 +43,9 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/hdom": "^8.0.26", - "@thi.ng/hiccup": "^3.2.23", - "@thi.ng/transducers": "^6.6.0", + "@thi.ng/hdom": "^8.0.27", + "@thi.ng/hiccup": "^3.2.24", + "@thi.ng/transducers": "^6.7.0", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/transducers-patch/CHANGELOG.md b/packages/transducers-patch/CHANGELOG.md index d13ffb5d7e..016823cc5f 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.1.16](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-patch@0.1.15...@thi.ng/transducers-patch@0.1.16) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/transducers-patch + + + + + ## [0.1.15](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-patch@0.1.14...@thi.ng/transducers-patch@0.1.15) (2020-05-29) **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 671c617c08..95d4fda790 100644 --- a/packages/transducers-patch/package.json +++ b/packages/transducers-patch/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/transducers-patch", - "version": "0.1.15", + "version": "0.1.16", "description": "Reducers for patch-based, immutable-by-default array & object editing", "module": "./index.js", "main": "./lib/index.js", @@ -43,11 +43,11 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", + "@thi.ng/api": "^6.11.0", "@thi.ng/checks": "^2.7.0", "@thi.ng/errors": "^1.2.14", "@thi.ng/paths": "^4.0.7", - "@thi.ng/transducers": "^6.6.0", + "@thi.ng/transducers": "^6.7.0", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/transducers-stats/CHANGELOG.md b/packages/transducers-stats/CHANGELOG.md index 244cea001a..54a0de49dc 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.25](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-stats@1.1.24...@thi.ng/transducers-stats@1.1.25) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/transducers-stats + + + + + ## [1.1.24](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-stats@1.1.23...@thi.ng/transducers-stats@1.1.24) (2020-05-29) **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 eab5b030b3..46f1924796 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.24", + "version": "1.1.25", "description": "Transducers for statistical / technical analysis", "module": "./index.js", "main": "./lib/index.js", @@ -44,9 +44,9 @@ }, "dependencies": { "@thi.ng/checks": "^2.7.0", - "@thi.ng/dcons": "^2.2.17", + "@thi.ng/dcons": "^2.2.18", "@thi.ng/errors": "^1.2.14", - "@thi.ng/transducers": "^6.6.0", + "@thi.ng/transducers": "^6.7.0", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/transducers/CHANGELOG.md b/packages/transducers/CHANGELOG.md index 3cdcc1ffae..9c0444a9cc 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. +# [6.7.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers@6.6.0...@thi.ng/transducers@6.7.0) (2020-06-01) + + +### Features + +* **transducers:** add IDeref support slidingWindow() ([13f4184](https://github.com/thi-ng/umbrella/commit/13f4184f755fadb0a585b7e443c1218a7e2df5db)) + + + + + # [6.6.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers@6.5.0...@thi.ng/transducers@6.6.0) (2020-05-29) diff --git a/packages/transducers/package.json b/packages/transducers/package.json index 4dce0fcd7e..d275fdbffe 100644 --- a/packages/transducers/package.json +++ b/packages/transducers/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/transducers", - "version": "6.6.0", + "version": "6.7.0", "description": "Lightweight transducer implementations for ES6 / TypeScript", "module": "./index.js", "main": "./lib/index.js", @@ -43,16 +43,16 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", - "@thi.ng/arrays": "^0.6.7", + "@thi.ng/api": "^6.11.0", + "@thi.ng/arrays": "^0.6.8", "@thi.ng/checks": "^2.7.0", - "@thi.ng/compare": "^1.3.6", - "@thi.ng/compose": "^1.4.7", + "@thi.ng/compare": "^1.3.7", + "@thi.ng/compose": "^1.4.8", "@thi.ng/equiv": "^1.0.23", "@thi.ng/errors": "^1.2.14", "@thi.ng/math": "^1.7.10", - "@thi.ng/random": "^1.4.9", - "@thi.ng/strings": "^1.8.8", + "@thi.ng/random": "^1.4.10", + "@thi.ng/strings": "^1.8.9", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/vector-pools/CHANGELOG.md b/packages/vector-pools/CHANGELOG.md index 0168d00310..4a5c2adeb5 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. +## [1.0.30](https://github.com/thi-ng/umbrella/compare/@thi.ng/vector-pools@1.0.29...@thi.ng/vector-pools@1.0.30) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/vector-pools + + + + + ## [1.0.29](https://github.com/thi-ng/umbrella/compare/@thi.ng/vector-pools@1.0.28...@thi.ng/vector-pools@1.0.29) (2020-05-29) **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 444cd3edf0..711df93220 100644 --- a/packages/vector-pools/package.json +++ b/packages/vector-pools/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/vector-pools", - "version": "1.0.29", + "version": "1.0.30", "description": "Data structures for managing & working with strided, memory mapped vectors", "module": "./index.js", "main": "./lib/index.js", @@ -43,12 +43,12 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", + "@thi.ng/api": "^6.11.0", "@thi.ng/binary": "^2.0.7", "@thi.ng/checks": "^2.7.0", - "@thi.ng/malloc": "^4.1.15", - "@thi.ng/transducers": "^6.6.0", - "@thi.ng/vectors": "^4.4.1", + "@thi.ng/malloc": "^4.1.16", + "@thi.ng/transducers": "^6.7.0", + "@thi.ng/vectors": "^4.4.2", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/vectors/CHANGELOG.md b/packages/vectors/CHANGELOG.md index 652a29e7f0..6b6fad3955 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. +## [4.4.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/vectors@4.4.1...@thi.ng/vectors@4.4.2) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/vectors + + + + + ## [4.4.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/vectors@4.4.0...@thi.ng/vectors@4.4.1) (2020-05-29) **Note:** Version bump only for package @thi.ng/vectors diff --git a/packages/vectors/package.json b/packages/vectors/package.json index 75a3b60c71..bdc5b54eb5 100644 --- a/packages/vectors/package.json +++ b/packages/vectors/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/vectors", - "version": "4.4.1", + "version": "4.4.2", "description": "Optimized 2d/3d/4d and arbitrary length vector operations", "module": "./index.js", "main": "./lib/index.js", @@ -43,15 +43,15 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", + "@thi.ng/api": "^6.11.0", "@thi.ng/binary": "^2.0.7", "@thi.ng/checks": "^2.7.0", "@thi.ng/equiv": "^1.0.23", "@thi.ng/errors": "^1.2.14", "@thi.ng/math": "^1.7.10", - "@thi.ng/memoize": "^2.0.11", - "@thi.ng/random": "^1.4.9", - "@thi.ng/transducers": "^6.6.0", + "@thi.ng/memoize": "^2.0.12", + "@thi.ng/random": "^1.4.10", + "@thi.ng/transducers": "^6.7.0", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/webgl-msdf/CHANGELOG.md b/packages/webgl-msdf/CHANGELOG.md index 3310af48dc..0d7c64240a 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. +## [0.1.34](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl-msdf@0.1.33...@thi.ng/webgl-msdf@0.1.34) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/webgl-msdf + + + + + ## [0.1.33](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl-msdf@0.1.32...@thi.ng/webgl-msdf@0.1.33) (2020-05-29) **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 11fbf7676e..6bb68acfe5 100644 --- a/packages/webgl-msdf/package.json +++ b/packages/webgl-msdf/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/webgl-msdf", - "version": "0.1.33", + "version": "0.1.34", "description": "Multi-channel SDF font rendering & basic text layout for WebGL", "module": "./index.js", "main": "./lib/index.js", @@ -43,12 +43,12 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", - "@thi.ng/shader-ast": "^0.3.21", - "@thi.ng/transducers": "^6.6.0", - "@thi.ng/vector-pools": "^1.0.29", - "@thi.ng/vectors": "^4.4.1", - "@thi.ng/webgl": "^1.0.15", + "@thi.ng/api": "^6.11.0", + "@thi.ng/shader-ast": "^0.3.22", + "@thi.ng/transducers": "^6.7.0", + "@thi.ng/vector-pools": "^1.0.30", + "@thi.ng/vectors": "^4.4.2", + "@thi.ng/webgl": "^1.0.16", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/webgl-shadertoy/CHANGELOG.md b/packages/webgl-shadertoy/CHANGELOG.md index 569b33c491..4a12dd6709 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.21](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl-shadertoy@0.2.20...@thi.ng/webgl-shadertoy@0.2.21) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/webgl-shadertoy + + + + + ## [0.2.20](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl-shadertoy@0.2.19...@thi.ng/webgl-shadertoy@0.2.20) (2020-05-29) **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 e5308955f0..9f3c63e492 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.20", + "version": "0.2.21", "description": "Basic WebGL scaffolding for running interactive fragment shaders via @thi.ng/shader-ast", "module": "./index.js", "main": "./lib/index.js", @@ -43,11 +43,11 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", - "@thi.ng/shader-ast": "^0.3.21", - "@thi.ng/shader-ast-glsl": "^0.1.27", - "@thi.ng/transducers": "^6.6.0", - "@thi.ng/webgl": "^1.0.15", + "@thi.ng/api": "^6.11.0", + "@thi.ng/shader-ast": "^0.3.22", + "@thi.ng/shader-ast-glsl": "^0.1.28", + "@thi.ng/transducers": "^6.7.0", + "@thi.ng/webgl": "^1.0.16", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/webgl/CHANGELOG.md b/packages/webgl/CHANGELOG.md index b8e881c4bd..51b8886b4a 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. +## [1.0.16](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl@1.0.15...@thi.ng/webgl@1.0.16) (2020-06-01) + +**Note:** Version bump only for package @thi.ng/webgl + + + + + ## [1.0.15](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl@1.0.14...@thi.ng/webgl@1.0.15) (2020-05-29) **Note:** Version bump only for package @thi.ng/webgl diff --git a/packages/webgl/package.json b/packages/webgl/package.json index 3f4dd63282..1f088348ce 100644 --- a/packages/webgl/package.json +++ b/packages/webgl/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/webgl", - "version": "1.0.15", + "version": "1.0.16", "description": "WebGL & GLSL abstraction layer", "module": "./index.js", "main": "./lib/index.js", @@ -43,20 +43,20 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", - "@thi.ng/associative": "^4.0.9", + "@thi.ng/api": "^6.11.0", + "@thi.ng/associative": "^4.0.10", "@thi.ng/binary": "^2.0.7", "@thi.ng/checks": "^2.7.0", "@thi.ng/equiv": "^1.0.23", "@thi.ng/errors": "^1.2.14", - "@thi.ng/matrices": "^0.6.16", - "@thi.ng/pixel": "^0.3.0", - "@thi.ng/shader-ast": "^0.3.21", - "@thi.ng/shader-ast-glsl": "^0.1.27", - "@thi.ng/shader-ast-stdlib": "^0.3.20", - "@thi.ng/transducers": "^6.6.0", - "@thi.ng/vector-pools": "^1.0.29", - "@thi.ng/vectors": "^4.4.1", + "@thi.ng/matrices": "^0.6.17", + "@thi.ng/pixel": "^0.3.1", + "@thi.ng/shader-ast": "^0.3.22", + "@thi.ng/shader-ast-glsl": "^0.1.28", + "@thi.ng/shader-ast-stdlib": "^0.3.21", + "@thi.ng/transducers": "^6.7.0", + "@thi.ng/vector-pools": "^1.0.30", + "@thi.ng/vectors": "^4.4.2", "tslib": "^1.12.0" }, "files": [ diff --git a/packages/zipper/CHANGELOG.md b/packages/zipper/CHANGELOG.md index 7dc5672619..451aa12060 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. +## [0.1.16](https://github.com/thi-ng/umbrella/compare/@thi.ng/zipper@0.1.15...@thi.ng/zipper@0.1.16) (2020-06-01) + +**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 49a5227442..bb3f926328 100644 --- a/packages/zipper/package.json +++ b/packages/zipper/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/zipper", - "version": "0.1.15", + "version": "0.1.16", "description": "Functional tree editing, manipulation & navigation", "module": "./index.js", "main": "./lib/index.js", @@ -43,8 +43,8 @@ "typescript": "^3.9.2" }, "dependencies": { - "@thi.ng/api": "^6.10.5", - "@thi.ng/arrays": "^0.6.7", + "@thi.ng/api": "^6.11.0", + "@thi.ng/arrays": "^0.6.8", "@thi.ng/checks": "^2.7.0", "tslib": "^1.12.0" },