diff --git a/packages/adjacency/CHANGELOG.md b/packages/adjacency/CHANGELOG.md index 42b41847cd..f621fbc2e8 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.3.11](https://github.com/thi-ng/umbrella/compare/@thi.ng/adjacency@0.3.10...@thi.ng/adjacency@0.3.11) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/adjacency + + + + + ## [0.3.10](https://github.com/thi-ng/umbrella/compare/@thi.ng/adjacency@0.3.9...@thi.ng/adjacency@0.3.10) (2021-03-27) **Note:** Version bump only for package @thi.ng/adjacency diff --git a/packages/adjacency/package.json b/packages/adjacency/package.json index 0b6f6e4b69..563c8877d3 100644 --- a/packages/adjacency/package.json +++ b/packages/adjacency/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/adjacency", - "version": "0.3.10", + "version": "0.3.11", "description": "Sparse & bitwise adjacency matrices and related functions for directed & undirected graphs", "module": "./index.js", "main": "./lib/index.js", @@ -40,7 +40,7 @@ "devDependencies": { "@istanbuljs/nyc-config-typescript": "^1.0.1", "@microsoft/api-extractor": "^7.13.1", - "@thi.ng/vectors": "^5.1.6", + "@thi.ng/vectors": "^5.1.7", "@types/mocha": "^8.2.0", "@types/node": "^14.14.14", "mocha": "^8.3.0", @@ -53,9 +53,9 @@ "@thi.ng/api": "^7.1.4", "@thi.ng/arrays": "^0.10.9", "@thi.ng/bitfield": "^0.4.8", - "@thi.ng/dcons": "^2.3.18", + "@thi.ng/dcons": "^2.3.19", "@thi.ng/errors": "^1.3.0", - "@thi.ng/sparse": "^0.1.73" + "@thi.ng/sparse": "^0.1.74" }, "files": [ "*.js", diff --git a/packages/args/CHANGELOG.md b/packages/args/CHANGELOG.md index 2c26ff395f..228def10eb 100644 --- a/packages/args/CHANGELOG.md +++ b/packages/args/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.5.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/args@0.4.2...@thi.ng/args@0.5.0) (2021-03-28) + + +### Features + +* **args:** add vec() arg type ([f05cb2a](https://github.com/thi-ng/umbrella/commit/f05cb2a6d0798ef0558775a81dba2d834308747c)) +* **args:** wordwrap usage prefix/suffix, defaults ([325b558](https://github.com/thi-ng/umbrella/commit/325b558f74f8dbfaa2c7de72c6800cdbc8c54acd)) + + + + + ## [0.4.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/args@0.4.1...@thi.ng/args@0.4.2) (2021-03-24) **Note:** Version bump only for package @thi.ng/args diff --git a/packages/args/README.md b/packages/args/README.md index 8048876170..a39f15c448 100644 --- a/packages/args/README.md +++ b/packages/args/README.md @@ -61,7 +61,7 @@ yarn add @thi.ng/args ``` -Package sizes (gzipped, pre-treeshake): ESM: 2.17 KB / CJS: 2.29 KB / UMD: 2.25 KB +Package sizes (gzipped, pre-treeshake): ESM: 2.21 KB / CJS: 2.34 KB / UMD: 2.29 KB ## Dependencies @@ -86,6 +86,7 @@ interface TestArgs { bg: number; type: ImgType; size?: Tuple; + pos?: Tuple; xtra?: { a: number; b: string }; define?: KVDict; } @@ -123,6 +124,9 @@ const specs: Args = { // size: tuple(coerceInt, 2, { hint: "WxH", desc: "Target size" }, "x"), // syntax sugar for above: size: size(2, { hint: "WxH", desc: "Target size" }), + // another version for tuples of floating point values + // pos: tuple(coerceFloat, 2, { desc: "Lat/Lon" }, ","), + pos: vec(2, { desc: "Lat/Lon" }), // JSON string arg xtra: json({ alias: "x", @@ -165,6 +169,7 @@ ts-node index.ts --help -c PATH, --config-path PATH Config file path (CLI args always take precedence over those settings) -D key=val, --define key=val [multiple] Define dict entry +--pos N,N Lat/Lon --size WxH Target size -t ID, --type ID [required] Image type: 'png', 'jpg', 'gif', 'tiff' diff --git a/packages/args/package.json b/packages/args/package.json index b681138612..e3273955d8 100644 --- a/packages/args/package.json +++ b/packages/args/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/args", - "version": "0.4.2", + "version": "0.5.0", "description": "Declarative, functional & typechecked CLI argument/options parser, value coercions etc.", "module": "./index.js", "main": "./lib/index.js", diff --git a/packages/args/src/api.ts b/packages/args/src/api.ts index 337e8251c6..f5893ddbb2 100644 --- a/packages/args/src/api.ts +++ b/packages/args/src/api.ts @@ -123,19 +123,22 @@ export interface UsageOpts { */ color: Partial | false; /** - * If true (default), display argument default values. + * If true (default), display argument default values. Nullish or false + * default values will never be shown. * * @defaultValue true */ showDefaults: boolean; /** - * Prefix content to show before list of options. + * Prefix content to show before list of options. Can contain ANSI control + * seqs and will be automatically word wrapped to given `lineWidth`. * * @default empty string */ prefix: string; /** - * Suffix content to show after list of options. + * Suffix content to show after list of options. Can contain ANSI control + * seqs and will be automatically word wrapped to given `lineWidth`. * * @default empty string */ diff --git a/packages/args/src/args.ts b/packages/args/src/args.ts index 47525298a9..6718f9b98d 100644 --- a/packages/args/src/args.ts +++ b/packages/args/src/args.ts @@ -143,7 +143,7 @@ export const json = >>( }); const $desc = (opts: readonly string[], prefix?: string) => - `${prefix ? prefix + ": " : ""}${opts.map((x) => `'${x}'`).join(", ")}`; + `${prefix ? prefix + ": " : ""}${opts.map((x) => `"${x}"`).join(", ")}`; /** * Returns full {@link ArgSpec} for an enum-like string value arg. The raw CLI @@ -272,3 +272,16 @@ export const size = >>>( spec: S, delim = "x" ) => tuple(coerceInt, size, spec, delim); + +/** + * Syntax sugar for `tuple(coerceFloat, size, {...}, delim)`. + * + * @param size + * @param spec + * @param delim + */ +export const vec = >>>( + size: number, + spec: S, + delim = "," +) => tuple(coerceFloat, size, spec, delim); diff --git a/packages/args/src/usage.ts b/packages/args/src/usage.ts index 700c1a7f2a..8e7fccbea4 100644 --- a/packages/args/src/usage.ts +++ b/packages/args/src/usage.ts @@ -28,8 +28,6 @@ export const usage = >( ? { ...DEFAULT_THEME, ...opts.color } : {}; const indent = repeat(" ", opts.paramWidth!); - const ansi = (x: string, col: number) => - col != null ? `\x1b[${col}m${x}\x1b[0m` : x; const format = (ids: string[]) => ids.map((id) => { const spec: ArgSpecExt = specs[id]; @@ -51,9 +49,11 @@ export const usage = >( ) : ""; const defaults = - opts.showDefaults && spec.default !== undefined + opts.showDefaults && + spec.default != null && + spec.default !== false ? ansi( - ` (default: ${stringify()( + ` (default: ${stringify(true)( spec.defaultHint != undefined ? spec.defaultHint : spec.default @@ -63,11 +63,10 @@ export const usage = >( : ""; return ( padRight(opts.paramWidth!)(params, lengthAnsi(params)) + - wordWrapLines(prefix + (spec.desc || "") + defaults, { - width: opts.lineWidth! - opts.paramWidth!, - splitter: SPLIT_ANSI, - hard: true, - }) + wrap( + prefix + (spec.desc || "") + defaults, + opts.lineWidth! - opts.paramWidth! + ) .map((l, i) => (i > 0 ? indent + l : l)) .join("\n") ); @@ -79,8 +78,20 @@ export const usage = >( ) : [sortedIDs]; return [ - opts.prefix, + ...wrap(opts.prefix, opts.lineWidth!), ...groups.map((ids) => format(ids).join("\n") + "\n"), - opts.suffix, + ...wrap(opts.suffix, opts.lineWidth!), ].join("\n"); }; + +const ansi = (x: string, col: number) => + col != null ? `\x1b[${col}m${x}\x1b[0m` : x; + +const wrap = (str: string | undefined, width: number) => + str + ? wordWrapLines(str, { + width, + splitter: SPLIT_ANSI, + hard: true, + }) + : []; diff --git a/packages/args/tpl.readme.md b/packages/args/tpl.readme.md index 6fd1f8fde6..93daa40252 100644 --- a/packages/args/tpl.readme.md +++ b/packages/args/tpl.readme.md @@ -66,6 +66,7 @@ interface TestArgs { bg: number; type: ImgType; size?: Tuple; + pos?: Tuple; xtra?: { a: number; b: string }; define?: KVDict; } @@ -103,6 +104,9 @@ const specs: Args = { // size: tuple(coerceInt, 2, { hint: "WxH", desc: "Target size" }, "x"), // syntax sugar for above: size: size(2, { hint: "WxH", desc: "Target size" }), + // another version for tuples of floating point values + // pos: tuple(coerceFloat, 2, { desc: "Lat/Lon" }, ","), + pos: vec(2, { desc: "Lat/Lon" }), // JSON string arg xtra: json({ alias: "x", @@ -145,6 +149,7 @@ ts-node index.ts --help -c PATH, --config-path PATH Config file path (CLI args always take precedence over those settings) -D key=val, --define key=val [multiple] Define dict entry +--pos N,N Lat/Lon --size WxH Target size -t ID, --type ID [required] Image type: 'png', 'jpg', 'gif', 'tiff' diff --git a/packages/associative/CHANGELOG.md b/packages/associative/CHANGELOG.md index 7da2f89391..50c1d187f3 100644 --- a/packages/associative/CHANGELOG.md +++ b/packages/associative/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.1.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/associative@5.1.8...@thi.ng/associative@5.1.9) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/associative + + + + + ## [5.1.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/associative@5.1.7...@thi.ng/associative@5.1.8) (2021-03-27) **Note:** Version bump only for package @thi.ng/associative diff --git a/packages/associative/package.json b/packages/associative/package.json index 6e3b43cb43..12efd89e5c 100644 --- a/packages/associative/package.json +++ b/packages/associative/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/associative", - "version": "5.1.8", + "version": "5.1.9", "description": "Alternative Map and Set implementations with customizable equality semantics & supporting operations", "module": "./index.js", "main": "./lib/index.js", @@ -53,10 +53,10 @@ "@thi.ng/binary": "^2.2.4", "@thi.ng/checks": "^2.9.5", "@thi.ng/compare": "^1.3.28", - "@thi.ng/dcons": "^2.3.18", + "@thi.ng/dcons": "^2.3.19", "@thi.ng/equiv": "^1.0.41", "@thi.ng/errors": "^1.3.0", - "@thi.ng/transducers": "^7.6.8", + "@thi.ng/transducers": "^7.6.9", "tslib": "^2.1.0" }, "files": [ diff --git a/packages/bencode/CHANGELOG.md b/packages/bencode/CHANGELOG.md index 14f550f022..dc2f38578a 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.59](https://github.com/thi-ng/umbrella/compare/@thi.ng/bencode@0.3.58...@thi.ng/bencode@0.3.59) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/bencode + + + + + ## [0.3.58](https://github.com/thi-ng/umbrella/compare/@thi.ng/bencode@0.3.57...@thi.ng/bencode@0.3.58) (2021-03-27) **Note:** Version bump only for package @thi.ng/bencode diff --git a/packages/bencode/package.json b/packages/bencode/package.json index 61bccff73e..3894199929 100644 --- a/packages/bencode/package.json +++ b/packages/bencode/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/bencode", - "version": "0.3.58", + "version": "0.3.59", "description": "Bencode binary encoder / decoder with optional UTF8 encoding & floating point support", "module": "./index.js", "main": "./lib/index.js", @@ -54,8 +54,8 @@ "@thi.ng/checks": "^2.9.5", "@thi.ng/defmulti": "^1.3.11", "@thi.ng/errors": "^1.3.0", - "@thi.ng/transducers": "^7.6.8", - "@thi.ng/transducers-binary": "^0.6.14" + "@thi.ng/transducers": "^7.6.9", + "@thi.ng/transducers-binary": "^0.6.15" }, "files": [ "*.js", diff --git a/packages/cache/CHANGELOG.md b/packages/cache/CHANGELOG.md index 557ff7787d..079620da88 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.79](https://github.com/thi-ng/umbrella/compare/@thi.ng/cache@1.0.78...@thi.ng/cache@1.0.79) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/cache + + + + + ## [1.0.78](https://github.com/thi-ng/umbrella/compare/@thi.ng/cache@1.0.77...@thi.ng/cache@1.0.78) (2021-03-27) **Note:** Version bump only for package @thi.ng/cache diff --git a/packages/cache/package.json b/packages/cache/package.json index 5f2a2aa0e7..4361dbcbdf 100644 --- a/packages/cache/package.json +++ b/packages/cache/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/cache", - "version": "1.0.78", + "version": "1.0.79", "description": "In-memory cache implementations with ES6 Map-like API and different eviction strategies", "module": "./index.js", "main": "./lib/index.js", @@ -50,8 +50,8 @@ }, "dependencies": { "@thi.ng/api": "^7.1.4", - "@thi.ng/dcons": "^2.3.18", - "@thi.ng/transducers": "^7.6.8" + "@thi.ng/dcons": "^2.3.19", + "@thi.ng/transducers": "^7.6.9" }, "files": [ "*.js", diff --git a/packages/color/CHANGELOG.md b/packages/color/CHANGELOG.md index f137d56288..8680f0c4c2 100644 --- a/packages/color/CHANGELOG.md +++ b/packages/color/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.1.10](https://github.com/thi-ng/umbrella/compare/@thi.ng/color@3.1.9...@thi.ng/color@3.1.10) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/color + + + + + ## [3.1.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/color@3.1.8...@thi.ng/color@3.1.9) (2021-03-27) **Note:** Version bump only for package @thi.ng/color diff --git a/packages/color/package.json b/packages/color/package.json index c3e3e3072d..8fb4c9eb68 100644 --- a/packages/color/package.json +++ b/packages/color/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/color", - "version": "3.1.9", + "version": "3.1.10", "description": "Array-based color types, CSS parsing, conversions, transformations, declarative theme generation, gradients, presets", "module": "./index.js", "main": "./lib/index.js", @@ -61,8 +61,8 @@ "@thi.ng/math": "^3.3.0", "@thi.ng/random": "^2.3.6", "@thi.ng/strings": "^2.1.0", - "@thi.ng/transducers": "^7.6.8", - "@thi.ng/vectors": "^5.1.6" + "@thi.ng/transducers": "^7.6.9", + "@thi.ng/vectors": "^5.1.7" }, "files": [ "*.js", diff --git a/packages/colored-noise/CHANGELOG.md b/packages/colored-noise/CHANGELOG.md index be9a6dc32f..4f636658fa 100644 --- a/packages/colored-noise/CHANGELOG.md +++ b/packages/colored-noise/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.27](https://github.com/thi-ng/umbrella/compare/@thi.ng/colored-noise@0.1.26...@thi.ng/colored-noise@0.1.27) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/colored-noise + + + + + ## [0.1.26](https://github.com/thi-ng/umbrella/compare/@thi.ng/colored-noise@0.1.25...@thi.ng/colored-noise@0.1.26) (2021-03-27) **Note:** Version bump only for package @thi.ng/colored-noise diff --git a/packages/colored-noise/package.json b/packages/colored-noise/package.json index 3b55a97870..63bb7dd07a 100644 --- a/packages/colored-noise/package.json +++ b/packages/colored-noise/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/colored-noise", - "version": "0.1.26", + "version": "0.1.27", "description": "Customizable O(1) ES6 generators for colored noise", "module": "./index.js", "main": "./lib/index.js", @@ -41,11 +41,11 @@ "@istanbuljs/nyc-config-typescript": "^1.0.1", "@microsoft/api-extractor": "^7.13.1", "@thi.ng/api": "^7.1.4", - "@thi.ng/dsp": "^3.0.14", - "@thi.ng/dsp-io-wav": "^0.1.48", - "@thi.ng/text-canvas": "^0.7.1", - "@thi.ng/transducers": "^7.6.8", - "@thi.ng/vectors": "^5.1.6", + "@thi.ng/dsp": "^3.0.15", + "@thi.ng/dsp-io-wav": "^0.1.49", + "@thi.ng/text-canvas": "^0.7.2", + "@thi.ng/transducers": "^7.6.9", + "@thi.ng/vectors": "^5.1.7", "@types/mocha": "^8.2.0", "@types/node": "^14.14.14", "mocha": "^8.3.0", diff --git a/packages/csp/CHANGELOG.md b/packages/csp/CHANGELOG.md index 28461b11fb..839412c6db 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.59](https://github.com/thi-ng/umbrella/compare/@thi.ng/csp@1.1.58...@thi.ng/csp@1.1.59) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/csp + + + + + ## [1.1.58](https://github.com/thi-ng/umbrella/compare/@thi.ng/csp@1.1.57...@thi.ng/csp@1.1.58) (2021-03-27) **Note:** Version bump only for package @thi.ng/csp diff --git a/packages/csp/package.json b/packages/csp/package.json index 35bfba6225..08a4888b23 100644 --- a/packages/csp/package.json +++ b/packages/csp/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/csp", - "version": "1.1.58", + "version": "1.1.59", "description": "ES6 promise based CSP primitives & operations", "module": "./index.js", "main": "./lib/index.js", @@ -56,9 +56,9 @@ "@thi.ng/api": "^7.1.4", "@thi.ng/arrays": "^0.10.9", "@thi.ng/checks": "^2.9.5", - "@thi.ng/dcons": "^2.3.18", + "@thi.ng/dcons": "^2.3.19", "@thi.ng/errors": "^1.3.0", - "@thi.ng/transducers": "^7.6.8" + "@thi.ng/transducers": "^7.6.9" }, "files": [ "*.js", diff --git a/packages/csv/CHANGELOG.md b/packages/csv/CHANGELOG.md index 81bddd7090..a86f7a368d 100644 --- a/packages/csv/CHANGELOG.md +++ b/packages/csv/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.21](https://github.com/thi-ng/umbrella/compare/@thi.ng/csv@0.1.20...@thi.ng/csv@0.1.21) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/csv + + + + + ## [0.1.20](https://github.com/thi-ng/umbrella/compare/@thi.ng/csv@0.1.19...@thi.ng/csv@0.1.20) (2021-03-27) **Note:** Version bump only for package @thi.ng/csv diff --git a/packages/csv/package.json b/packages/csv/package.json index e80b618953..ab55d3b22a 100644 --- a/packages/csv/package.json +++ b/packages/csv/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/csv", - "version": "0.1.20", + "version": "0.1.21", "description": "Customizable, transducer-based CSV parser/object mapper and transformer", "module": "./index.js", "main": "./lib/index.js", @@ -52,7 +52,7 @@ "@thi.ng/api": "^7.1.4", "@thi.ng/checks": "^2.9.5", "@thi.ng/strings": "^2.1.0", - "@thi.ng/transducers": "^7.6.8" + "@thi.ng/transducers": "^7.6.9" }, "files": [ "*.js", diff --git a/packages/dcons/CHANGELOG.md b/packages/dcons/CHANGELOG.md index 75e815018b..e1f661e810 100644 --- a/packages/dcons/CHANGELOG.md +++ b/packages/dcons/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.3.19](https://github.com/thi-ng/umbrella/compare/@thi.ng/dcons@2.3.18...@thi.ng/dcons@2.3.19) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/dcons + + + + + ## [2.3.18](https://github.com/thi-ng/umbrella/compare/@thi.ng/dcons@2.3.17...@thi.ng/dcons@2.3.18) (2021-03-27) **Note:** Version bump only for package @thi.ng/dcons diff --git a/packages/dcons/package.json b/packages/dcons/package.json index bd62222202..745a16a7cc 100644 --- a/packages/dcons/package.json +++ b/packages/dcons/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/dcons", - "version": "2.3.18", + "version": "2.3.19", "description": "Double-linked lists with comprehensive set of operations (incl. optional self-organizing behaviors)", "module": "./index.js", "main": "./lib/index.js", @@ -55,7 +55,7 @@ "@thi.ng/equiv": "^1.0.41", "@thi.ng/errors": "^1.3.0", "@thi.ng/random": "^2.3.6", - "@thi.ng/transducers": "^7.6.8" + "@thi.ng/transducers": "^7.6.9" }, "files": [ "*.js", diff --git a/packages/dgraph-dot/CHANGELOG.md b/packages/dgraph-dot/CHANGELOG.md index 9e9f1bf561..279b6c0fe7 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.47](https://github.com/thi-ng/umbrella/compare/@thi.ng/dgraph-dot@0.1.46...@thi.ng/dgraph-dot@0.1.47) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/dgraph-dot + + + + + ## [0.1.46](https://github.com/thi-ng/umbrella/compare/@thi.ng/dgraph-dot@0.1.45...@thi.ng/dgraph-dot@0.1.46) (2021-03-27) **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 3925c8e998..4913bde978 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.46", + "version": "0.1.47", "description": "Customizable Graphviz DOT serialization for @thi.ng/dgraph", "module": "./index.js", "main": "./lib/index.js", @@ -50,7 +50,7 @@ }, "dependencies": { "@thi.ng/api": "^7.1.4", - "@thi.ng/dgraph": "^1.3.17", + "@thi.ng/dgraph": "^1.3.18", "@thi.ng/dot": "^1.2.30" }, "files": [ diff --git a/packages/dgraph/CHANGELOG.md b/packages/dgraph/CHANGELOG.md index edac57454c..4d0e106589 100644 --- a/packages/dgraph/CHANGELOG.md +++ b/packages/dgraph/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.3.18](https://github.com/thi-ng/umbrella/compare/@thi.ng/dgraph@1.3.17...@thi.ng/dgraph@1.3.18) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/dgraph + + + + + ## [1.3.17](https://github.com/thi-ng/umbrella/compare/@thi.ng/dgraph@1.3.16...@thi.ng/dgraph@1.3.17) (2021-03-27) **Note:** Version bump only for package @thi.ng/dgraph diff --git a/packages/dgraph/package.json b/packages/dgraph/package.json index aa73773e8f..6b3360b65b 100644 --- a/packages/dgraph/package.json +++ b/packages/dgraph/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/dgraph", - "version": "1.3.17", + "version": "1.3.18", "description": "Type-agnostic directed acyclic graph (DAG) & graph operations", "module": "./index.js", "main": "./lib/index.js", @@ -50,10 +50,10 @@ }, "dependencies": { "@thi.ng/api": "^7.1.4", - "@thi.ng/associative": "^5.1.8", + "@thi.ng/associative": "^5.1.9", "@thi.ng/equiv": "^1.0.41", "@thi.ng/errors": "^1.3.0", - "@thi.ng/transducers": "^7.6.8" + "@thi.ng/transducers": "^7.6.9" }, "files": [ "*.js", diff --git a/packages/distance/CHANGELOG.md b/packages/distance/CHANGELOG.md index 23b3963d36..5956b2a78e 100644 --- a/packages/distance/CHANGELOG.md +++ b/packages/distance/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.11](https://github.com/thi-ng/umbrella/compare/@thi.ng/distance@0.1.10...@thi.ng/distance@0.1.11) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/distance + + + + + ## [0.1.10](https://github.com/thi-ng/umbrella/compare/@thi.ng/distance@0.1.9...@thi.ng/distance@0.1.10) (2021-03-27) **Note:** Version bump only for package @thi.ng/distance diff --git a/packages/distance/package.json b/packages/distance/package.json index 2b9d2ea5e2..a47bc676f8 100644 --- a/packages/distance/package.json +++ b/packages/distance/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/distance", - "version": "0.1.10", + "version": "0.1.11", "description": "N-dimensional distance metrics & K-nearest neighborhoods for point queries", "module": "./index.js", "main": "./lib/index.js", @@ -52,7 +52,7 @@ "@thi.ng/api": "^7.1.4", "@thi.ng/heaps": "^1.2.38", "@thi.ng/math": "^3.3.0", - "@thi.ng/vectors": "^5.1.6" + "@thi.ng/vectors": "^5.1.7" }, "files": [ "*.js", diff --git a/packages/dl-asset/CHANGELOG.md b/packages/dl-asset/CHANGELOG.md index bb733783c9..88b537e480 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.4.21](https://github.com/thi-ng/umbrella/compare/@thi.ng/dl-asset@0.4.20...@thi.ng/dl-asset@0.4.21) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/dl-asset + + + + + ## [0.4.20](https://github.com/thi-ng/umbrella/compare/@thi.ng/dl-asset@0.4.19...@thi.ng/dl-asset@0.4.20) (2021-03-27) **Note:** Version bump only for package @thi.ng/dl-asset diff --git a/packages/dl-asset/package.json b/packages/dl-asset/package.json index c7a5194a45..feecfb69b4 100644 --- a/packages/dl-asset/package.json +++ b/packages/dl-asset/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/dl-asset", - "version": "0.4.20", + "version": "0.4.21", "description": "Local asset download for web apps, with automatic MIME type detection", "module": "./index.js", "main": "./lib/index.js", @@ -51,7 +51,7 @@ "dependencies": { "@thi.ng/api": "^7.1.4", "@thi.ng/checks": "^2.9.5", - "@thi.ng/mime": "^0.3.0" + "@thi.ng/mime": "^0.3.1" }, "files": [ "*.js", diff --git a/packages/dsp-io-wav/CHANGELOG.md b/packages/dsp-io-wav/CHANGELOG.md index e1b10d2d28..c14afd8cfd 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.49](https://github.com/thi-ng/umbrella/compare/@thi.ng/dsp-io-wav@0.1.48...@thi.ng/dsp-io-wav@0.1.49) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/dsp-io-wav + + + + + ## [0.1.48](https://github.com/thi-ng/umbrella/compare/@thi.ng/dsp-io-wav@0.1.47...@thi.ng/dsp-io-wav@0.1.48) (2021-03-27) **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 f1e927a8d7..826ae04a50 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.48", + "version": "0.1.49", "description": "WAV file format generation", "module": "./index.js", "main": "./lib/index.js", @@ -51,8 +51,8 @@ "dependencies": { "@thi.ng/api": "^7.1.4", "@thi.ng/binary": "^2.2.4", - "@thi.ng/transducers": "^7.6.8", - "@thi.ng/transducers-binary": "^0.6.14" + "@thi.ng/transducers": "^7.6.9", + "@thi.ng/transducers-binary": "^0.6.15" }, "files": [ "*.js", diff --git a/packages/dsp/CHANGELOG.md b/packages/dsp/CHANGELOG.md index 6df6f02fac..06cadd768d 100644 --- a/packages/dsp/CHANGELOG.md +++ b/packages/dsp/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.0.15](https://github.com/thi-ng/umbrella/compare/@thi.ng/dsp@3.0.14...@thi.ng/dsp@3.0.15) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/dsp + + + + + ## [3.0.14](https://github.com/thi-ng/umbrella/compare/@thi.ng/dsp@3.0.13...@thi.ng/dsp@3.0.14) (2021-03-27) **Note:** Version bump only for package @thi.ng/dsp diff --git a/packages/dsp/package.json b/packages/dsp/package.json index 27427e3bcd..549b56c00e 100644 --- a/packages/dsp/package.json +++ b/packages/dsp/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/dsp", - "version": "3.0.14", + "version": "3.0.15", "description": "Composable signal generators, oscillators, filters, FFT, spectrum, windowing & related DSP utils", "module": "./index.js", "main": "./lib/index.js", @@ -54,7 +54,7 @@ "@thi.ng/errors": "^1.3.0", "@thi.ng/math": "^3.3.0", "@thi.ng/random": "^2.3.6", - "@thi.ng/transducers": "^7.6.8" + "@thi.ng/transducers": "^7.6.9" }, "files": [ "*.js", diff --git a/packages/ecs/CHANGELOG.md b/packages/ecs/CHANGELOG.md index 6274f915f1..52cb77045d 100644 --- a/packages/ecs/CHANGELOG.md +++ b/packages/ecs/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.5.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/ecs@0.5.8...@thi.ng/ecs@0.5.9) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/ecs + + + + + ## [0.5.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/ecs@0.5.7...@thi.ng/ecs@0.5.8) (2021-03-27) **Note:** Version bump only for package @thi.ng/ecs diff --git a/packages/ecs/package.json b/packages/ecs/package.json index ba5f0d5aea..b43b4435f5 100644 --- a/packages/ecs/package.json +++ b/packages/ecs/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/ecs", - "version": "0.5.8", + "version": "0.5.9", "description": "Entity Component System based around typed arrays & sparse sets", "module": "./index.js", "main": "./lib/index.js", @@ -51,13 +51,13 @@ }, "dependencies": { "@thi.ng/api": "^7.1.4", - "@thi.ng/associative": "^5.1.8", + "@thi.ng/associative": "^5.1.9", "@thi.ng/binary": "^2.2.4", "@thi.ng/checks": "^2.9.5", - "@thi.ng/dcons": "^2.3.18", + "@thi.ng/dcons": "^2.3.19", "@thi.ng/idgen": "^0.2.35", "@thi.ng/malloc": "^5.0.6", - "@thi.ng/transducers": "^7.6.8", + "@thi.ng/transducers": "^7.6.9", "tslib": "^2.1.0" }, "files": [ diff --git a/packages/egf/CHANGELOG.md b/packages/egf/CHANGELOG.md index 3451896dfd..c4ae8a467f 100644 --- a/packages/egf/CHANGELOG.md +++ b/packages/egf/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.4.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/egf@0.4.0...@thi.ng/egf@0.4.1) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/egf + + + + + # [0.4.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/egf@0.3.21...@thi.ng/egf@0.4.0) (2021-03-27) diff --git a/packages/egf/package.json b/packages/egf/package.json index c3ba1d0192..a3138c2511 100644 --- a/packages/egf/package.json +++ b/packages/egf/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/egf", - "version": "0.4.0", + "version": "0.4.1", "description": "Extensible Graph Format", "module": "./index.js", "main": "./lib/index.js", @@ -46,13 +46,13 @@ }, "dependencies": { "@thi.ng/api": "^7.1.4", - "@thi.ng/associative": "^5.1.8", + "@thi.ng/associative": "^5.1.9", "@thi.ng/checks": "^2.9.5", "@thi.ng/dot": "^1.2.30", "@thi.ng/errors": "^1.3.0", "@thi.ng/prefixes": "^0.1.17", "@thi.ng/strings": "^2.1.0", - "@thi.ng/transducers-binary": "^0.6.14" + "@thi.ng/transducers-binary": "^0.6.15" }, "files": [ "*.js", diff --git a/packages/fsm/CHANGELOG.md b/packages/fsm/CHANGELOG.md index 5247c0786d..6903b6635e 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.48](https://github.com/thi-ng/umbrella/compare/@thi.ng/fsm@2.4.47...@thi.ng/fsm@2.4.48) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/fsm + + + + + ## [2.4.47](https://github.com/thi-ng/umbrella/compare/@thi.ng/fsm@2.4.46...@thi.ng/fsm@2.4.47) (2021-03-27) **Note:** Version bump only for package @thi.ng/fsm diff --git a/packages/fsm/package.json b/packages/fsm/package.json index ea07554e04..6af4c9ae6a 100644 --- a/packages/fsm/package.json +++ b/packages/fsm/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/fsm", - "version": "2.4.47", + "version": "2.4.48", "description": "Composable primitives for building declarative, transducer based Finite-State Machines & matchers for arbitrary data streams", "module": "./index.js", "main": "./lib/index.js", @@ -54,7 +54,7 @@ "@thi.ng/equiv": "^1.0.41", "@thi.ng/errors": "^1.3.0", "@thi.ng/strings": "^2.1.0", - "@thi.ng/transducers": "^7.6.8" + "@thi.ng/transducers": "^7.6.9" }, "files": [ "*.js", diff --git a/packages/fuzzy-viz/CHANGELOG.md b/packages/fuzzy-viz/CHANGELOG.md index c7ec17a814..771ab61e37 100644 --- a/packages/fuzzy-viz/CHANGELOG.md +++ b/packages/fuzzy-viz/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.21](https://github.com/thi-ng/umbrella/compare/@thi.ng/fuzzy-viz@0.1.20...@thi.ng/fuzzy-viz@0.1.21) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/fuzzy-viz + + + + + ## [0.1.20](https://github.com/thi-ng/umbrella/compare/@thi.ng/fuzzy-viz@0.1.19...@thi.ng/fuzzy-viz@0.1.20) (2021-03-27) **Note:** Version bump only for package @thi.ng/fuzzy-viz diff --git a/packages/fuzzy-viz/package.json b/packages/fuzzy-viz/package.json index e3c85a0f05..bf98e73cb9 100644 --- a/packages/fuzzy-viz/package.json +++ b/packages/fuzzy-viz/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/fuzzy-viz", - "version": "0.1.20", + "version": "0.1.21", "description": "Visualization, instrumentation & introspection utils for @thi.ng/fuzzy", "module": "./index.js", "main": "./lib/index.js", @@ -52,10 +52,10 @@ "@thi.ng/api": "^7.1.4", "@thi.ng/fuzzy": "^0.1.9", "@thi.ng/hiccup": "^3.6.14", - "@thi.ng/hiccup-svg": "^3.7.17", + "@thi.ng/hiccup-svg": "^3.7.18", "@thi.ng/math": "^3.3.0", "@thi.ng/strings": "^2.1.0", - "@thi.ng/text-canvas": "^0.7.1" + "@thi.ng/text-canvas": "^0.7.2" }, "files": [ "*.js", diff --git a/packages/geom-accel/CHANGELOG.md b/packages/geom-accel/CHANGELOG.md index a3b5ed2995..329a81d465 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.44](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-accel@2.1.43...@thi.ng/geom-accel@2.1.44) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/geom-accel + + + + + ## [2.1.43](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-accel@2.1.42...@thi.ng/geom-accel@2.1.43) (2021-03-27) **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 9ef67950fd..080a5a2080 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.43", + "version": "2.1.44", "description": "n-D spatial indexing data structures with a shared ES6 Map/Set-like API", "module": "./index.js", "main": "./lib/index.js", @@ -54,12 +54,12 @@ "@thi.ng/arrays": "^0.10.9", "@thi.ng/checks": "^2.9.5", "@thi.ng/equiv": "^1.0.41", - "@thi.ng/geom-api": "^2.0.14", - "@thi.ng/geom-isec": "^0.7.17", + "@thi.ng/geom-api": "^2.0.15", + "@thi.ng/geom-isec": "^0.7.18", "@thi.ng/heaps": "^1.2.38", "@thi.ng/math": "^3.3.0", - "@thi.ng/transducers": "^7.6.8", - "@thi.ng/vectors": "^5.1.6" + "@thi.ng/transducers": "^7.6.9", + "@thi.ng/vectors": "^5.1.7" }, "files": [ "*.js", diff --git a/packages/geom-api/CHANGELOG.md b/packages/geom-api/CHANGELOG.md index d39231729f..230e63f9c6 100644 --- a/packages/geom-api/CHANGELOG.md +++ b/packages/geom-api/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.0.15](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-api@2.0.14...@thi.ng/geom-api@2.0.15) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/geom-api + + + + + ## [2.0.14](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-api@2.0.13...@thi.ng/geom-api@2.0.14) (2021-03-27) **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 e7e559648d..beea51471e 100644 --- a/packages/geom-api/package.json +++ b/packages/geom-api/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-api", - "version": "2.0.14", + "version": "2.0.15", "description": "Shared type & interface declarations for @thi.ng/geom packages", "module": "./index.js", "main": "./lib/index.js", @@ -50,7 +50,7 @@ }, "dependencies": { "@thi.ng/api": "^7.1.4", - "@thi.ng/vectors": "^5.1.6" + "@thi.ng/vectors": "^5.1.7" }, "files": [ "*.js", diff --git a/packages/geom-arc/CHANGELOG.md b/packages/geom-arc/CHANGELOG.md index b797b32c32..cebfbffcb7 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.3.33](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-arc@0.3.32...@thi.ng/geom-arc@0.3.33) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/geom-arc + + + + + ## [0.3.32](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-arc@0.3.31...@thi.ng/geom-arc@0.3.32) (2021-03-27) **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 77d4b061ee..5115a8ccf0 100644 --- a/packages/geom-arc/package.json +++ b/packages/geom-arc/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-arc", - "version": "0.3.32", + "version": "0.3.33", "description": "2D circular / elliptic arc operations", "module": "./index.js", "main": "./lib/index.js", @@ -50,10 +50,10 @@ }, "dependencies": { "@thi.ng/checks": "^2.9.5", - "@thi.ng/geom-api": "^2.0.14", - "@thi.ng/geom-resample": "^0.2.65", + "@thi.ng/geom-api": "^2.0.15", + "@thi.ng/geom-resample": "^0.2.66", "@thi.ng/math": "^3.3.0", - "@thi.ng/vectors": "^5.1.6" + "@thi.ng/vectors": "^5.1.7" }, "files": [ "*.js", diff --git a/packages/geom-clip-line/CHANGELOG.md b/packages/geom-clip-line/CHANGELOG.md index 5d6a495369..29afa993b2 100644 --- a/packages/geom-clip-line/CHANGELOG.md +++ b/packages/geom-clip-line/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.2.29](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-clip-line@1.2.28...@thi.ng/geom-clip-line@1.2.29) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/geom-clip-line + + + + + ## [1.2.28](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-clip-line@1.2.27...@thi.ng/geom-clip-line@1.2.28) (2021-03-27) **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 59ec5fe444..8c1c5ce373 100644 --- a/packages/geom-clip-line/package.json +++ b/packages/geom-clip-line/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-clip-line", - "version": "1.2.28", + "version": "1.2.29", "description": "2D line clipping (Liang-Barsky)", "module": "./index.js", "main": "./lib/index.js", @@ -50,8 +50,8 @@ }, "dependencies": { "@thi.ng/api": "^7.1.4", - "@thi.ng/geom-isec": "^0.7.17", - "@thi.ng/vectors": "^5.1.6" + "@thi.ng/geom-isec": "^0.7.18", + "@thi.ng/vectors": "^5.1.7" }, "files": [ "*.js", diff --git a/packages/geom-clip-poly/CHANGELOG.md b/packages/geom-clip-poly/CHANGELOG.md index 23ff8bceb0..3fcaa951c6 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.54](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-clip-poly@1.0.53...@thi.ng/geom-clip-poly@1.0.54) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/geom-clip-poly + + + + + ## [1.0.53](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-clip-poly@1.0.52...@thi.ng/geom-clip-poly@1.0.53) (2021-03-27) **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 afed143ab6..af283e65f4 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.53", + "version": "1.0.54", "description": "2D convex polygon clipping (Sutherland-Hodgeman)", "module": "./index.js", "main": "./lib/index.js", @@ -49,10 +49,10 @@ "typescript": "^4.2.3" }, "dependencies": { - "@thi.ng/geom-isec": "^0.7.17", - "@thi.ng/geom-poly-utils": "^0.3.14", + "@thi.ng/geom-isec": "^0.7.18", + "@thi.ng/geom-poly-utils": "^0.3.15", "@thi.ng/math": "^3.3.0", - "@thi.ng/vectors": "^5.1.6" + "@thi.ng/vectors": "^5.1.7" }, "files": [ "*.js", diff --git a/packages/geom-closest-point/CHANGELOG.md b/packages/geom-closest-point/CHANGELOG.md index 8e5c7af740..ff051bbc3e 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.5.20](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-closest-point@0.5.19...@thi.ng/geom-closest-point@0.5.20) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/geom-closest-point + + + + + ## [0.5.19](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-closest-point@0.5.18...@thi.ng/geom-closest-point@0.5.19) (2021-03-27) **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 e1828ff993..ba0fc727cf 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.5.19", + "version": "0.5.20", "description": "2D / 3D closest point / proximity helpers", "module": "./index.js", "main": "./lib/index.js", @@ -51,7 +51,7 @@ "dependencies": { "@thi.ng/api": "^7.1.4", "@thi.ng/math": "^3.3.0", - "@thi.ng/vectors": "^5.1.6" + "@thi.ng/vectors": "^5.1.7" }, "files": [ "*.js", diff --git a/packages/geom-fuzz/CHANGELOG.md b/packages/geom-fuzz/CHANGELOG.md index a2a0119d61..1cfc51652f 100644 --- a/packages/geom-fuzz/CHANGELOG.md +++ b/packages/geom-fuzz/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.45](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-fuzz@0.1.44...@thi.ng/geom-fuzz@0.1.45) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/geom-fuzz + + + + + ## [0.1.44](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-fuzz@0.1.43...@thi.ng/geom-fuzz@0.1.44) (2021-03-27) **Note:** Version bump only for package @thi.ng/geom-fuzz diff --git a/packages/geom-fuzz/package.json b/packages/geom-fuzz/package.json index b190e17e07..e306cd180b 100644 --- a/packages/geom-fuzz/package.json +++ b/packages/geom-fuzz/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-fuzz", - "version": "0.1.44", + "version": "0.1.45", "description": "Highly configurable, fuzzy line & polygon creation with presets and composable fill & stroke styles. Canvas & SVG support", "module": "./index.js", "main": "./lib/index.js", @@ -49,15 +49,15 @@ }, "dependencies": { "@thi.ng/api": "^7.1.4", - "@thi.ng/associative": "^5.1.8", - "@thi.ng/color": "^3.1.9", - "@thi.ng/geom": "^2.1.11", - "@thi.ng/geom-api": "^2.0.14", - "@thi.ng/geom-clip-line": "^1.2.28", - "@thi.ng/geom-resample": "^0.2.65", - "@thi.ng/grid-iterators": "^0.4.30", - "@thi.ng/transducers": "^7.6.8", - "@thi.ng/vectors": "^5.1.6" + "@thi.ng/associative": "^5.1.9", + "@thi.ng/color": "^3.1.10", + "@thi.ng/geom": "^2.1.12", + "@thi.ng/geom-api": "^2.0.15", + "@thi.ng/geom-clip-line": "^1.2.29", + "@thi.ng/geom-resample": "^0.2.66", + "@thi.ng/grid-iterators": "^0.4.31", + "@thi.ng/transducers": "^7.6.9", + "@thi.ng/vectors": "^5.1.7" }, "files": [ "*.js", diff --git a/packages/geom-hull/CHANGELOG.md b/packages/geom-hull/CHANGELOG.md index 243684d0f8..137ae2ee4a 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.86](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-hull@0.0.85...@thi.ng/geom-hull@0.0.86) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/geom-hull + + + + + ## [0.0.85](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-hull@0.0.84...@thi.ng/geom-hull@0.0.85) (2021-03-27) **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 982b0ce339..04e3caa7c6 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.85", + "version": "0.0.86", "description": "Fast 2D convex hull (Graham Scan)", "module": "./index.js", "main": "./lib/index.js", @@ -50,7 +50,7 @@ }, "dependencies": { "@thi.ng/math": "^3.3.0", - "@thi.ng/vectors": "^5.1.6" + "@thi.ng/vectors": "^5.1.7" }, "files": [ "*.js", diff --git a/packages/geom-io-obj/CHANGELOG.md b/packages/geom-io-obj/CHANGELOG.md index d10d549aec..11f90760a8 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.44](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-io-obj@0.1.43...@thi.ng/geom-io-obj@0.1.44) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/geom-io-obj + + + + + ## [0.1.43](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-io-obj@0.1.42...@thi.ng/geom-io-obj@0.1.43) (2021-03-27) **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 75082cbd3c..14aff36908 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.43", + "version": "0.1.44", "description": "Wavefront OBJ parser (& exporter soon)", "module": "./index.js", "main": "./lib/index.js", @@ -50,7 +50,7 @@ }, "dependencies": { "@thi.ng/api": "^7.1.4", - "@thi.ng/vectors": "^5.1.6" + "@thi.ng/vectors": "^5.1.7" }, "files": [ "*.js", diff --git a/packages/geom-isec/CHANGELOG.md b/packages/geom-isec/CHANGELOG.md index c2e04ec365..03657e279f 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.7.18](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-isec@0.7.17...@thi.ng/geom-isec@0.7.18) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/geom-isec + + + + + ## [0.7.17](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-isec@0.7.16...@thi.ng/geom-isec@0.7.17) (2021-03-27) **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 10c6748568..1e3116e73e 100644 --- a/packages/geom-isec/package.json +++ b/packages/geom-isec/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-isec", - "version": "0.7.17", + "version": "0.7.18", "description": "2D/3D shape intersection checks", "module": "./index.js", "main": "./lib/index.js", @@ -50,10 +50,10 @@ }, "dependencies": { "@thi.ng/api": "^7.1.4", - "@thi.ng/geom-api": "^2.0.14", - "@thi.ng/geom-closest-point": "^0.5.19", + "@thi.ng/geom-api": "^2.0.15", + "@thi.ng/geom-closest-point": "^0.5.20", "@thi.ng/math": "^3.3.0", - "@thi.ng/vectors": "^5.1.6" + "@thi.ng/vectors": "^5.1.7" }, "files": [ "*.js", diff --git a/packages/geom-isoline/CHANGELOG.md b/packages/geom-isoline/CHANGELOG.md index f9946fc88b..de49663d20 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.84](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-isoline@0.1.83...@thi.ng/geom-isoline@0.1.84) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/geom-isoline + + + + + ## [0.1.83](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-isoline@0.1.82...@thi.ng/geom-isoline@0.1.83) (2021-03-27) **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 0c3a2d42fe..cef9cf252f 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.83", + "version": "0.1.84", "description": "Fast 2D contour line extraction / generation", "module": "./index.js", "main": "./lib/index.js", @@ -50,8 +50,8 @@ }, "dependencies": { "@thi.ng/api": "^7.1.4", - "@thi.ng/transducers": "^7.6.8", - "@thi.ng/vectors": "^5.1.6" + "@thi.ng/transducers": "^7.6.9", + "@thi.ng/vectors": "^5.1.7" }, "files": [ "*.js", diff --git a/packages/geom-poly-utils/CHANGELOG.md b/packages/geom-poly-utils/CHANGELOG.md index e34686970f..5e6d8de18b 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.3.15](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-poly-utils@0.3.14...@thi.ng/geom-poly-utils@0.3.15) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/geom-poly-utils + + + + + ## [0.3.14](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-poly-utils@0.3.13...@thi.ng/geom-poly-utils@0.3.14) (2021-03-27) **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 ab571b8e97..0e9a8a3dc6 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.3.14", + "version": "0.3.15", "description": "2D polygon/polyline analysis & processing utilities", "module": "./index.js", "main": "./lib/index.js", @@ -51,9 +51,9 @@ "dependencies": { "@thi.ng/api": "^7.1.4", "@thi.ng/errors": "^1.3.0", - "@thi.ng/geom-api": "^2.0.14", + "@thi.ng/geom-api": "^2.0.15", "@thi.ng/math": "^3.3.0", - "@thi.ng/vectors": "^5.1.6" + "@thi.ng/vectors": "^5.1.7" }, "files": [ "*.js", diff --git a/packages/geom-resample/CHANGELOG.md b/packages/geom-resample/CHANGELOG.md index 07ca7db611..44c5e641a7 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.66](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-resample@0.2.65...@thi.ng/geom-resample@0.2.66) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/geom-resample + + + + + ## [0.2.65](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-resample@0.2.64...@thi.ng/geom-resample@0.2.65) (2021-03-27) **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 fca6e07edc..83538b426c 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.65", + "version": "0.2.66", "description": "Customizable nD polyline interpolation, re-sampling, splitting & nearest point computation", "module": "./index.js", "main": "./lib/index.js", @@ -50,10 +50,10 @@ }, "dependencies": { "@thi.ng/checks": "^2.9.5", - "@thi.ng/geom-api": "^2.0.14", - "@thi.ng/geom-closest-point": "^0.5.19", + "@thi.ng/geom-api": "^2.0.15", + "@thi.ng/geom-closest-point": "^0.5.20", "@thi.ng/math": "^3.3.0", - "@thi.ng/vectors": "^5.1.6" + "@thi.ng/vectors": "^5.1.7" }, "files": [ "*.js", diff --git a/packages/geom-splines/CHANGELOG.md b/packages/geom-splines/CHANGELOG.md index 2d5173da29..8d1381798c 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.53](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-splines@0.5.52...@thi.ng/geom-splines@0.5.53) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/geom-splines + + + + + ## [0.5.52](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-splines@0.5.51...@thi.ng/geom-splines@0.5.52) (2021-03-27) **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 0dddce9319..56a04ec347 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.52", + "version": "0.5.53", "description": "nD cubic & quadratic curve analysis, conversion, interpolation, splitting", "module": "./index.js", "main": "./lib/index.js", @@ -51,11 +51,11 @@ "dependencies": { "@thi.ng/api": "^7.1.4", "@thi.ng/checks": "^2.9.5", - "@thi.ng/geom-api": "^2.0.14", - "@thi.ng/geom-arc": "^0.3.32", - "@thi.ng/geom-resample": "^0.2.65", + "@thi.ng/geom-api": "^2.0.15", + "@thi.ng/geom-arc": "^0.3.33", + "@thi.ng/geom-resample": "^0.2.66", "@thi.ng/math": "^3.3.0", - "@thi.ng/vectors": "^5.1.6" + "@thi.ng/vectors": "^5.1.7" }, "files": [ "*.js", diff --git a/packages/geom-subdiv-curve/CHANGELOG.md b/packages/geom-subdiv-curve/CHANGELOG.md index 1cb8867baf..25a9c180d8 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.84](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-subdiv-curve@0.1.83...@thi.ng/geom-subdiv-curve@0.1.84) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/geom-subdiv-curve + + + + + ## [0.1.83](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-subdiv-curve@0.1.82...@thi.ng/geom-subdiv-curve@0.1.83) (2021-03-27) **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 2e21e81a86..9771a39724 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.83", + "version": "0.1.84", "description": "Freely customizable, iterative nD subdivision curves for open / closed geometries", "module": "./index.js", "main": "./lib/index.js", @@ -50,9 +50,9 @@ }, "dependencies": { "@thi.ng/api": "^7.1.4", - "@thi.ng/geom-api": "^2.0.14", - "@thi.ng/transducers": "^7.6.8", - "@thi.ng/vectors": "^5.1.6" + "@thi.ng/geom-api": "^2.0.15", + "@thi.ng/transducers": "^7.6.9", + "@thi.ng/vectors": "^5.1.7" }, "files": [ "*.js", diff --git a/packages/geom-tessellate/CHANGELOG.md b/packages/geom-tessellate/CHANGELOG.md index 1c2c27f92a..4f5836ea7a 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.67](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-tessellate@0.2.66...@thi.ng/geom-tessellate@0.2.67) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/geom-tessellate + + + + + ## [0.2.66](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-tessellate@0.2.65...@thi.ng/geom-tessellate@0.2.66) (2021-03-27) **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 a0734a1567..ea1a98c81f 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.66", + "version": "0.2.67", "description": "2D/3D convex polygon tessellators", "module": "./index.js", "main": "./lib/index.js", @@ -50,11 +50,11 @@ }, "dependencies": { "@thi.ng/checks": "^2.9.5", - "@thi.ng/geom-api": "^2.0.14", - "@thi.ng/geom-isec": "^0.7.17", - "@thi.ng/geom-poly-utils": "^0.3.14", - "@thi.ng/transducers": "^7.6.8", - "@thi.ng/vectors": "^5.1.6" + "@thi.ng/geom-api": "^2.0.15", + "@thi.ng/geom-isec": "^0.7.18", + "@thi.ng/geom-poly-utils": "^0.3.15", + "@thi.ng/transducers": "^7.6.9", + "@thi.ng/vectors": "^5.1.7" }, "files": [ "*.js", diff --git a/packages/geom-voronoi/CHANGELOG.md b/packages/geom-voronoi/CHANGELOG.md index bc00c56d4b..3d640db851 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.2.29](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-voronoi@0.2.28...@thi.ng/geom-voronoi@0.2.29) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/geom-voronoi + + + + + ## [0.2.28](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-voronoi@0.2.27...@thi.ng/geom-voronoi@0.2.28) (2021-03-27) **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 686bf4d83b..da53bcaad9 100644 --- a/packages/geom-voronoi/package.json +++ b/packages/geom-voronoi/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-voronoi", - "version": "0.2.28", + "version": "0.2.29", "description": "Fast, incremental 2D Delaunay & Voronoi mesh implementation", "module": "./index.js", "main": "./lib/index.js", @@ -51,13 +51,13 @@ "dependencies": { "@thi.ng/api": "^7.1.4", "@thi.ng/checks": "^2.9.5", - "@thi.ng/geom-clip-line": "^1.2.28", - "@thi.ng/geom-clip-poly": "^1.0.53", - "@thi.ng/geom-isec": "^0.7.17", - "@thi.ng/geom-poly-utils": "^0.3.14", + "@thi.ng/geom-clip-line": "^1.2.29", + "@thi.ng/geom-clip-poly": "^1.0.54", + "@thi.ng/geom-isec": "^0.7.18", + "@thi.ng/geom-poly-utils": "^0.3.15", "@thi.ng/math": "^3.3.0", "@thi.ng/quad-edge": "^0.2.34", - "@thi.ng/vectors": "^5.1.6" + "@thi.ng/vectors": "^5.1.7" }, "files": [ "*.js", diff --git a/packages/geom/CHANGELOG.md b/packages/geom/CHANGELOG.md index 7b0a3f69e3..b64723fde6 100644 --- a/packages/geom/CHANGELOG.md +++ b/packages/geom/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.1.12](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom@2.1.11...@thi.ng/geom@2.1.12) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/geom + + + + + ## [2.1.11](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom@2.1.10...@thi.ng/geom@2.1.11) (2021-03-27) **Note:** Version bump only for package @thi.ng/geom diff --git a/packages/geom/package.json b/packages/geom/package.json index 76ab2e9985..3a0d45dd8b 100644 --- a/packages/geom/package.json +++ b/packages/geom/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom", - "version": "2.1.11", + "version": "2.1.12", "description": "Functional, polymorphic API for 2D geometry types & SVG generation", "module": "./index.js", "main": "./lib/index.js", @@ -55,26 +55,26 @@ "@thi.ng/defmulti": "^1.3.11", "@thi.ng/equiv": "^1.0.41", "@thi.ng/errors": "^1.3.0", - "@thi.ng/geom-api": "^2.0.14", - "@thi.ng/geom-arc": "^0.3.32", - "@thi.ng/geom-clip-line": "^1.2.28", - "@thi.ng/geom-clip-poly": "^1.0.53", - "@thi.ng/geom-closest-point": "^0.5.19", - "@thi.ng/geom-hull": "^0.0.85", - "@thi.ng/geom-isec": "^0.7.17", - "@thi.ng/geom-poly-utils": "^0.3.14", - "@thi.ng/geom-resample": "^0.2.65", - "@thi.ng/geom-splines": "^0.5.52", - "@thi.ng/geom-subdiv-curve": "^0.1.83", - "@thi.ng/geom-tessellate": "^0.2.66", + "@thi.ng/geom-api": "^2.0.15", + "@thi.ng/geom-arc": "^0.3.33", + "@thi.ng/geom-clip-line": "^1.2.29", + "@thi.ng/geom-clip-poly": "^1.0.54", + "@thi.ng/geom-closest-point": "^0.5.20", + "@thi.ng/geom-hull": "^0.0.86", + "@thi.ng/geom-isec": "^0.7.18", + "@thi.ng/geom-poly-utils": "^0.3.15", + "@thi.ng/geom-resample": "^0.2.66", + "@thi.ng/geom-splines": "^0.5.53", + "@thi.ng/geom-subdiv-curve": "^0.1.84", + "@thi.ng/geom-tessellate": "^0.2.67", "@thi.ng/hiccup": "^3.6.14", - "@thi.ng/hiccup-svg": "^3.7.17", + "@thi.ng/hiccup-svg": "^3.7.18", "@thi.ng/math": "^3.3.0", - "@thi.ng/matrices": "^0.6.52", + "@thi.ng/matrices": "^0.6.53", "@thi.ng/random": "^2.3.6", "@thi.ng/strings": "^2.1.0", - "@thi.ng/transducers": "^7.6.8", - "@thi.ng/vectors": "^5.1.6" + "@thi.ng/transducers": "^7.6.9", + "@thi.ng/vectors": "^5.1.7" }, "files": [ "*.js", diff --git a/packages/gp/CHANGELOG.md b/packages/gp/CHANGELOG.md index f19efa6da9..baa285f53f 100644 --- a/packages/gp/CHANGELOG.md +++ b/packages/gp/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.2.15](https://github.com/thi-ng/umbrella/compare/@thi.ng/gp@0.2.14...@thi.ng/gp@0.2.15) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/gp + + + + + ## [0.2.14](https://github.com/thi-ng/umbrella/compare/@thi.ng/gp@0.2.13...@thi.ng/gp@0.2.14) (2021-03-27) **Note:** Version bump only for package @thi.ng/gp diff --git a/packages/gp/package.json b/packages/gp/package.json index be42acaa3c..c1ccab4089 100644 --- a/packages/gp/package.json +++ b/packages/gp/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/gp", - "version": "0.2.14", + "version": "0.2.15", "description": "Genetic programming helpers & strategies (tree based & multi-expression programming)", "module": "./index.js", "main": "./lib/index.js", @@ -52,7 +52,7 @@ "@thi.ng/api": "^7.1.4", "@thi.ng/math": "^3.3.0", "@thi.ng/random": "^2.3.6", - "@thi.ng/transducers": "^7.6.8", + "@thi.ng/transducers": "^7.6.9", "@thi.ng/zipper": "^0.1.43" }, "files": [ diff --git a/packages/grid-iterators/CHANGELOG.md b/packages/grid-iterators/CHANGELOG.md index 9fedad3bc5..75207c35cb 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.4.31](https://github.com/thi-ng/umbrella/compare/@thi.ng/grid-iterators@0.4.30...@thi.ng/grid-iterators@0.4.31) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/grid-iterators + + + + + ## [0.4.30](https://github.com/thi-ng/umbrella/compare/@thi.ng/grid-iterators@0.4.29...@thi.ng/grid-iterators@0.4.30) (2021-03-27) **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 48d167ab66..7150ac4e0e 100644 --- a/packages/grid-iterators/package.json +++ b/packages/grid-iterators/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/grid-iterators", - "version": "0.4.30", + "version": "0.4.31", "description": "2D grid iterators w/ multiple orderings", "module": "./index.js", "main": "./lib/index.js", @@ -54,7 +54,7 @@ "@thi.ng/binary": "^2.2.4", "@thi.ng/morton": "^2.0.38", "@thi.ng/random": "^2.3.6", - "@thi.ng/transducers": "^7.6.8" + "@thi.ng/transducers": "^7.6.9" }, "files": [ "*.js", diff --git a/packages/hdiff/CHANGELOG.md b/packages/hdiff/CHANGELOG.md index cfb87f2515..9e3e4b38ee 100644 --- a/packages/hdiff/CHANGELOG.md +++ b/packages/hdiff/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.38](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdiff@0.1.37...@thi.ng/hdiff@0.1.38) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/hdiff + + + + + ## [0.1.37](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdiff@0.1.36...@thi.ng/hdiff@0.1.37) (2021-03-27) **Note:** Version bump only for package @thi.ng/hdiff diff --git a/packages/hdiff/package.json b/packages/hdiff/package.json index 7919edb119..bac42d5b49 100644 --- a/packages/hdiff/package.json +++ b/packages/hdiff/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hdiff", - "version": "0.1.37", + "version": "0.1.38", "description": "String diffing w/ hiccup output for further processing, e.g. with @thi.ng/hdom, @thi.ng/hiccup. Includes CLI util to generate HTML, with theme support and code folding", "module": "./index.js", "main": "./lib/index.js", @@ -54,7 +54,7 @@ "@thi.ng/api": "^7.1.4", "@thi.ng/diff": "^4.0.7", "@thi.ng/hiccup": "^3.6.14", - "@thi.ng/hiccup-css": "^1.1.57", + "@thi.ng/hiccup-css": "^1.1.58", "@thi.ng/strings": "^2.1.0" }, "files": [ diff --git a/packages/hdom-canvas/CHANGELOG.md b/packages/hdom-canvas/CHANGELOG.md index f88d936d34..e1528c57db 100644 --- a/packages/hdom-canvas/CHANGELOG.md +++ b/packages/hdom-canvas/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.0.43](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-canvas@3.0.42...@thi.ng/hdom-canvas@3.0.43) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/hdom-canvas + + + + + ## [3.0.42](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-canvas@3.0.41...@thi.ng/hdom-canvas@3.0.42) (2021-03-27) **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 6ff3a34823..14dcf37bf3 100644 --- a/packages/hdom-canvas/package.json +++ b/packages/hdom-canvas/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hdom-canvas", - "version": "3.0.42", + "version": "3.0.43", "description": "@thi.ng/hdom component wrapper for declarative canvas scenegraphs", "module": "./index.js", "main": "./lib/index.js", @@ -53,7 +53,7 @@ "@thi.ng/checks": "^2.9.5", "@thi.ng/diff": "^4.0.7", "@thi.ng/hdom": "^8.2.24", - "@thi.ng/hiccup-canvas": "^1.1.32" + "@thi.ng/hiccup-canvas": "^1.1.33" }, "files": [ "*.js", diff --git a/packages/hdom-components/CHANGELOG.md b/packages/hdom-components/CHANGELOG.md index 181114dc89..1652b146e8 100644 --- a/packages/hdom-components/CHANGELOG.md +++ b/packages/hdom-components/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.33](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-components@4.0.32...@thi.ng/hdom-components@4.0.33) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/hdom-components + + + + + ## [4.0.32](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-components@4.0.31...@thi.ng/hdom-components@4.0.32) (2021-03-27) **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 675c088263..97477ac200 100644 --- a/packages/hdom-components/package.json +++ b/packages/hdom-components/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hdom-components", - "version": "4.0.32", + "version": "4.0.33", "description": "Raw, skinnable UI & SVG components for @thi.ng/hdom", "module": "./index.js", "main": "./lib/index.js", @@ -53,8 +53,8 @@ "@thi.ng/api": "^7.1.4", "@thi.ng/checks": "^2.9.5", "@thi.ng/math": "^3.3.0", - "@thi.ng/transducers": "^7.6.8", - "@thi.ng/transducers-stats": "^1.1.58" + "@thi.ng/transducers": "^7.6.9", + "@thi.ng/transducers-stats": "^1.1.59" }, "files": [ "*.js", diff --git a/packages/hiccup-canvas/CHANGELOG.md b/packages/hiccup-canvas/CHANGELOG.md index 06477e4d7c..6591d64cc3 100644 --- a/packages/hiccup-canvas/CHANGELOG.md +++ b/packages/hiccup-canvas/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.1.33](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-canvas@1.1.32...@thi.ng/hiccup-canvas@1.1.33) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/hiccup-canvas + + + + + ## [1.1.32](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-canvas@1.1.31...@thi.ng/hiccup-canvas@1.1.32) (2021-03-27) **Note:** Version bump only for package @thi.ng/hiccup-canvas diff --git a/packages/hiccup-canvas/package.json b/packages/hiccup-canvas/package.json index aa946dc01f..d27ef8b2cb 100644 --- a/packages/hiccup-canvas/package.json +++ b/packages/hiccup-canvas/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hiccup-canvas", - "version": "1.1.32", + "version": "1.1.33", "description": "Hiccup shape tree renderer for vanilla Canvas 2D contexts", "module": "./index.js", "main": "./lib/index.js", @@ -50,9 +50,9 @@ "dependencies": { "@thi.ng/api": "^7.1.4", "@thi.ng/checks": "^2.9.5", - "@thi.ng/color": "^3.1.9", + "@thi.ng/color": "^3.1.10", "@thi.ng/math": "^3.3.0", - "@thi.ng/vectors": "^5.1.6" + "@thi.ng/vectors": "^5.1.7" }, "files": [ "*.js", diff --git a/packages/hiccup-css/CHANGELOG.md b/packages/hiccup-css/CHANGELOG.md index 759da035e2..dc86c259fe 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.58](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-css@1.1.57...@thi.ng/hiccup-css@1.1.58) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/hiccup-css + + + + + ## [1.1.57](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-css@1.1.56...@thi.ng/hiccup-css@1.1.57) (2021-03-27) **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 81984c4d87..d5f4c2f0d1 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.57", + "version": "1.1.58", "description": "CSS from nested JS data structures", "module": "./index.js", "main": "./lib/index.js", @@ -52,7 +52,7 @@ "@thi.ng/api": "^7.1.4", "@thi.ng/checks": "^2.9.5", "@thi.ng/errors": "^1.3.0", - "@thi.ng/transducers": "^7.6.8" + "@thi.ng/transducers": "^7.6.9" }, "files": [ "*.js", diff --git a/packages/hiccup-markdown/CHANGELOG.md b/packages/hiccup-markdown/CHANGELOG.md index ea4f58599f..b4d286e0d0 100644 --- a/packages/hiccup-markdown/CHANGELOG.md +++ b/packages/hiccup-markdown/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.3.14](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-markdown@1.3.13...@thi.ng/hiccup-markdown@1.3.14) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/hiccup-markdown + + + + + ## [1.3.13](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-markdown@1.3.12...@thi.ng/hiccup-markdown@1.3.13) (2021-03-27) **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 5d66317cb1..730e259452 100644 --- a/packages/hiccup-markdown/package.json +++ b/packages/hiccup-markdown/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hiccup-markdown", - "version": "1.3.13", + "version": "1.3.14", "description": "Markdown parser & serializer from/to Hiccup format", "module": "./index.js", "main": "./lib/index.js", @@ -54,11 +54,11 @@ "@thi.ng/checks": "^2.9.5", "@thi.ng/defmulti": "^1.3.11", "@thi.ng/errors": "^1.3.0", - "@thi.ng/fsm": "^2.4.47", + "@thi.ng/fsm": "^2.4.48", "@thi.ng/hiccup": "^3.6.14", "@thi.ng/strings": "^2.1.0", - "@thi.ng/text-canvas": "^0.7.1", - "@thi.ng/transducers": "^7.6.8" + "@thi.ng/text-canvas": "^0.7.2", + "@thi.ng/transducers": "^7.6.9" }, "files": [ "*.js", diff --git a/packages/hiccup-svg/CHANGELOG.md b/packages/hiccup-svg/CHANGELOG.md index c94a416e01..3c57f0eac5 100644 --- a/packages/hiccup-svg/CHANGELOG.md +++ b/packages/hiccup-svg/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.7.18](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-svg@3.7.17...@thi.ng/hiccup-svg@3.7.18) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/hiccup-svg + + + + + ## [3.7.17](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-svg@3.7.16...@thi.ng/hiccup-svg@3.7.17) (2021-03-27) **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 41b15f88c1..1dfd8100f8 100644 --- a/packages/hiccup-svg/package.json +++ b/packages/hiccup-svg/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hiccup-svg", - "version": "3.7.17", + "version": "3.7.18", "description": "SVG element functions for @thi.ng/hiccup & @thi.ng/hdom", "module": "./index.js", "main": "./lib/index.js", @@ -50,7 +50,7 @@ }, "dependencies": { "@thi.ng/checks": "^2.9.5", - "@thi.ng/color": "^3.1.9", + "@thi.ng/color": "^3.1.10", "@thi.ng/prefixes": "^0.1.17" }, "files": [ diff --git a/packages/iges/CHANGELOG.md b/packages/iges/CHANGELOG.md index 24f00b8a09..f3319aa176 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.71](https://github.com/thi-ng/umbrella/compare/@thi.ng/iges@1.1.70...@thi.ng/iges@1.1.71) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/iges + + + + + ## [1.1.70](https://github.com/thi-ng/umbrella/compare/@thi.ng/iges@1.1.69...@thi.ng/iges@1.1.70) (2021-03-27) **Note:** Version bump only for package @thi.ng/iges diff --git a/packages/iges/package.json b/packages/iges/package.json index 5aad444786..5e80572fcb 100644 --- a/packages/iges/package.json +++ b/packages/iges/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/iges", - "version": "1.1.70", + "version": "1.1.71", "description": "IGES 5.3 serializer for (currently only) polygonal geometry, both open & closed", "module": "./index.js", "main": "./lib/index.js", @@ -53,8 +53,8 @@ "@thi.ng/checks": "^2.9.5", "@thi.ng/defmulti": "^1.3.11", "@thi.ng/strings": "^2.1.0", - "@thi.ng/transducers": "^7.6.8", - "@thi.ng/vectors": "^5.1.6" + "@thi.ng/transducers": "^7.6.9", + "@thi.ng/vectors": "^5.1.7" }, "files": [ "*.js", diff --git a/packages/imgui/CHANGELOG.md b/packages/imgui/CHANGELOG.md index 9f89c68aaf..4fafa57f27 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.65](https://github.com/thi-ng/umbrella/compare/@thi.ng/imgui@0.2.64...@thi.ng/imgui@0.2.65) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/imgui + + + + + ## [0.2.64](https://github.com/thi-ng/umbrella/compare/@thi.ng/imgui@0.2.63...@thi.ng/imgui@0.2.64) (2021-03-27) **Note:** Version bump only for package @thi.ng/imgui diff --git a/packages/imgui/package.json b/packages/imgui/package.json index 79ecb584ee..7f311115c7 100644 --- a/packages/imgui/package.json +++ b/packages/imgui/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/imgui", - "version": "0.2.64", + "version": "0.2.65", "description": "Immediate mode GUI with flexible state handling & data only shape output", "module": "./index.js", "main": "./lib/index.js", @@ -51,14 +51,14 @@ "dependencies": { "@thi.ng/api": "^7.1.4", "@thi.ng/checks": "^2.9.5", - "@thi.ng/geom": "^2.1.11", - "@thi.ng/geom-api": "^2.0.14", - "@thi.ng/geom-isec": "^0.7.17", - "@thi.ng/geom-tessellate": "^0.2.66", + "@thi.ng/geom": "^2.1.12", + "@thi.ng/geom-api": "^2.0.15", + "@thi.ng/geom-isec": "^0.7.18", + "@thi.ng/geom-tessellate": "^0.2.67", "@thi.ng/layout": "^0.1.34", "@thi.ng/math": "^3.3.0", - "@thi.ng/transducers": "^7.6.8", - "@thi.ng/vectors": "^5.1.6" + "@thi.ng/transducers": "^7.6.9", + "@thi.ng/vectors": "^5.1.7" }, "files": [ "*.js", diff --git a/packages/iterators/CHANGELOG.md b/packages/iterators/CHANGELOG.md index 18fbe1052c..271a2bb699 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.59](https://github.com/thi-ng/umbrella/compare/@thi.ng/iterators@5.1.58...@thi.ng/iterators@5.1.59) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/iterators + + + + + ## [5.1.58](https://github.com/thi-ng/umbrella/compare/@thi.ng/iterators@5.1.57...@thi.ng/iterators@5.1.58) (2021-03-27) **Note:** Version bump only for package @thi.ng/iterators diff --git a/packages/iterators/package.json b/packages/iterators/package.json index bf06480181..9c63c9de3a 100644 --- a/packages/iterators/package.json +++ b/packages/iterators/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/iterators", - "version": "5.1.58", + "version": "5.1.59", "description": "Clojure inspired, composable ES6 iterators & generators", "module": "./index.js", "main": "./lib/index.js", @@ -50,7 +50,7 @@ }, "dependencies": { "@thi.ng/api": "^7.1.4", - "@thi.ng/dcons": "^2.3.18", + "@thi.ng/dcons": "^2.3.19", "@thi.ng/errors": "^1.3.0" }, "files": [ diff --git a/packages/ksuid/CHANGELOG.md b/packages/ksuid/CHANGELOG.md index fc9eab860c..b6113e3e65 100644 --- a/packages/ksuid/CHANGELOG.md +++ b/packages/ksuid/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/ksuid@0.1.10...@thi.ng/ksuid@0.2.0) (2021-03-28) + + +### Features + +* **ksuid:** add .parse() & .timeOnly() ([80a0f70](https://github.com/thi-ng/umbrella/commit/80a0f70a2593af1c4e77a33dd3f98e36d9231c1c)) + + + + + ## [0.1.10](https://github.com/thi-ng/umbrella/compare/@thi.ng/ksuid@0.1.9...@thi.ng/ksuid@0.1.10) (2021-03-24) **Note:** Version bump only for package @thi.ng/ksuid diff --git a/packages/ksuid/README.md b/packages/ksuid/README.md index 5f899e2e2e..2a0045799c 100644 --- a/packages/ksuid/README.md +++ b/packages/ksuid/README.md @@ -31,7 +31,9 @@ added flexibility in terms of configuration & implementation: [@thi.ng/base-n](https://github.com/thi-ng/umbrella/tree/develop/packages/base-n) for alternatives) - Epoch start time offset -- RNG source (default: `window.crypto`) +- Time-only base ID generation (optional) +- KSUID parsing / decomposition +- Configurable RNG source (default: `window.crypto` or `Math.random`) KSUIDs generated w/ this package consist of the lower 32bits of an Unix epoch (potentially time shifted to free up bits for future timestamps) and N bits of a @@ -66,7 +68,7 @@ yarn add @thi.ng/ksuid ``` -Package sizes (gzipped, pre-treeshake): ESM: 447 bytes / CJS: 503 bytes / UMD: 627 bytes +Package sizes (gzipped, pre-treeshake): ESM: 563 bytes / CJS: 620 bytes / UMD: 743 bytes ## Dependencies @@ -99,6 +101,19 @@ const a = id.nextBinary() // format a binary KSUID id.format(a); // '05XCZ32AaDZfZt0SWE2C22o6cqK' + +id.parse("05XCZ32AaDZfZt0SWE2C22o6cqK") +// { +// epoch: 1610498125000, +// id: Uint8Array(16) [ +// 101, 251, 244, 17, 155, 97, +// 24, 101, 70, 71, 207, 23, +// 32, 21, 244, 116 +// ] +// } + +new Date(1610498125000).toISOString() +// '2021-01-13T00:35:25.000Z' ``` Creating custom IDs: diff --git a/packages/ksuid/package.json b/packages/ksuid/package.json index 1dc00e4c22..16d04269ee 100644 --- a/packages/ksuid/package.json +++ b/packages/ksuid/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/ksuid", - "version": "0.1.10", + "version": "0.2.0", "description": "Configurable K-sortable unique identifiers, binary & base-N encoded", "module": "./index.js", "main": "./lib/index.js", diff --git a/packages/ksuid/src/index.ts b/packages/ksuid/src/index.ts index 83b55b8196..38b307ab6d 100644 --- a/packages/ksuid/src/index.ts +++ b/packages/ksuid/src/index.ts @@ -72,21 +72,43 @@ export class KSUID { * Returns a new baseN encoded ID string. */ next() { - return this.pad(this.base.encodeBytes(this.nextBinary())); + return this.format(this.nextBinary()); } /** * Returns a new ID as byte array. */ nextBinary() { - const buf = new Uint8Array(this.size); - const t = (Date.now() / 1000 - this.epoch) & 0xffffffff; - buf.set([t >>> 24, (t >>> 16) & 0xff, (t >>> 8) & 0xff, t & 0xff]); + const buf = this.timeOnlyBinary(); return this.rnd ? randomBytesFrom(this.rnd, buf, 4) : randomBytes(buf, 4); } + /** + * Returns a new baseN encoded ID string for given `epoch` (default: current + * time) and with all random payload bytes set to 0. + * + * @param epoch + */ + timeOnly(epoch?: number) { + return this.format(this.timeOnlyBinary(epoch)); + } + + /** + * Binary version of {@link KSUI.timeOnly}, but returns byte array. The + * first 4 bytes will contain the timestamp. + * + * @param epoch + */ + timeOnlyBinary(epoch = Date.now()) { + const buf = new Uint8Array(this.size); + let t = epoch / 1000 - this.epoch; + assert(t >= 0, "configured base epoch must be in the past"); + buf.set([t >>> 24, (t >>> 16) & 0xff, (t >>> 8) & 0xff, t & 0xff]); + return buf; + } + /** * Returns baseN encoded version of given binary ID (generated via * `.nextBinary()`). @@ -98,6 +120,28 @@ export class KSUID { ); return this.pad(this.base.encodeBytes(buf)); } + + /** + * Takes a KSUID string (assumed to be generated with the same config as + * this instance) and parses it into an object of: `{ epoch, id }`, where + * `epoch` is the Unix epoch of the ID and `id` the random bytes. + * + * @remarks + * This operation requires `bigint` support by the host environment. + * + * @param id + */ + parse(id: string) { + const buf = new Uint8Array(this.size); + this.base.decodeBytes(id, buf); + return { + epoch: + (((buf[0] << 24) | (buf[1] << 16) | (buf[2] << 8) | buf[3]) + + this.epoch) * + 1000, + id: buf.slice(4), + }; + } } /** diff --git a/packages/ksuid/tpl.readme.md b/packages/ksuid/tpl.readme.md index 80353ff15d..1c6e85a8b2 100644 --- a/packages/ksuid/tpl.readme.md +++ b/packages/ksuid/tpl.readme.md @@ -21,7 +21,9 @@ added flexibility in terms of configuration & implementation: [@thi.ng/base-n](https://github.com/thi-ng/umbrella/tree/develop/packages/base-n) for alternatives) - Epoch start time offset -- RNG source (default: `window.crypto`) +- Time-only base ID generation (optional) +- KSUID parsing / decomposition +- Configurable RNG source (default: `window.crypto` or `Math.random`) KSUIDs generated w/ this package consist of the lower 32bits of an Unix epoch (potentially time shifted to free up bits for future timestamps) and N bits of a @@ -75,6 +77,19 @@ const a = id.nextBinary() // format a binary KSUID id.format(a); // '05XCZ32AaDZfZt0SWE2C22o6cqK' + +id.parse("05XCZ32AaDZfZt0SWE2C22o6cqK") +// { +// epoch: 1610498125000, +// id: Uint8Array(16) [ +// 101, 251, 244, 17, 155, 97, +// 24, 101, 70, 71, 207, 23, +// 32, 21, 244, 116 +// ] +// } + +new Date(1610498125000).toISOString() +// '2021-01-13T00:35:25.000Z' ``` Creating custom IDs: diff --git a/packages/leb128/CHANGELOG.md b/packages/leb128/CHANGELOG.md index 15ec882c89..fd62a0197f 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.53](https://github.com/thi-ng/umbrella/compare/@thi.ng/leb128@1.0.52...@thi.ng/leb128@1.0.53) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/leb128 + + + + + ## [1.0.52](https://github.com/thi-ng/umbrella/compare/@thi.ng/leb128@1.0.51...@thi.ng/leb128@1.0.52) (2021-03-27) **Note:** Version bump only for package @thi.ng/leb128 diff --git a/packages/leb128/package.json b/packages/leb128/package.json index 249d9c96e7..a85b3d54d7 100644 --- a/packages/leb128/package.json +++ b/packages/leb128/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/leb128", - "version": "1.0.52", + "version": "1.0.53", "description": "WASM based LEB128 encoder / decoder (signed & unsigned)", "module": "./index.js", "main": "./lib/index.js", @@ -52,7 +52,7 @@ "dependencies": { "@thi.ng/checks": "^2.9.5", "@thi.ng/errors": "^1.3.0", - "@thi.ng/transducers-binary": "^0.6.14" + "@thi.ng/transducers-binary": "^0.6.15" }, "files": [ "*.js", diff --git a/packages/lsys/CHANGELOG.md b/packages/lsys/CHANGELOG.md index b6ecd08efd..34489a2d7b 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.81](https://github.com/thi-ng/umbrella/compare/@thi.ng/lsys@0.2.80...@thi.ng/lsys@0.2.81) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/lsys + + + + + ## [0.2.80](https://github.com/thi-ng/umbrella/compare/@thi.ng/lsys@0.2.79...@thi.ng/lsys@0.2.80) (2021-03-27) **Note:** Version bump only for package @thi.ng/lsys diff --git a/packages/lsys/package.json b/packages/lsys/package.json index 9409fd2a7f..9ee073bd83 100644 --- a/packages/lsys/package.json +++ b/packages/lsys/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/lsys", - "version": "0.2.80", + "version": "0.2.81", "description": "Functional, extensible L-System architecture w/ support for probabilistic rules", "module": "./index.js", "main": "./lib/index.js", @@ -54,8 +54,8 @@ "@thi.ng/errors": "^1.3.0", "@thi.ng/math": "^3.3.0", "@thi.ng/random": "^2.3.6", - "@thi.ng/transducers": "^7.6.8", - "@thi.ng/vectors": "^5.1.6" + "@thi.ng/transducers": "^7.6.9", + "@thi.ng/vectors": "^5.1.7" }, "files": [ "*.js", diff --git a/packages/matrices/CHANGELOG.md b/packages/matrices/CHANGELOG.md index 52ab62b65f..8a661eca51 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.53](https://github.com/thi-ng/umbrella/compare/@thi.ng/matrices@0.6.52...@thi.ng/matrices@0.6.53) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/matrices + + + + + ## [0.6.52](https://github.com/thi-ng/umbrella/compare/@thi.ng/matrices@0.6.51...@thi.ng/matrices@0.6.52) (2021-03-27) **Note:** Version bump only for package @thi.ng/matrices diff --git a/packages/matrices/package.json b/packages/matrices/package.json index 45d42124b3..ac2deca288 100644 --- a/packages/matrices/package.json +++ b/packages/matrices/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/matrices", - "version": "0.6.52", + "version": "0.6.53", "description": "Matrix & quaternion operations for 2D/3D geometry processing", "module": "./index.js", "main": "./lib/index.js", @@ -52,7 +52,7 @@ "@thi.ng/api": "^7.1.4", "@thi.ng/checks": "^2.9.5", "@thi.ng/math": "^3.3.0", - "@thi.ng/vectors": "^5.1.6" + "@thi.ng/vectors": "^5.1.7" }, "files": [ "*.js", diff --git a/packages/mime/CHANGELOG.md b/packages/mime/CHANGELOG.md index 8ebbb5be0f..68b3dbc2f6 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.3.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/mime@0.3.0...@thi.ng/mime@0.3.1) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/mime + + + + + # [0.3.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/mime@0.2.0...@thi.ng/mime@0.3.0) (2021-03-27) diff --git a/packages/mime/package.json b/packages/mime/package.json index 73938d08cb..e46bb40b9f 100644 --- a/packages/mime/package.json +++ b/packages/mime/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/mime", - "version": "0.3.0", + "version": "0.3.1", "description": "650+ file extension to MIME type mappings, based on mime-db", "module": "./index.js", "main": "./lib/index.js", diff --git a/packages/poisson/CHANGELOG.md b/packages/poisson/CHANGELOG.md index 60f68096df..c9bd2e4213 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.37](https://github.com/thi-ng/umbrella/compare/@thi.ng/poisson@1.1.36...@thi.ng/poisson@1.1.37) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/poisson + + + + + ## [1.1.36](https://github.com/thi-ng/umbrella/compare/@thi.ng/poisson@1.1.35...@thi.ng/poisson@1.1.36) (2021-03-27) **Note:** Version bump only for package @thi.ng/poisson diff --git a/packages/poisson/package.json b/packages/poisson/package.json index 5a72b2329a..346fcd0ee2 100644 --- a/packages/poisson/package.json +++ b/packages/poisson/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/poisson", - "version": "1.1.36", + "version": "1.1.37", "description": "nD Stratified grid and Poisson-disc sampling w/ support for spatial density functions and custom PRNGs", "module": "./index.js", "main": "./lib/index.js", @@ -51,10 +51,10 @@ "dependencies": { "@thi.ng/api": "^7.1.4", "@thi.ng/checks": "^2.9.5", - "@thi.ng/geom-api": "^2.0.14", + "@thi.ng/geom-api": "^2.0.15", "@thi.ng/random": "^2.3.6", - "@thi.ng/transducers": "^7.6.8", - "@thi.ng/vectors": "^5.1.6" + "@thi.ng/transducers": "^7.6.9", + "@thi.ng/vectors": "^5.1.7" }, "files": [ "*.js", diff --git a/packages/ramp/CHANGELOG.md b/packages/ramp/CHANGELOG.md index 5daa3ce694..d440ce2009 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.55](https://github.com/thi-ng/umbrella/compare/@thi.ng/ramp@0.1.54...@thi.ng/ramp@0.1.55) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/ramp + + + + + ## [0.1.54](https://github.com/thi-ng/umbrella/compare/@thi.ng/ramp@0.1.53...@thi.ng/ramp@0.1.54) (2021-03-27) **Note:** Version bump only for package @thi.ng/ramp diff --git a/packages/ramp/package.json b/packages/ramp/package.json index 1ce1ac9b88..f0df7da9d3 100644 --- a/packages/ramp/package.json +++ b/packages/ramp/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/ramp", - "version": "0.1.54", + "version": "0.1.55", "description": "Parametric interpolated 1D lookup tables for remapping values", "module": "./index.js", "main": "./lib/index.js", @@ -52,8 +52,8 @@ "@thi.ng/arrays": "^0.10.9", "@thi.ng/compare": "^1.3.28", "@thi.ng/math": "^3.3.0", - "@thi.ng/transducers": "^7.6.8", - "@thi.ng/vectors": "^5.1.6" + "@thi.ng/transducers": "^7.6.9", + "@thi.ng/vectors": "^5.1.7" }, "files": [ "*.js", diff --git a/packages/range-coder/CHANGELOG.md b/packages/range-coder/CHANGELOG.md index 8461436dd4..53168f02b3 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.78](https://github.com/thi-ng/umbrella/compare/@thi.ng/range-coder@1.0.77...@thi.ng/range-coder@1.0.78) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/range-coder + + + + + ## [1.0.77](https://github.com/thi-ng/umbrella/compare/@thi.ng/range-coder@1.0.76...@thi.ng/range-coder@1.0.77) (2021-03-27) **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 bc92be435d..8c99fa588e 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.77", + "version": "1.0.78", "description": "Binary data range encoder / decoder", "module": "./index.js", "main": "./lib/index.js", @@ -40,7 +40,7 @@ "devDependencies": { "@istanbuljs/nyc-config-typescript": "^1.0.1", "@microsoft/api-extractor": "^7.13.1", - "@thi.ng/transducers": "^7.6.8", + "@thi.ng/transducers": "^7.6.9", "@types/mocha": "^8.2.0", "@types/node": "^14.14.14", "mocha": "^8.3.0", diff --git a/packages/rdom-canvas/CHANGELOG.md b/packages/rdom-canvas/CHANGELOG.md index 8cfeaf4108..b0cd465c8b 100644 --- a/packages/rdom-canvas/CHANGELOG.md +++ b/packages/rdom-canvas/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.41](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom-canvas@0.1.40...@thi.ng/rdom-canvas@0.1.41) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/rdom-canvas + + + + + ## [0.1.40](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom-canvas@0.1.39...@thi.ng/rdom-canvas@0.1.40) (2021-03-27) **Note:** Version bump only for package @thi.ng/rdom-canvas diff --git a/packages/rdom-canvas/package.json b/packages/rdom-canvas/package.json index 50453f44de..263886642c 100644 --- a/packages/rdom-canvas/package.json +++ b/packages/rdom-canvas/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rdom-canvas", - "version": "0.1.40", + "version": "0.1.41", "description": "@thi.ng/rdom component wrapper for @thi.ng/hiccup-canvas and declarative canvas drawing", "module": "./index.js", "main": "./lib/index.js", @@ -51,10 +51,10 @@ "@thi.ng/adapt-dpi": "^1.0.19", "@thi.ng/api": "^7.1.4", "@thi.ng/checks": "^2.9.5", - "@thi.ng/hiccup-canvas": "^1.1.32", - "@thi.ng/rdom": "^0.4.9", - "@thi.ng/rstream": "^6.0.2", - "@thi.ng/transducers": "^7.6.8" + "@thi.ng/hiccup-canvas": "^1.1.33", + "@thi.ng/rdom": "^0.4.10", + "@thi.ng/rstream": "^6.0.3", + "@thi.ng/transducers": "^7.6.9" }, "files": [ "*.js", diff --git a/packages/rdom-components/CHANGELOG.md b/packages/rdom-components/CHANGELOG.md index ac037c1918..05f4d07061 100644 --- a/packages/rdom-components/CHANGELOG.md +++ b/packages/rdom-components/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.38](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom-components@0.1.37...@thi.ng/rdom-components@0.1.38) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/rdom-components + + + + + ## [0.1.37](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom-components@0.1.36...@thi.ng/rdom-components@0.1.37) (2021-03-27) **Note:** Version bump only for package @thi.ng/rdom-components diff --git a/packages/rdom-components/package.json b/packages/rdom-components/package.json index c52aa4ae3a..88db92512f 100644 --- a/packages/rdom-components/package.json +++ b/packages/rdom-components/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rdom-components", - "version": "0.1.37", + "version": "0.1.38", "description": "Collection of unstyled, customizable components for @thi.ng/rdom", "module": "./index.js", "main": "./lib/index.js", @@ -49,12 +49,12 @@ }, "dependencies": { "@thi.ng/api": "^7.1.4", - "@thi.ng/associative": "^5.1.8", + "@thi.ng/associative": "^5.1.9", "@thi.ng/hiccup-html": "^0.3.17", - "@thi.ng/rdom": "^0.4.9", - "@thi.ng/rstream": "^6.0.2", + "@thi.ng/rdom": "^0.4.10", + "@thi.ng/rstream": "^6.0.3", "@thi.ng/strings": "^2.1.0", - "@thi.ng/transducers": "^7.6.8" + "@thi.ng/transducers": "^7.6.9" }, "files": [ "*.js", diff --git a/packages/rdom/CHANGELOG.md b/packages/rdom/CHANGELOG.md index ff84518137..5d6ab4e7a8 100644 --- a/packages/rdom/CHANGELOG.md +++ b/packages/rdom/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.4.10](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom@0.4.9...@thi.ng/rdom@0.4.10) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/rdom + + + + + ## [0.4.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/rdom@0.4.8...@thi.ng/rdom@0.4.9) (2021-03-27) **Note:** Version bump only for package @thi.ng/rdom diff --git a/packages/rdom/package.json b/packages/rdom/package.json index dfe18b3d1d..0347633681 100644 --- a/packages/rdom/package.json +++ b/packages/rdom/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rdom", - "version": "0.4.9", + "version": "0.4.10", "description": "Lightweight, reactive, VDOM-less UI/DOM components with async lifecycle and @thi.ng/hiccup compatible", "module": "./index.js", "main": "./lib/index.js", @@ -55,7 +55,7 @@ "@thi.ng/hiccup": "^3.6.14", "@thi.ng/paths": "^4.2.6", "@thi.ng/prefixes": "^0.1.17", - "@thi.ng/rstream": "^6.0.2", + "@thi.ng/rstream": "^6.0.3", "@thi.ng/strings": "^2.1.0" }, "files": [ diff --git a/packages/rstream-csp/CHANGELOG.md b/packages/rstream-csp/CHANGELOG.md index 0956085249..7b39a3da75 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.62](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-csp@2.0.61...@thi.ng/rstream-csp@2.0.62) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/rstream-csp + + + + + ## [2.0.61](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-csp@2.0.60...@thi.ng/rstream-csp@2.0.61) (2021-03-27) **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 5cb97c206b..dcf1706575 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.61", + "version": "2.0.62", "description": "@thi.ng/csp bridge module for @thi.ng/rstream", "module": "./index.js", "main": "./lib/index.js", @@ -49,8 +49,8 @@ "typescript": "^4.2.3" }, "dependencies": { - "@thi.ng/csp": "^1.1.58", - "@thi.ng/rstream": "^6.0.2" + "@thi.ng/csp": "^1.1.59", + "@thi.ng/rstream": "^6.0.3" }, "files": [ "*.js", diff --git a/packages/rstream-dot/CHANGELOG.md b/packages/rstream-dot/CHANGELOG.md index 588d2c3371..181cb81f79 100644 --- a/packages/rstream-dot/CHANGELOG.md +++ b/packages/rstream-dot/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.2.11](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-dot@1.2.10...@thi.ng/rstream-dot@1.2.11) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/rstream-dot + + + + + ## [1.2.10](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-dot@1.2.9...@thi.ng/rstream-dot@1.2.10) (2021-03-27) **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 ab013b0c74..e7f69ad4bd 100644 --- a/packages/rstream-dot/package.json +++ b/packages/rstream-dot/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-dot", - "version": "1.2.10", + "version": "1.2.11", "description": "Graphviz DOT conversion of @thi.ng/rstream dataflow graph topologies", "module": "./index.js", "main": "./lib/index.js", @@ -49,9 +49,9 @@ "typescript": "^4.2.3" }, "dependencies": { - "@thi.ng/rstream": "^6.0.2", + "@thi.ng/rstream": "^6.0.3", "@thi.ng/strings": "^2.1.0", - "@thi.ng/transducers": "^7.6.8" + "@thi.ng/transducers": "^7.6.9" }, "files": [ "*.js", diff --git a/packages/rstream-gestures/CHANGELOG.md b/packages/rstream-gestures/CHANGELOG.md index 92b422a23f..d9ba0bf129 100644 --- a/packages/rstream-gestures/CHANGELOG.md +++ b/packages/rstream-gestures/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.0.16](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-gestures@3.0.15...@thi.ng/rstream-gestures@3.0.16) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/rstream-gestures + + + + + ## [3.0.15](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-gestures@3.0.14...@thi.ng/rstream-gestures@3.0.15) (2021-03-27) **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 9f1678bd01..e67e69e81e 100644 --- a/packages/rstream-gestures/package.json +++ b/packages/rstream-gestures/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-gestures", - "version": "3.0.15", + "version": "3.0.16", "description": "Unified mouse, mouse wheel & multi-touch event stream abstraction", "module": "./index.js", "main": "./lib/index.js", @@ -52,8 +52,8 @@ "@thi.ng/api": "^7.1.4", "@thi.ng/checks": "^2.9.5", "@thi.ng/math": "^3.3.0", - "@thi.ng/rstream": "^6.0.2", - "@thi.ng/transducers": "^7.6.8" + "@thi.ng/rstream": "^6.0.3", + "@thi.ng/transducers": "^7.6.9" }, "files": [ "*.js", diff --git a/packages/rstream-graph/CHANGELOG.md b/packages/rstream-graph/CHANGELOG.md index 4c0cc7b83a..eb55639f66 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.63](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-graph@3.2.62...@thi.ng/rstream-graph@3.2.63) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/rstream-graph + + + + + ## [3.2.62](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-graph@3.2.61...@thi.ng/rstream-graph@3.2.62) (2021-03-27) **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 97200ba43f..095e4c59cc 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.62", + "version": "3.2.63", "description": "Declarative dataflow graph construction for @thi.ng/rstream", "module": "./index.js", "main": "./lib/index.js", @@ -55,8 +55,8 @@ "@thi.ng/errors": "^1.3.0", "@thi.ng/paths": "^4.2.6", "@thi.ng/resolve-map": "^4.2.19", - "@thi.ng/rstream": "^6.0.2", - "@thi.ng/transducers": "^7.6.8" + "@thi.ng/rstream": "^6.0.3", + "@thi.ng/transducers": "^7.6.9" }, "files": [ "*.js", diff --git a/packages/rstream-log-file/CHANGELOG.md b/packages/rstream-log-file/CHANGELOG.md index e909112d5d..5ee6ea8474 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.84](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log-file@0.1.83...@thi.ng/rstream-log-file@0.1.84) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/rstream-log-file + + + + + ## [0.1.83](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log-file@0.1.82...@thi.ng/rstream-log-file@0.1.83) (2021-03-27) **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 36bbe41e4b..7ada065e19 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.83", + "version": "0.1.84", "description": "File output handler for structured, multilevel & hierarchical loggers based on @thi.ng/rstream", "module": "./index.js", "main": "./lib/index.js", @@ -49,7 +49,7 @@ "typescript": "^4.2.3" }, "dependencies": { - "@thi.ng/rstream": "^6.0.2" + "@thi.ng/rstream": "^6.0.3" }, "files": [ "*.js", diff --git a/packages/rstream-log/CHANGELOG.md b/packages/rstream-log/CHANGELOG.md index bc6007dc2d..838359d2ec 100644 --- a/packages/rstream-log/CHANGELOG.md +++ b/packages/rstream-log/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.2.15](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log@3.2.14...@thi.ng/rstream-log@3.2.15) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/rstream-log + + + + + ## [3.2.14](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log@3.2.13...@thi.ng/rstream-log@3.2.14) (2021-03-27) **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 165b9853e4..7fa3e6898a 100644 --- a/packages/rstream-log/package.json +++ b/packages/rstream-log/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-log", - "version": "3.2.14", + "version": "3.2.15", "description": "Structured, multilevel & hierarchical loggers based on @thi.ng/rstream", "module": "./index.js", "main": "./lib/index.js", @@ -52,9 +52,9 @@ "@thi.ng/api": "^7.1.4", "@thi.ng/checks": "^2.9.5", "@thi.ng/errors": "^1.3.0", - "@thi.ng/rstream": "^6.0.2", + "@thi.ng/rstream": "^6.0.3", "@thi.ng/strings": "^2.1.0", - "@thi.ng/transducers": "^7.6.8" + "@thi.ng/transducers": "^7.6.9" }, "files": [ "*.js", diff --git a/packages/rstream-query/CHANGELOG.md b/packages/rstream-query/CHANGELOG.md index 6ff1a6d74d..f7eab862a2 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.71](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-query@1.1.70...@thi.ng/rstream-query@1.1.71) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/rstream-query + + + + + ## [1.1.70](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-query@1.1.69...@thi.ng/rstream-query@1.1.70) (2021-03-27) **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 02bd699ef0..d4b2a8b1dc 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.70", + "version": "1.1.71", "description": "@thi.ng/rstream based triple store & reactive query engine", "module": "./index.js", "main": "./lib/index.js", @@ -50,14 +50,14 @@ }, "dependencies": { "@thi.ng/api": "^7.1.4", - "@thi.ng/associative": "^5.1.8", + "@thi.ng/associative": "^5.1.9", "@thi.ng/checks": "^2.9.5", "@thi.ng/equiv": "^1.0.41", "@thi.ng/errors": "^1.3.0", "@thi.ng/math": "^3.3.0", - "@thi.ng/rstream": "^6.0.2", - "@thi.ng/rstream-dot": "^1.2.10", - "@thi.ng/transducers": "^7.6.8" + "@thi.ng/rstream": "^6.0.3", + "@thi.ng/rstream-dot": "^1.2.11", + "@thi.ng/transducers": "^7.6.9" }, "files": [ "*.js", diff --git a/packages/rstream/CHANGELOG.md b/packages/rstream/CHANGELOG.md index c4be721532..425bea6053 100644 --- a/packages/rstream/CHANGELOG.md +++ b/packages/rstream/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [6.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream@6.0.2...@thi.ng/rstream@6.0.3) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/rstream + + + + + ## [6.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream@6.0.1...@thi.ng/rstream@6.0.2) (2021-03-27) **Note:** Version bump only for package @thi.ng/rstream diff --git a/packages/rstream/package.json b/packages/rstream/package.json index 69941e6dd4..aa77bd4cf6 100644 --- a/packages/rstream/package.json +++ b/packages/rstream/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream", - "version": "6.0.2", + "version": "6.0.3", "description": "Reactive streams & subscription primitives for constructing dataflow graphs / pipelines", "module": "./index.js", "main": "./lib/index.js", @@ -51,11 +51,11 @@ "dependencies": { "@thi.ng/api": "^7.1.4", "@thi.ng/arrays": "^0.10.9", - "@thi.ng/associative": "^5.1.8", + "@thi.ng/associative": "^5.1.9", "@thi.ng/atom": "^4.1.34", "@thi.ng/checks": "^2.9.5", "@thi.ng/errors": "^1.3.0", - "@thi.ng/transducers": "^7.6.8" + "@thi.ng/transducers": "^7.6.9" }, "files": [ "*.js", diff --git a/packages/sax/CHANGELOG.md b/packages/sax/CHANGELOG.md index 47dc64d66f..9a3e8231a9 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.58](https://github.com/thi-ng/umbrella/compare/@thi.ng/sax@1.1.57...@thi.ng/sax@1.1.58) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/sax + + + + + ## [1.1.57](https://github.com/thi-ng/umbrella/compare/@thi.ng/sax@1.1.56...@thi.ng/sax@1.1.57) (2021-03-27) **Note:** Version bump only for package @thi.ng/sax diff --git a/packages/sax/package.json b/packages/sax/package.json index 393df31658..b3b4564081 100644 --- a/packages/sax/package.json +++ b/packages/sax/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/sax", - "version": "1.1.57", + "version": "1.1.58", "description": "Transducer-based, SAX-like, non-validating, speedy & tiny XML parser", "module": "./index.js", "main": "./lib/index.js", @@ -50,8 +50,8 @@ }, "dependencies": { "@thi.ng/api": "^7.1.4", - "@thi.ng/transducers": "^7.6.8", - "@thi.ng/transducers-fsm": "^1.1.57" + "@thi.ng/transducers": "^7.6.9", + "@thi.ng/transducers-fsm": "^1.1.58" }, "files": [ "*.js", diff --git a/packages/scenegraph/CHANGELOG.md b/packages/scenegraph/CHANGELOG.md index c6037e309d..e9fd6f46b5 100644 --- a/packages/scenegraph/CHANGELOG.md +++ b/packages/scenegraph/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.3.27](https://github.com/thi-ng/umbrella/compare/@thi.ng/scenegraph@0.3.26...@thi.ng/scenegraph@0.3.27) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/scenegraph + + + + + ## [0.3.26](https://github.com/thi-ng/umbrella/compare/@thi.ng/scenegraph@0.3.25...@thi.ng/scenegraph@0.3.26) (2021-03-27) **Note:** Version bump only for package @thi.ng/scenegraph diff --git a/packages/scenegraph/package.json b/packages/scenegraph/package.json index 4c2aea7905..c80ae6d936 100644 --- a/packages/scenegraph/package.json +++ b/packages/scenegraph/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/scenegraph", - "version": "0.3.26", + "version": "0.3.27", "description": "Extensible 2D/3D scene graph with @thi.ng/hiccup-canvas support", "module": "./index.js", "main": "./lib/index.js", @@ -51,8 +51,8 @@ "dependencies": { "@thi.ng/api": "^7.1.4", "@thi.ng/checks": "^2.9.5", - "@thi.ng/matrices": "^0.6.52", - "@thi.ng/vectors": "^5.1.6" + "@thi.ng/matrices": "^0.6.53", + "@thi.ng/vectors": "^5.1.7" }, "files": [ "*.js", diff --git a/packages/shader-ast-glsl/CHANGELOG.md b/packages/shader-ast-glsl/CHANGELOG.md index 31d98ec070..b37956838f 100644 --- a/packages/shader-ast-glsl/CHANGELOG.md +++ b/packages/shader-ast-glsl/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.2.30](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-glsl@0.2.29...@thi.ng/shader-ast-glsl@0.2.30) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/shader-ast-glsl + + + + + ## [0.2.29](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-glsl@0.2.28...@thi.ng/shader-ast-glsl@0.2.29) (2021-03-27) **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 55f17296d5..e082ec0b1d 100644 --- a/packages/shader-ast-glsl/package.json +++ b/packages/shader-ast-glsl/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/shader-ast-glsl", - "version": "0.2.29", + "version": "0.2.30", "description": "Customizable GLSL codegen for @thi.ng/shader-ast", "module": "./index.js", "main": "./lib/index.js", @@ -52,7 +52,7 @@ "@thi.ng/api": "^7.1.4", "@thi.ng/checks": "^2.9.5", "@thi.ng/errors": "^1.3.0", - "@thi.ng/shader-ast": "^0.8.7" + "@thi.ng/shader-ast": "^0.8.8" }, "files": [ "*.js", diff --git a/packages/shader-ast-js/CHANGELOG.md b/packages/shader-ast-js/CHANGELOG.md index 9092af714e..51ebf71607 100644 --- a/packages/shader-ast-js/CHANGELOG.md +++ b/packages/shader-ast-js/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.5.30](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-js@0.5.29...@thi.ng/shader-ast-js@0.5.30) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/shader-ast-js + + + + + ## [0.5.29](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-js@0.5.28...@thi.ng/shader-ast-js@0.5.29) (2021-03-27) **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 aa701d654e..9e3b0eb572 100644 --- a/packages/shader-ast-js/package.json +++ b/packages/shader-ast-js/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/shader-ast-js", - "version": "0.5.29", + "version": "0.5.30", "description": "Customizable JS codegen, compiler & runtime for @thi.ng/shader-ast", "module": "./index.js", "main": "./lib/index.js", @@ -53,10 +53,10 @@ "@thi.ng/checks": "^2.9.5", "@thi.ng/errors": "^1.3.0", "@thi.ng/math": "^3.3.0", - "@thi.ng/matrices": "^0.6.52", + "@thi.ng/matrices": "^0.6.53", "@thi.ng/pixel": "^0.8.1", - "@thi.ng/shader-ast": "^0.8.7", - "@thi.ng/vectors": "^5.1.6" + "@thi.ng/shader-ast": "^0.8.8", + "@thi.ng/vectors": "^5.1.7" }, "files": [ "*.js", diff --git a/packages/shader-ast-stdlib/CHANGELOG.md b/packages/shader-ast-stdlib/CHANGELOG.md index 921b79628e..67e771cc6b 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.5.22](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-stdlib@0.5.21...@thi.ng/shader-ast-stdlib@0.5.22) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/shader-ast-stdlib + + + + + ## [0.5.21](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-stdlib@0.5.20...@thi.ng/shader-ast-stdlib@0.5.21) (2021-03-27) **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 518a55382e..2c62cde162 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.5.21", + "version": "0.5.22", "description": "Function collection for modular GPGPU / shader programming with @thi.ng/shader-ast", "module": "./index.js", "main": "./lib/index.js", @@ -50,7 +50,7 @@ }, "dependencies": { "@thi.ng/api": "^7.1.4", - "@thi.ng/shader-ast": "^0.8.7" + "@thi.ng/shader-ast": "^0.8.8" }, "files": [ "*.js", diff --git a/packages/shader-ast/CHANGELOG.md b/packages/shader-ast/CHANGELOG.md index fa58f78fc7..0aec81aa74 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.8.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast@0.8.7...@thi.ng/shader-ast@0.8.8) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/shader-ast + + + + + ## [0.8.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast@0.8.6...@thi.ng/shader-ast@0.8.7) (2021-03-27) **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 f3566e1ee6..135d461f86 100644 --- a/packages/shader-ast/package.json +++ b/packages/shader-ast/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/shader-ast", - "version": "0.8.7", + "version": "0.8.8", "description": "DSL to define shader code in TypeScript and cross-compile to GLSL, JS and other targets", "module": "./index.js", "main": "./lib/index.js", @@ -52,7 +52,7 @@ "@thi.ng/api": "^7.1.4", "@thi.ng/checks": "^2.9.5", "@thi.ng/defmulti": "^1.3.11", - "@thi.ng/dgraph": "^1.3.17", + "@thi.ng/dgraph": "^1.3.18", "@thi.ng/errors": "^1.3.0" }, "files": [ diff --git a/packages/simd/CHANGELOG.md b/packages/simd/CHANGELOG.md index 8d264fac42..99dc782c34 100644 --- a/packages/simd/CHANGELOG.md +++ b/packages/simd/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.4.26](https://github.com/thi-ng/umbrella/compare/@thi.ng/simd@0.4.25...@thi.ng/simd@0.4.26) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/simd + + + + + ## [0.4.25](https://github.com/thi-ng/umbrella/compare/@thi.ng/simd@0.4.24...@thi.ng/simd@0.4.25) (2021-03-27) **Note:** Version bump only for package @thi.ng/simd diff --git a/packages/simd/package.json b/packages/simd/package.json index ed8889b5e9..f13a6927e3 100644 --- a/packages/simd/package.json +++ b/packages/simd/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/simd", - "version": "0.4.25", + "version": "0.4.26", "description": "WASM based SIMD vector operations for batch processing", "module": "./index.js", "main": "./lib/index.js", @@ -52,7 +52,7 @@ "typescript": "^4.2.3" }, "dependencies": { - "@thi.ng/transducers-binary": "^0.6.14" + "@thi.ng/transducers-binary": "^0.6.15" }, "files": [ "*.js", diff --git a/packages/soa/CHANGELOG.md b/packages/soa/CHANGELOG.md index 58fd762951..4851612995 100644 --- a/packages/soa/CHANGELOG.md +++ b/packages/soa/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.2.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/soa@0.2.8...@thi.ng/soa@0.2.9) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/soa + + + + + ## [0.2.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/soa@0.2.7...@thi.ng/soa@0.2.8) (2021-03-27) **Note:** Version bump only for package @thi.ng/soa diff --git a/packages/soa/package.json b/packages/soa/package.json index 6ce869af94..ac1e3bab65 100644 --- a/packages/soa/package.json +++ b/packages/soa/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/soa", - "version": "0.2.8", + "version": "0.2.9", "description": "SOA & AOS memory mapped structured views with optional & extensible serialization", "module": "./index.js", "main": "./lib/index.js", @@ -53,8 +53,8 @@ "@thi.ng/api": "^7.1.4", "@thi.ng/binary": "^2.2.4", "@thi.ng/errors": "^1.3.0", - "@thi.ng/transducers-binary": "^0.6.14", - "@thi.ng/vectors": "^5.1.6" + "@thi.ng/transducers-binary": "^0.6.15", + "@thi.ng/vectors": "^5.1.7" }, "files": [ "*.js", diff --git a/packages/sparse/CHANGELOG.md b/packages/sparse/CHANGELOG.md index c71bf11b4a..b380402738 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.74](https://github.com/thi-ng/umbrella/compare/@thi.ng/sparse@0.1.73...@thi.ng/sparse@0.1.74) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/sparse + + + + + ## [0.1.73](https://github.com/thi-ng/umbrella/compare/@thi.ng/sparse@0.1.72...@thi.ng/sparse@0.1.73) (2021-03-27) **Note:** Version bump only for package @thi.ng/sparse diff --git a/packages/sparse/package.json b/packages/sparse/package.json index e02c12b16f..6f02ca7781 100644 --- a/packages/sparse/package.json +++ b/packages/sparse/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/sparse", - "version": "0.1.73", + "version": "0.1.74", "description": "Sparse vector & matrix implementations", "module": "./index.js", "main": "./lib/index.js", @@ -51,7 +51,7 @@ "dependencies": { "@thi.ng/api": "^7.1.4", "@thi.ng/errors": "^1.3.0", - "@thi.ng/transducers": "^7.6.8" + "@thi.ng/transducers": "^7.6.9" }, "files": [ "*.js", diff --git a/packages/system/CHANGELOG.md b/packages/system/CHANGELOG.md index 04a1920a5e..c758a4b5be 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.47](https://github.com/thi-ng/umbrella/compare/@thi.ng/system@0.2.46...@thi.ng/system@0.2.47) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/system + + + + + ## [0.2.46](https://github.com/thi-ng/umbrella/compare/@thi.ng/system@0.2.45...@thi.ng/system@0.2.46) (2021-03-27) **Note:** Version bump only for package @thi.ng/system diff --git a/packages/system/package.json b/packages/system/package.json index e26f7b57a7..6836a68b04 100644 --- a/packages/system/package.json +++ b/packages/system/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/system", - "version": "0.2.46", + "version": "0.2.47", "description": "Minimal DI / life cycle container for stateful app components", "module": "./index.js", "main": "./lib/index.js", @@ -50,7 +50,7 @@ }, "dependencies": { "@thi.ng/api": "^7.1.4", - "@thi.ng/dgraph": "^1.3.17" + "@thi.ng/dgraph": "^1.3.18" }, "files": [ "*.js", diff --git a/packages/text-canvas/CHANGELOG.md b/packages/text-canvas/CHANGELOG.md index 3865605b75..7e23271562 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.7.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/text-canvas@0.7.1...@thi.ng/text-canvas@0.7.2) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/text-canvas + + + + + ## [0.7.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/text-canvas@0.7.0...@thi.ng/text-canvas@0.7.1) (2021-03-27) **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 6f3353bc8b..541cf23dfb 100644 --- a/packages/text-canvas/package.json +++ b/packages/text-canvas/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/text-canvas", - "version": "0.7.1", + "version": "0.7.2", "description": "Text based canvas, drawing, tables with arbitrary formatting (incl. ANSI/HTML)", "module": "./index.js", "main": "./lib/index.js", @@ -52,11 +52,11 @@ "@thi.ng/api": "^7.1.4", "@thi.ng/arrays": "^0.10.9", "@thi.ng/checks": "^2.9.5", - "@thi.ng/geom-clip-line": "^1.2.28", + "@thi.ng/geom-clip-line": "^1.2.29", "@thi.ng/math": "^3.3.0", "@thi.ng/memoize": "^2.1.14", "@thi.ng/strings": "^2.1.0", - "@thi.ng/transducers": "^7.6.8" + "@thi.ng/transducers": "^7.6.9" }, "files": [ "*.js", diff --git a/packages/transducers-binary/CHANGELOG.md b/packages/transducers-binary/CHANGELOG.md index df773400e2..d28dd4403c 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.6.15](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-binary@0.6.14...@thi.ng/transducers-binary@0.6.15) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/transducers-binary + + + + + ## [0.6.14](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-binary@0.6.13...@thi.ng/transducers-binary@0.6.14) (2021-03-27) **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 d064dbe5ae..3d1bdd792d 100644 --- a/packages/transducers-binary/package.json +++ b/packages/transducers-binary/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/transducers-binary", - "version": "0.6.14", + "version": "0.6.15", "description": "Binary data related transducers & reducers", "module": "./index.js", "main": "./lib/index.js", @@ -54,7 +54,7 @@ "@thi.ng/errors": "^1.3.0", "@thi.ng/hex": "^0.2.5", "@thi.ng/random": "^2.3.6", - "@thi.ng/transducers": "^7.6.8" + "@thi.ng/transducers": "^7.6.9" }, "files": [ "*.js", diff --git a/packages/transducers-fsm/CHANGELOG.md b/packages/transducers-fsm/CHANGELOG.md index b31acdbfa5..be3097db3b 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.58](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-fsm@1.1.57...@thi.ng/transducers-fsm@1.1.58) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/transducers-fsm + + + + + ## [1.1.57](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-fsm@1.1.56...@thi.ng/transducers-fsm@1.1.57) (2021-03-27) **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 ce6734bce0..7e01e05e3c 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.57", + "version": "1.1.58", "description": "Transducer-based Finite State Machine transformer", "module": "./index.js", "main": "./lib/index.js", @@ -50,7 +50,7 @@ }, "dependencies": { "@thi.ng/api": "^7.1.4", - "@thi.ng/transducers": "^7.6.8" + "@thi.ng/transducers": "^7.6.9" }, "files": [ "*.js", diff --git a/packages/transducers-hdom/CHANGELOG.md b/packages/transducers-hdom/CHANGELOG.md index d8dd9d64d1..0c2104357b 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.90](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-hdom@2.0.89...@thi.ng/transducers-hdom@2.0.90) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/transducers-hdom + + + + + ## [2.0.89](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-hdom@2.0.88...@thi.ng/transducers-hdom@2.0.89) (2021-03-27) **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 f77564e2b1..1d97cc900f 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.89", + "version": "2.0.90", "description": "Transducer based UI updater for @thi.ng/hdom", "module": "./index.js", "main": "./lib/index.js", @@ -51,7 +51,7 @@ "dependencies": { "@thi.ng/hdom": "^8.2.24", "@thi.ng/hiccup": "^3.6.14", - "@thi.ng/transducers": "^7.6.8" + "@thi.ng/transducers": "^7.6.9" }, "files": [ "*.js", diff --git a/packages/transducers-patch/CHANGELOG.md b/packages/transducers-patch/CHANGELOG.md index 1fe58045d2..2499e7c1e1 100644 --- a/packages/transducers-patch/CHANGELOG.md +++ b/packages/transducers-patch/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.2.15](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-patch@0.2.14...@thi.ng/transducers-patch@0.2.15) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/transducers-patch + + + + + ## [0.2.14](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-patch@0.2.13...@thi.ng/transducers-patch@0.2.14) (2021-03-27) **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 b1f3f193b9..8803bb9478 100644 --- a/packages/transducers-patch/package.json +++ b/packages/transducers-patch/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/transducers-patch", - "version": "0.2.14", + "version": "0.2.15", "description": "Reducers for patch-based, immutable-by-default array & object editing", "module": "./index.js", "main": "./lib/index.js", @@ -53,7 +53,7 @@ "@thi.ng/checks": "^2.9.5", "@thi.ng/errors": "^1.3.0", "@thi.ng/paths": "^4.2.6", - "@thi.ng/transducers": "^7.6.8" + "@thi.ng/transducers": "^7.6.9" }, "files": [ "*.js", diff --git a/packages/transducers-stats/CHANGELOG.md b/packages/transducers-stats/CHANGELOG.md index c786ba209b..8bb092e657 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.59](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-stats@1.1.58...@thi.ng/transducers-stats@1.1.59) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/transducers-stats + + + + + ## [1.1.58](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-stats@1.1.57...@thi.ng/transducers-stats@1.1.58) (2021-03-27) **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 80554f1682..71f0b0ff0d 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.58", + "version": "1.1.59", "description": "Transducers for statistical / technical analysis", "module": "./index.js", "main": "./lib/index.js", @@ -50,9 +50,9 @@ }, "dependencies": { "@thi.ng/checks": "^2.9.5", - "@thi.ng/dcons": "^2.3.18", + "@thi.ng/dcons": "^2.3.19", "@thi.ng/errors": "^1.3.0", - "@thi.ng/transducers": "^7.6.8" + "@thi.ng/transducers": "^7.6.9" }, "files": [ "*.js", diff --git a/packages/transducers/CHANGELOG.md b/packages/transducers/CHANGELOG.md index ca114d2ad0..c700f6a45d 100644 --- a/packages/transducers/CHANGELOG.md +++ b/packages/transducers/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [7.6.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers@7.6.8...@thi.ng/transducers@7.6.9) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/transducers + + + + + ## [7.6.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers@7.6.7...@thi.ng/transducers@7.6.8) (2021-03-27) **Note:** Version bump only for package @thi.ng/transducers diff --git a/packages/transducers/package.json b/packages/transducers/package.json index a172935673..06ead85069 100644 --- a/packages/transducers/package.json +++ b/packages/transducers/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/transducers", - "version": "7.6.8", + "version": "7.6.9", "description": "Lightweight transducer implementations for ES6 / TypeScript", "module": "./index.js", "main": "./lib/index.js", diff --git a/packages/vector-pools/CHANGELOG.md b/packages/vector-pools/CHANGELOG.md index 7580ebb82d..678c47f8e8 100644 --- a/packages/vector-pools/CHANGELOG.md +++ b/packages/vector-pools/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.0.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/vector-pools@2.0.8...@thi.ng/vector-pools@2.0.9) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/vector-pools + + + + + ## [2.0.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/vector-pools@2.0.7...@thi.ng/vector-pools@2.0.8) (2021-03-27) **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 866bcacbf1..8061018f1f 100644 --- a/packages/vector-pools/package.json +++ b/packages/vector-pools/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/vector-pools", - "version": "2.0.8", + "version": "2.0.9", "description": "Data structures for managing & working with strided, memory mapped vectors", "module": "./index.js", "main": "./lib/index.js", @@ -53,8 +53,8 @@ "@thi.ng/binary": "^2.2.4", "@thi.ng/checks": "^2.9.5", "@thi.ng/malloc": "^5.0.6", - "@thi.ng/transducers": "^7.6.8", - "@thi.ng/vectors": "^5.1.6" + "@thi.ng/transducers": "^7.6.9", + "@thi.ng/vectors": "^5.1.7" }, "files": [ "*.js", diff --git a/packages/vectors/CHANGELOG.md b/packages/vectors/CHANGELOG.md index c014f332e2..dd4e653280 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. +## [5.1.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/vectors@5.1.6...@thi.ng/vectors@5.1.7) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/vectors + + + + + ## [5.1.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/vectors@5.1.5...@thi.ng/vectors@5.1.6) (2021-03-27) **Note:** Version bump only for package @thi.ng/vectors diff --git a/packages/vectors/package.json b/packages/vectors/package.json index c1180e516e..1bc1defd3d 100644 --- a/packages/vectors/package.json +++ b/packages/vectors/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/vectors", - "version": "5.1.6", + "version": "5.1.7", "description": "Optimized 2d/3d/4d and arbitrary length vector operations", "module": "./index.js", "main": "./lib/index.js", @@ -57,7 +57,7 @@ "@thi.ng/math": "^3.3.0", "@thi.ng/memoize": "^2.1.14", "@thi.ng/random": "^2.3.6", - "@thi.ng/transducers": "^7.6.8" + "@thi.ng/transducers": "^7.6.9" }, "files": [ "*.js", diff --git a/packages/viz/CHANGELOG.md b/packages/viz/CHANGELOG.md index 2008aa529a..1b0fcc6cd3 100644 --- a/packages/viz/CHANGELOG.md +++ b/packages/viz/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.2.23](https://github.com/thi-ng/umbrella/compare/@thi.ng/viz@0.2.22...@thi.ng/viz@0.2.23) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/viz + + + + + ## [0.2.22](https://github.com/thi-ng/umbrella/compare/@thi.ng/viz@0.2.21...@thi.ng/viz@0.2.22) (2021-03-27) **Note:** Version bump only for package @thi.ng/viz diff --git a/packages/viz/package.json b/packages/viz/package.json index 69b35946e6..d81fdf0ec4 100644 --- a/packages/viz/package.json +++ b/packages/viz/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/viz", - "version": "0.2.22", + "version": "0.2.23", "description": "Declarative, functional & multi-format data visualization toolkit based around @thi.ng/hiccup", "module": "./index.js", "main": "./lib/index.js", @@ -58,11 +58,11 @@ "dependencies": { "@thi.ng/api": "^7.1.4", "@thi.ng/arrays": "^0.10.9", - "@thi.ng/associative": "^5.1.8", + "@thi.ng/associative": "^5.1.9", "@thi.ng/checks": "^2.9.5", "@thi.ng/math": "^3.3.0", "@thi.ng/strings": "^2.1.0", - "@thi.ng/transducers": "^7.6.8" + "@thi.ng/transducers": "^7.6.9" }, "files": [ "*.js", diff --git a/packages/webgl-msdf/CHANGELOG.md b/packages/webgl-msdf/CHANGELOG.md index ce705a2e4c..2de9c8e938 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.83](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl-msdf@0.1.82...@thi.ng/webgl-msdf@0.1.83) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/webgl-msdf + + + + + ## [0.1.82](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl-msdf@0.1.81...@thi.ng/webgl-msdf@0.1.82) (2021-03-27) **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 6a69f786c6..ae722ca14f 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.82", + "version": "0.1.83", "description": "Multi-channel SDF font rendering & basic text layout for WebGL", "module": "./index.js", "main": "./lib/index.js", @@ -50,11 +50,11 @@ }, "dependencies": { "@thi.ng/api": "^7.1.4", - "@thi.ng/shader-ast": "^0.8.7", - "@thi.ng/transducers": "^7.6.8", - "@thi.ng/vector-pools": "^2.0.8", - "@thi.ng/vectors": "^5.1.6", - "@thi.ng/webgl": "^4.0.9" + "@thi.ng/shader-ast": "^0.8.8", + "@thi.ng/transducers": "^7.6.9", + "@thi.ng/vector-pools": "^2.0.9", + "@thi.ng/vectors": "^5.1.7", + "@thi.ng/webgl": "^4.0.10" }, "files": [ "*.js", diff --git a/packages/webgl-shadertoy/CHANGELOG.md b/packages/webgl-shadertoy/CHANGELOG.md index 63fb14f33b..98d95cecd4 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.70](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl-shadertoy@0.2.69...@thi.ng/webgl-shadertoy@0.2.70) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/webgl-shadertoy + + + + + ## [0.2.69](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl-shadertoy@0.2.68...@thi.ng/webgl-shadertoy@0.2.69) (2021-03-27) **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 07a809e301..4ecc0350ca 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.69", + "version": "0.2.70", "description": "Basic WebGL scaffolding for running interactive fragment shaders via @thi.ng/shader-ast", "module": "./index.js", "main": "./lib/index.js", @@ -50,9 +50,9 @@ }, "dependencies": { "@thi.ng/api": "^7.1.4", - "@thi.ng/shader-ast": "^0.8.7", - "@thi.ng/shader-ast-glsl": "^0.2.29", - "@thi.ng/webgl": "^4.0.9" + "@thi.ng/shader-ast": "^0.8.8", + "@thi.ng/shader-ast-glsl": "^0.2.30", + "@thi.ng/webgl": "^4.0.10" }, "files": [ "*.js", diff --git a/packages/webgl/CHANGELOG.md b/packages/webgl/CHANGELOG.md index fcaaa66649..7c9dfda6ae 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. +## [4.0.10](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl@4.0.9...@thi.ng/webgl@4.0.10) (2021-03-28) + +**Note:** Version bump only for package @thi.ng/webgl + + + + + ## [4.0.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl@4.0.8...@thi.ng/webgl@4.0.9) (2021-03-27) **Note:** Version bump only for package @thi.ng/webgl diff --git a/packages/webgl/package.json b/packages/webgl/package.json index 7e0fe36a71..e9ed0cc295 100644 --- a/packages/webgl/package.json +++ b/packages/webgl/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/webgl", - "version": "4.0.9", + "version": "4.0.10", "description": "WebGL & GLSL abstraction layer", "module": "./index.js", "main": "./lib/index.js", @@ -51,19 +51,19 @@ "dependencies": { "@thi.ng/adapt-dpi": "^1.0.19", "@thi.ng/api": "^7.1.4", - "@thi.ng/associative": "^5.1.8", + "@thi.ng/associative": "^5.1.9", "@thi.ng/checks": "^2.9.5", "@thi.ng/equiv": "^1.0.41", "@thi.ng/errors": "^1.3.0", - "@thi.ng/matrices": "^0.6.52", + "@thi.ng/matrices": "^0.6.53", "@thi.ng/memoize": "^2.1.14", "@thi.ng/pixel": "^0.8.1", - "@thi.ng/shader-ast": "^0.8.7", - "@thi.ng/shader-ast-glsl": "^0.2.29", - "@thi.ng/shader-ast-stdlib": "^0.5.21", - "@thi.ng/transducers": "^7.6.8", - "@thi.ng/vector-pools": "^2.0.8", - "@thi.ng/vectors": "^5.1.6" + "@thi.ng/shader-ast": "^0.8.8", + "@thi.ng/shader-ast-glsl": "^0.2.30", + "@thi.ng/shader-ast-stdlib": "^0.5.22", + "@thi.ng/transducers": "^7.6.9", + "@thi.ng/vector-pools": "^2.0.9", + "@thi.ng/vectors": "^5.1.7" }, "files": [ "*.js",