From a90a712c66015563d602baa6c4832e72e14e7c7e Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Sat, 29 Dec 2018 03:26:02 +0000 Subject: [PATCH 1/2] fix(transducers): interpolate() interval selection, add minPos/maxPos --- packages/transducers/README.md | 18 ++-- packages/transducers/src/iter/interpolate.ts | 92 ++++++++++++++------ 2 files changed, 78 insertions(+), 32 deletions(-) diff --git a/packages/transducers/README.md b/packages/transducers/README.md index d263b458fd..98958bbda3 100644 --- a/packages/transducers/README.md +++ b/packages/transducers/README.md @@ -510,16 +510,20 @@ tx.transduce(tx.take(1000), tx.frequencies(), tx.choices("abcd", [1, 0.5, 0.25, ### Keyframe interpolation -See [`interpolate()`](https://github.com/thi-ng/umbrella/tree/master/packages/transducers/src/iter/interpolate.ts) for details. +See +[`interpolate()`](https://github.com/thi-ng/umbrella/tree/master/packages/transducers/src/iter/interpolate.ts) +docs for details. ```ts -[...tx.interpolate( +[...interpolate( 10, - (a, b) => [a,b], - ([a, b], t) => Math.floor(a + (b-a) * t), - [0.2, 100], - [0.5, 200], - [0.8, 0] + 0, + 100, + (a, b) => [a, b], + ([a, b], t) => Math.floor(a + (b - a) * t), + [20, 100], + [50, 200], + [80, 0] )] // [ 100, 100, 100, 133, 166, 200, 133, 66, 0, 0, 0 ] ``` diff --git a/packages/transducers/src/iter/interpolate.ts b/packages/transducers/src/iter/interpolate.ts index 9fea9618fd..365be0163d 100644 --- a/packages/transducers/src/iter/interpolate.ts +++ b/packages/transducers/src/iter/interpolate.ts @@ -1,41 +1,78 @@ -import { repeat } from "./repeat"; import { normRange } from "./norm-range"; +import { repeat } from "./repeat"; /** * Takes a number of keyframe tuples (`stops`) and yields a sequence of - * `n` equally spaced, interpolated values. Keyframes are defined as - * `[pos, value]`, where `pos` must be a normalized value in [0,1] - * interval. + * `n+1` equally spaced, interpolated values. Keyframes are defined as + * `[pos, value]`. Only values in the closed `minPos` .. `maxPos` + * interval will be computed. * * Interpolation happens in two stages: First the given `init` function - * is called for each new key frame pair to produce a single interval - * type. Then for each result value calls `mix` with the current - * interval and interpolation time value `t` (normalized). The iterator - * yields results of these `mix()` function calls. + * is called to transform/prepare pairs of consecutive keyframes into a + * single interval (user defined). Then to produce each interpolated + * value calls `mix` with the currently active interval and + * interpolation time value `t` (re-normalized and relative to current + * interval). The iterator yields results of these `mix()` function + * calls. + * + * Depending on the overall number of samples requested and the distance + * between keyframes, some keyframes MIGHT be skipped. E.g. if + * requesting 10 samples within [0,1], the interval between two + * successive keyframes at 0.12 and 0.19 would be skipped entirely, + * since samples will only be taken at multiples of `1/n` (0.0, 0.1, + * 0.2... in this example). * - * The given keyframe positions don't need to cover the full [0,1] range - * and interpolated values before the 1st or last keyframe will yield - * the value of the 1st/last keyframe. + * The given keyframe positions can lie outside the `minPos`/`maxPos` + * range and also don't need to cover the range fully. In the latter + * case, interpolated values before the first or after the last keyframe + * will yield the value of the 1st/last keyframe. If only a single + * keyframe is given in total, all `n` yielded samples will be that + * keyframe's transformed value. * * ``` * [...interpolate( * 10, - * (a, b) => [a,b], + * 0, + * 100, + * (a, b) => [a, b], * ([a, b], t) => Math.floor(a + (b - a) * t), - * [0.2, 100], - * [0.5, 200], - * [0.8, 0] + * [20, 100], + * [50, 200], + * [80, 0] * )] * // [ 100, 100, 100, 133, 166, 200, 133, 66, 0, 0, 0 ] * ``` * + * Using easing functions (e.g. from thi.ng/math), non-linear + * interpolation within each keyframe interval can be achieved: + * + * ``` + * import { mix, smoothStep } from "@thi.ng/math" + * + * [...interpolate( + * 10, + * 0, + * 100, + * (a, b) => [a, b], + * ([a, b], t) => Math.floor(mix(a, b, smoothStep(0.1, 0.9, t))), + * [20, 100], + * [50, 200], + * [80, 0] + * )] + * // [ 100, 100, 100, 120, 179, 200, 158, 41, 0, 0, 0 ] + * ``` + * * @param n - * @param init - * @param mix - * @param stops + * @param minPos + * @param maxPos + * @param init interval producer (from 2 keyframe values) + * @param mix interval interpolator + * @param stops keyframe / stops */ export function* interpolate( n: number, + minPos: number, + maxPos: number, init: (a: A, b: A) => B, mix: (interval: B, t: number) => C, ...stops: [number, A][] @@ -45,24 +82,29 @@ export function* interpolate( if (l === 1) { yield* repeat(mix(init(stops[0][1], stops[0][1]), 0), n); } - if (stops[l - 1][0] < 1) { - stops.push([1, stops[l - 1][1]]); + stops.sort((a, b) => a[0] - b[0]); + if (stops[l - 1][0] < maxPos) { + stops.push([maxPos, stops[l - 1][1]]); } - if (stops[0][0] > 0) { - stops.unshift([0, stops[0][1]]); + if (stops[0][0] > minPos) { + stops.unshift([minPos, stops[0][1]]); } + const range = maxPos - minPos; let start = stops[0][0]; let end = stops[1][0]; + let delta = end - start; let interval = init(stops[0][1], stops[1][1]); let i = 1; - l = stops.length - 1; + l = stops.length; for (let t of normRange(n)) { - if (t > end && t < 1) { + t = minPos + range * t; + if (t > end) { while (i < l && t > stops[i][0]) i++; start = stops[i - 1][0]; end = stops[i][0]; + delta = end - start; interval = init(stops[i - 1][1], stops[i][1]); } - yield mix(interval, end !== start ? (t - start) / (end - start) : 0); + yield mix(interval, delta !== 0 ? (t - start) / delta : 0); } } From b2cab4d026a6967739c6175366218a52663b9696 Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Sat, 29 Dec 2018 03:37:07 +0000 Subject: [PATCH 2/2] Publish - @thi.ng/associative@0.6.22 - @thi.ng/cache@0.2.39 - @thi.ng/csp@0.3.78 - @thi.ng/dcons@1.1.22 - @thi.ng/dgraph@0.2.34 - @thi.ng/geom-accel@0.1.10 - @thi.ng/geom@0.2.10 - @thi.ng/hdom-components@2.4.5 - @thi.ng/hiccup-css@0.3.4 - @thi.ng/iges@0.2.28 - @thi.ng/iterators@4.2.3 - @thi.ng/range-coder@0.1.27 - @thi.ng/rstream-csp@0.1.124 - @thi.ng/rstream-dot@0.2.63 - @thi.ng/rstream-gestures@0.6.8 - @thi.ng/rstream-graph@2.1.49 - @thi.ng/rstream-log@1.0.75 - @thi.ng/rstream-query@0.3.62 - @thi.ng/rstream@1.14.8 - @thi.ng/sax@0.5.12 - @thi.ng/transducers-fsm@0.2.35 - @thi.ng/transducers-hdom@1.2.15 - @thi.ng/transducers-stats@0.4.22 - @thi.ng/transducers@2.3.1 - @thi.ng/vectors@1.4.11 --- packages/associative/CHANGELOG.md | 8 ++++++++ packages/associative/package.json | 6 +++--- packages/cache/CHANGELOG.md | 8 ++++++++ packages/cache/package.json | 6 +++--- packages/csp/CHANGELOG.md | 8 ++++++++ packages/csp/package.json | 6 +++--- packages/dcons/CHANGELOG.md | 8 ++++++++ packages/dcons/package.json | 4 ++-- packages/dgraph/CHANGELOG.md | 8 ++++++++ packages/dgraph/package.json | 6 +++--- packages/geom-accel/CHANGELOG.md | 8 ++++++++ packages/geom-accel/package.json | 4 ++-- packages/geom/CHANGELOG.md | 8 ++++++++ packages/geom/package.json | 6 +++--- packages/hdom-components/CHANGELOG.md | 8 ++++++++ packages/hdom-components/package.json | 6 +++--- packages/hiccup-css/CHANGELOG.md | 8 ++++++++ packages/hiccup-css/package.json | 4 ++-- packages/iges/CHANGELOG.md | 8 ++++++++ packages/iges/package.json | 4 ++-- packages/iterators/CHANGELOG.md | 8 ++++++++ packages/iterators/package.json | 4 ++-- packages/range-coder/CHANGELOG.md | 8 ++++++++ packages/range-coder/package.json | 4 ++-- packages/rstream-csp/CHANGELOG.md | 8 ++++++++ packages/rstream-csp/package.json | 6 +++--- packages/rstream-dot/CHANGELOG.md | 8 ++++++++ packages/rstream-dot/package.json | 4 ++-- packages/rstream-gestures/CHANGELOG.md | 8 ++++++++ packages/rstream-gestures/package.json | 6 +++--- packages/rstream-graph/CHANGELOG.md | 8 ++++++++ packages/rstream-graph/package.json | 6 +++--- packages/rstream-log/CHANGELOG.md | 8 ++++++++ packages/rstream-log/package.json | 6 +++--- packages/rstream-query/CHANGELOG.md | 8 ++++++++ packages/rstream-query/package.json | 10 +++++----- packages/rstream/CHANGELOG.md | 8 ++++++++ packages/rstream/package.json | 6 +++--- packages/sax/CHANGELOG.md | 8 ++++++++ packages/sax/package.json | 6 +++--- packages/transducers-fsm/CHANGELOG.md | 8 ++++++++ packages/transducers-fsm/package.json | 4 ++-- packages/transducers-hdom/CHANGELOG.md | 8 ++++++++ packages/transducers-hdom/package.json | 4 ++-- packages/transducers-stats/CHANGELOG.md | 8 ++++++++ packages/transducers-stats/package.json | 6 +++--- packages/transducers/CHANGELOG.md | 11 +++++++++++ packages/transducers/package.json | 2 +- packages/vectors/CHANGELOG.md | 8 ++++++++ packages/vectors/package.json | 4 ++-- 50 files changed, 268 insertions(+), 65 deletions(-) diff --git a/packages/associative/CHANGELOG.md b/packages/associative/CHANGELOG.md index 640a46da22..6c57f4b4e4 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. +## [0.6.22](https://github.com/thi-ng/umbrella/compare/@thi.ng/associative@0.6.21...@thi.ng/associative@0.6.22) (2018-12-29) + +**Note:** Version bump only for package @thi.ng/associative + + + + + ## [0.6.21](https://github.com/thi-ng/umbrella/compare/@thi.ng/associative@0.6.20...@thi.ng/associative@0.6.21) (2018-12-28) **Note:** Version bump only for package @thi.ng/associative diff --git a/packages/associative/package.json b/packages/associative/package.json index 3aacafeb73..e8bf541698 100644 --- a/packages/associative/package.json +++ b/packages/associative/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/associative", - "version": "0.6.21", + "version": "0.6.22", "description": "Alternative Set & Map data type implementations with customizable equality semantics & supporting operations", "main": "./index.js", "typings": "./index.d.ts", @@ -31,10 +31,10 @@ "@thi.ng/api": "^4.2.4", "@thi.ng/checks": "^1.5.14", "@thi.ng/compare": "^0.1.12", - "@thi.ng/dcons": "^1.1.21", + "@thi.ng/dcons": "^1.1.22", "@thi.ng/equiv": "^0.1.15", "@thi.ng/errors": "^0.1.12", - "@thi.ng/transducers": "^2.3.0" + "@thi.ng/transducers": "^2.3.1" }, "keywords": [ "data structures", diff --git a/packages/cache/CHANGELOG.md b/packages/cache/CHANGELOG.md index 2dbc74371c..0fa07e9e81 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. +## [0.2.39](https://github.com/thi-ng/umbrella/compare/@thi.ng/cache@0.2.38...@thi.ng/cache@0.2.39) (2018-12-29) + +**Note:** Version bump only for package @thi.ng/cache + + + + + ## [0.2.38](https://github.com/thi-ng/umbrella/compare/@thi.ng/cache@0.2.37...@thi.ng/cache@0.2.38) (2018-12-28) **Note:** Version bump only for package @thi.ng/cache diff --git a/packages/cache/package.json b/packages/cache/package.json index 53215a5ff0..7fbec58cf1 100644 --- a/packages/cache/package.json +++ b/packages/cache/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/cache", - "version": "0.2.38", + "version": "0.2.39", "description": "In-memory cache implementations with ES6 Map-like API and different eviction strategies", "main": "./index.js", "typings": "./index.d.ts", @@ -29,8 +29,8 @@ }, "dependencies": { "@thi.ng/api": "^4.2.4", - "@thi.ng/dcons": "^1.1.21", - "@thi.ng/transducers": "^2.3.0" + "@thi.ng/dcons": "^1.1.22", + "@thi.ng/transducers": "^2.3.1" }, "keywords": [ "cache", diff --git a/packages/csp/CHANGELOG.md b/packages/csp/CHANGELOG.md index 54441e27a6..af06962780 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. +## [0.3.78](https://github.com/thi-ng/umbrella/compare/@thi.ng/csp@0.3.77...@thi.ng/csp@0.3.78) (2018-12-29) + +**Note:** Version bump only for package @thi.ng/csp + + + + + ## [0.3.77](https://github.com/thi-ng/umbrella/compare/@thi.ng/csp@0.3.76...@thi.ng/csp@0.3.77) (2018-12-28) **Note:** Version bump only for package @thi.ng/csp diff --git a/packages/csp/package.json b/packages/csp/package.json index 2cc9bfa7dc..4958724c17 100644 --- a/packages/csp/package.json +++ b/packages/csp/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/csp", - "version": "0.3.77", + "version": "0.3.78", "description": "ES6 promise based CSP implementation", "main": "./index.js", "typings": "./index.d.ts", @@ -34,9 +34,9 @@ "dependencies": { "@thi.ng/api": "^4.2.4", "@thi.ng/checks": "^1.5.14", - "@thi.ng/dcons": "^1.1.21", + "@thi.ng/dcons": "^1.1.22", "@thi.ng/errors": "^0.1.12", - "@thi.ng/transducers": "^2.3.0" + "@thi.ng/transducers": "^2.3.1" }, "keywords": [ "async", diff --git a/packages/dcons/CHANGELOG.md b/packages/dcons/CHANGELOG.md index 300b0c5077..d0539861bc 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. +## [1.1.22](https://github.com/thi-ng/umbrella/compare/@thi.ng/dcons@1.1.21...@thi.ng/dcons@1.1.22) (2018-12-29) + +**Note:** Version bump only for package @thi.ng/dcons + + + + + ## [1.1.21](https://github.com/thi-ng/umbrella/compare/@thi.ng/dcons@1.1.20...@thi.ng/dcons@1.1.21) (2018-12-28) **Note:** Version bump only for package @thi.ng/dcons diff --git a/packages/dcons/package.json b/packages/dcons/package.json index d10aeb0853..b30763e0fd 100644 --- a/packages/dcons/package.json +++ b/packages/dcons/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/dcons", - "version": "1.1.21", + "version": "1.1.22", "description": "Comprehensive doubly linked list structure w/ iterator support", "main": "./index.js", "typings": "./index.d.ts", @@ -33,7 +33,7 @@ "@thi.ng/compare": "^0.1.12", "@thi.ng/equiv": "^0.1.15", "@thi.ng/errors": "^0.1.12", - "@thi.ng/transducers": "^2.3.0" + "@thi.ng/transducers": "^2.3.1" }, "keywords": [ "datastructure", diff --git a/packages/dgraph/CHANGELOG.md b/packages/dgraph/CHANGELOG.md index 60edb0d58b..590fe7f299 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. +## [0.2.34](https://github.com/thi-ng/umbrella/compare/@thi.ng/dgraph@0.2.33...@thi.ng/dgraph@0.2.34) (2018-12-29) + +**Note:** Version bump only for package @thi.ng/dgraph + + + + + ## [0.2.33](https://github.com/thi-ng/umbrella/compare/@thi.ng/dgraph@0.2.32...@thi.ng/dgraph@0.2.33) (2018-12-28) **Note:** Version bump only for package @thi.ng/dgraph diff --git a/packages/dgraph/package.json b/packages/dgraph/package.json index 3f0dda5e20..20312380c4 100644 --- a/packages/dgraph/package.json +++ b/packages/dgraph/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/dgraph", - "version": "0.2.33", + "version": "0.2.34", "description": "Type-agnostic directed acyclic graph (DAG) & graph operations", "main": "./index.js", "typings": "./index.d.ts", @@ -29,10 +29,10 @@ }, "dependencies": { "@thi.ng/api": "^4.2.4", - "@thi.ng/associative": "^0.6.21", + "@thi.ng/associative": "^0.6.22", "@thi.ng/equiv": "^0.1.15", "@thi.ng/errors": "^0.1.12", - "@thi.ng/transducers": "^2.3.0" + "@thi.ng/transducers": "^2.3.1" }, "keywords": [ "data structure", diff --git a/packages/geom-accel/CHANGELOG.md b/packages/geom-accel/CHANGELOG.md index 4fb6c560e3..b80dbced76 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. +## [0.1.10](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-accel@0.1.9...@thi.ng/geom-accel@0.1.10) (2018-12-29) + +**Note:** Version bump only for package @thi.ng/geom-accel + + + + + ## [0.1.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-accel@0.1.8...@thi.ng/geom-accel@0.1.9) (2018-12-28) **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 b50e0ba2ae..16e3c1ee78 100644 --- a/packages/geom-accel/package.json +++ b/packages/geom-accel/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-accel", - "version": "0.1.9", + "version": "0.1.10", "description": "TODO", "main": "./index.js", "typings": "./index.d.ts", @@ -31,7 +31,7 @@ "@thi.ng/api": "^4.2.4", "@thi.ng/heaps": "^0.3.1", "@thi.ng/math": "^0.2.2", - "@thi.ng/vectors": "^1.4.10" + "@thi.ng/vectors": "^1.4.11" }, "keywords": [ "ES6", diff --git a/packages/geom/CHANGELOG.md b/packages/geom/CHANGELOG.md index 3f29d6d0a2..824ac75480 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. +## [0.2.10](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom@0.2.9...@thi.ng/geom@0.2.10) (2018-12-29) + +**Note:** Version bump only for package @thi.ng/geom + + + + + ## [0.2.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom@0.2.8...@thi.ng/geom@0.2.9) (2018-12-28) **Note:** Version bump only for package @thi.ng/geom diff --git a/packages/geom/package.json b/packages/geom/package.json index a848671f3c..4c53fd1db7 100644 --- a/packages/geom/package.json +++ b/packages/geom/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom", - "version": "0.2.9", + "version": "0.2.10", "description": "2D/3D geometry primitives", "main": "./index.js", "typings": "./index.d.ts", @@ -31,8 +31,8 @@ "@thi.ng/api": "^4.2.4", "@thi.ng/checks": "^1.5.14", "@thi.ng/math": "^0.2.2", - "@thi.ng/transducers": "^2.3.0", - "@thi.ng/vectors": "^1.4.10" + "@thi.ng/transducers": "^2.3.1", + "@thi.ng/vectors": "^1.4.11" }, "keywords": [ "ES6", diff --git a/packages/hdom-components/CHANGELOG.md b/packages/hdom-components/CHANGELOG.md index df075226fd..5f18e6428b 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. +## [2.4.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-components@2.4.4...@thi.ng/hdom-components@2.4.5) (2018-12-29) + +**Note:** Version bump only for package @thi.ng/hdom-components + + + + + ## [2.4.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-components@2.4.3...@thi.ng/hdom-components@2.4.4) (2018-12-28) **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 602ec99f2a..8779b7d5be 100644 --- a/packages/hdom-components/package.json +++ b/packages/hdom-components/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hdom-components", - "version": "2.4.4", + "version": "2.4.5", "description": "Raw, skinnable UI & SVG components for @thi.ng/hdom", "main": "./index.js", "typings": "./index.d.ts", @@ -31,8 +31,8 @@ "@thi.ng/api": "^4.2.4", "@thi.ng/checks": "^1.5.14", "@thi.ng/math": "^0.2.2", - "@thi.ng/transducers": "^2.3.0", - "@thi.ng/transducers-stats": "^0.4.21", + "@thi.ng/transducers": "^2.3.1", + "@thi.ng/transducers-stats": "^0.4.22", "@types/webgl2": "^0.0.4" }, "keywords": [ diff --git a/packages/hiccup-css/CHANGELOG.md b/packages/hiccup-css/CHANGELOG.md index df2e1db191..502302f52d 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. +## [0.3.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-css@0.3.3...@thi.ng/hiccup-css@0.3.4) (2018-12-29) + +**Note:** Version bump only for package @thi.ng/hiccup-css + + + + + ## [0.3.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-css@0.3.2...@thi.ng/hiccup-css@0.3.3) (2018-12-28) **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 daaa2fe7e3..8f6419b7aa 100644 --- a/packages/hiccup-css/package.json +++ b/packages/hiccup-css/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hiccup-css", - "version": "0.3.3", + "version": "0.3.4", "description": "CSS from nested JS data structures", "main": "./index.js", "typings": "./index.d.ts", @@ -31,7 +31,7 @@ "@thi.ng/api": "^4.2.4", "@thi.ng/checks": "^1.5.14", "@thi.ng/errors": "^0.1.12", - "@thi.ng/transducers": "^2.3.0" + "@thi.ng/transducers": "^2.3.1" }, "keywords": [ "clojure", diff --git a/packages/iges/CHANGELOG.md b/packages/iges/CHANGELOG.md index a1b1979bb5..65f43b99ab 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. +## [0.2.28](https://github.com/thi-ng/umbrella/compare/@thi.ng/iges@0.2.27...@thi.ng/iges@0.2.28) (2018-12-29) + +**Note:** Version bump only for package @thi.ng/iges + + + + + ## [0.2.27](https://github.com/thi-ng/umbrella/compare/@thi.ng/iges@0.2.26...@thi.ng/iges@0.2.27) (2018-12-28) **Note:** Version bump only for package @thi.ng/iges diff --git a/packages/iges/package.json b/packages/iges/package.json index fd2a2147ef..9ba97f49b2 100644 --- a/packages/iges/package.json +++ b/packages/iges/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/iges", - "version": "0.2.27", + "version": "0.2.28", "description": "IGES 5.3 serializer for (currently only) polygonal geometry, both open & closed", "main": "./index.js", "typings": "./index.d.ts", @@ -31,7 +31,7 @@ "@thi.ng/api": "^4.2.4", "@thi.ng/defmulti": "^0.5.1", "@thi.ng/strings": "^0.7.1", - "@thi.ng/transducers": "^2.3.0" + "@thi.ng/transducers": "^2.3.1" }, "keywords": [ "CAD", diff --git a/packages/iterators/CHANGELOG.md b/packages/iterators/CHANGELOG.md index 74d791f383..c4acde2a09 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. +## [4.2.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/iterators@4.2.2...@thi.ng/iterators@4.2.3) (2018-12-29) + +**Note:** Version bump only for package @thi.ng/iterators + + + + + ## [4.2.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/iterators@4.2.1...@thi.ng/iterators@4.2.2) (2018-12-28) **Note:** Version bump only for package @thi.ng/iterators diff --git a/packages/iterators/package.json b/packages/iterators/package.json index 432d6f366a..090b3de7cc 100644 --- a/packages/iterators/package.json +++ b/packages/iterators/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/iterators", - "version": "4.2.2", + "version": "4.2.3", "description": "clojure.core inspired, composable ES6 iterators & generators", "main": "./index.js", "typings": "./index.d.ts", @@ -29,7 +29,7 @@ }, "dependencies": { "@thi.ng/api": "^4.2.4", - "@thi.ng/dcons": "^1.1.21", + "@thi.ng/dcons": "^1.1.22", "@thi.ng/errors": "^0.1.12" }, "keywords": [ diff --git a/packages/range-coder/CHANGELOG.md b/packages/range-coder/CHANGELOG.md index 309fca6b83..60ce799c3d 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. +## [0.1.27](https://github.com/thi-ng/umbrella/compare/@thi.ng/range-coder@0.1.26...@thi.ng/range-coder@0.1.27) (2018-12-29) + +**Note:** Version bump only for package @thi.ng/range-coder + + + + + ## [0.1.26](https://github.com/thi-ng/umbrella/compare/@thi.ng/range-coder@0.1.25...@thi.ng/range-coder@0.1.26) (2018-12-28) **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 659c63ede4..5fe0ab2e51 100644 --- a/packages/range-coder/package.json +++ b/packages/range-coder/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/range-coder", - "version": "0.1.26", + "version": "0.1.27", "description": "Binary data range encoder / decoder", "main": "./index.js", "typings": "./index.d.ts", @@ -20,7 +20,7 @@ "test": "rm -rf build && tsc -p test && nyc mocha build/test/*.js" }, "devDependencies": { - "@thi.ng/transducers": "^2.3.0", + "@thi.ng/transducers": "^2.3.1", "@types/mocha": "^5.2.5", "@types/node": "^10.12.15", "mocha": "^5.2.0", diff --git a/packages/rstream-csp/CHANGELOG.md b/packages/rstream-csp/CHANGELOG.md index 961c845c52..f9c0741f9c 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. +## [0.1.124](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-csp@0.1.123...@thi.ng/rstream-csp@0.1.124) (2018-12-29) + +**Note:** Version bump only for package @thi.ng/rstream-csp + + + + + ## [0.1.123](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-csp@0.1.122...@thi.ng/rstream-csp@0.1.123) (2018-12-28) **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 edd783ecd8..5c223a578a 100644 --- a/packages/rstream-csp/package.json +++ b/packages/rstream-csp/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-csp", - "version": "0.1.123", + "version": "0.1.124", "description": "@thi.ng/csp bridge module for @thi.ng/rstream", "main": "./index.js", "typings": "./index.d.ts", @@ -28,8 +28,8 @@ "typescript": "^3.2.2" }, "dependencies": { - "@thi.ng/csp": "^0.3.77", - "@thi.ng/rstream": "^1.14.7" + "@thi.ng/csp": "^0.3.78", + "@thi.ng/rstream": "^1.14.8" }, "keywords": [ "bridge", diff --git a/packages/rstream-dot/CHANGELOG.md b/packages/rstream-dot/CHANGELOG.md index dd5862937d..1ce3035a71 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. +## [0.2.63](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-dot@0.2.62...@thi.ng/rstream-dot@0.2.63) (2018-12-29) + +**Note:** Version bump only for package @thi.ng/rstream-dot + + + + + ## [0.2.62](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-dot@0.2.61...@thi.ng/rstream-dot@0.2.62) (2018-12-28) **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 842560f4d5..3a2dfe289d 100644 --- a/packages/rstream-dot/package.json +++ b/packages/rstream-dot/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-dot", - "version": "0.2.62", + "version": "0.2.63", "description": "Graphviz DOT conversion of @thi.ng/rstream dataflow graph topologies", "main": "./index.js", "typings": "./index.d.ts", @@ -28,7 +28,7 @@ "typescript": "^3.2.2" }, "dependencies": { - "@thi.ng/rstream": "^1.14.7" + "@thi.ng/rstream": "^1.14.8" }, "keywords": [ "conversion", diff --git a/packages/rstream-gestures/CHANGELOG.md b/packages/rstream-gestures/CHANGELOG.md index 06d540cd00..6d0cb63c21 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. +## [0.6.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-gestures@0.6.7...@thi.ng/rstream-gestures@0.6.8) (2018-12-29) + +**Note:** Version bump only for package @thi.ng/rstream-gestures + + + + + ## [0.6.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-gestures@0.6.6...@thi.ng/rstream-gestures@0.6.7) (2018-12-28) **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 ac709eb8c2..fa4fa9e48c 100644 --- a/packages/rstream-gestures/package.json +++ b/packages/rstream-gestures/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-gestures", - "version": "0.6.7", + "version": "0.6.8", "description": "Unified mouse, mouse wheel & single-touch event stream abstraction", "main": "./index.js", "typings": "./index.d.ts", @@ -29,8 +29,8 @@ }, "dependencies": { "@thi.ng/api": "^4.2.4", - "@thi.ng/rstream": "^1.14.7", - "@thi.ng/transducers": "^2.3.0" + "@thi.ng/rstream": "^1.14.8", + "@thi.ng/transducers": "^2.3.1" }, "keywords": [ "dataflow", diff --git a/packages/rstream-graph/CHANGELOG.md b/packages/rstream-graph/CHANGELOG.md index d9a5567609..ad55879ddd 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. +## [2.1.49](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-graph@2.1.48...@thi.ng/rstream-graph@2.1.49) (2018-12-29) + +**Note:** Version bump only for package @thi.ng/rstream-graph + + + + + ## [2.1.48](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-graph@2.1.47...@thi.ng/rstream-graph@2.1.48) (2018-12-28) **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 c6cbff7ccf..0b3b8101aa 100644 --- a/packages/rstream-graph/package.json +++ b/packages/rstream-graph/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-graph", - "version": "2.1.48", + "version": "2.1.49", "description": "Declarative dataflow graph construction for @thi.ng/rstream", "main": "./index.js", "typings": "./index.d.ts", @@ -33,8 +33,8 @@ "@thi.ng/errors": "^0.1.12", "@thi.ng/paths": "^1.6.6", "@thi.ng/resolve-map": "^3.0.16", - "@thi.ng/rstream": "^1.14.7", - "@thi.ng/transducers": "^2.3.0" + "@thi.ng/rstream": "^1.14.8", + "@thi.ng/transducers": "^2.3.1" }, "keywords": [ "compute", diff --git a/packages/rstream-log/CHANGELOG.md b/packages/rstream-log/CHANGELOG.md index fb11cd2b9a..0750d8c20c 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. +## [1.0.75](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log@1.0.74...@thi.ng/rstream-log@1.0.75) (2018-12-29) + +**Note:** Version bump only for package @thi.ng/rstream-log + + + + + ## [1.0.74](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log@1.0.73...@thi.ng/rstream-log@1.0.74) (2018-12-28) **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 024fb7d09a..6553afd62c 100644 --- a/packages/rstream-log/package.json +++ b/packages/rstream-log/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-log", - "version": "1.0.74", + "version": "1.0.75", "description": "Structured, multilevel & hierarchical loggers based on @thi.ng/rstream", "main": "./index.js", "typings": "./index.d.ts", @@ -31,8 +31,8 @@ "@thi.ng/api": "^4.2.4", "@thi.ng/checks": "^1.5.14", "@thi.ng/errors": "^0.1.12", - "@thi.ng/rstream": "^1.14.7", - "@thi.ng/transducers": "^2.3.0" + "@thi.ng/rstream": "^1.14.8", + "@thi.ng/transducers": "^2.3.1" }, "keywords": [ "ES6", diff --git a/packages/rstream-query/CHANGELOG.md b/packages/rstream-query/CHANGELOG.md index 9b5642fa79..658ba7755b 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. +## [0.3.62](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-query@0.3.61...@thi.ng/rstream-query@0.3.62) (2018-12-29) + +**Note:** Version bump only for package @thi.ng/rstream-query + + + + + ## [0.3.61](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-query@0.3.60...@thi.ng/rstream-query@0.3.61) (2018-12-28) **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 2c2f12bf2c..a5d28c6699 100644 --- a/packages/rstream-query/package.json +++ b/packages/rstream-query/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-query", - "version": "0.3.61", + "version": "0.3.62", "description": "@thi.ng/rstream based triple store & reactive query engine", "main": "./index.js", "typings": "./index.d.ts", @@ -29,13 +29,13 @@ }, "dependencies": { "@thi.ng/api": "^4.2.4", - "@thi.ng/associative": "^0.6.21", + "@thi.ng/associative": "^0.6.22", "@thi.ng/checks": "^1.5.14", "@thi.ng/equiv": "^0.1.15", "@thi.ng/errors": "^0.1.12", - "@thi.ng/rstream": "^1.14.7", - "@thi.ng/rstream-dot": "^0.2.62", - "@thi.ng/transducers": "^2.3.0" + "@thi.ng/rstream": "^1.14.8", + "@thi.ng/rstream-dot": "^0.2.63", + "@thi.ng/transducers": "^2.3.1" }, "keywords": [ "dataflow", diff --git a/packages/rstream/CHANGELOG.md b/packages/rstream/CHANGELOG.md index 9e7803eacb..ef05b6ef52 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. +## [1.14.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream@1.14.7...@thi.ng/rstream@1.14.8) (2018-12-29) + +**Note:** Version bump only for package @thi.ng/rstream + + + + + ## [1.14.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream@1.14.6...@thi.ng/rstream@1.14.7) (2018-12-28) **Note:** Version bump only for package @thi.ng/rstream diff --git a/packages/rstream/package.json b/packages/rstream/package.json index 7611c0c90b..e1c2ac89d0 100644 --- a/packages/rstream/package.json +++ b/packages/rstream/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream", - "version": "1.14.7", + "version": "1.14.8", "description": "Reactive multi-tap streams, dataflow & transformation pipeline constructs", "main": "./index.js", "typings": "./index.d.ts", @@ -29,12 +29,12 @@ }, "dependencies": { "@thi.ng/api": "^4.2.4", - "@thi.ng/associative": "^0.6.21", + "@thi.ng/associative": "^0.6.22", "@thi.ng/atom": "^1.5.8", "@thi.ng/checks": "^1.5.14", "@thi.ng/errors": "^0.1.12", "@thi.ng/paths": "^1.6.6", - "@thi.ng/transducers": "^2.3.0" + "@thi.ng/transducers": "^2.3.1" }, "keywords": [ "datastructure", diff --git a/packages/sax/CHANGELOG.md b/packages/sax/CHANGELOG.md index 7f2ec478a8..f9d1a1851c 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. +## [0.5.12](https://github.com/thi-ng/umbrella/compare/@thi.ng/sax@0.5.11...@thi.ng/sax@0.5.12) (2018-12-29) + +**Note:** Version bump only for package @thi.ng/sax + + + + + ## [0.5.11](https://github.com/thi-ng/umbrella/compare/@thi.ng/sax@0.5.10...@thi.ng/sax@0.5.11) (2018-12-28) **Note:** Version bump only for package @thi.ng/sax diff --git a/packages/sax/package.json b/packages/sax/package.json index 4d80f8fb7c..f5f6f1a72c 100644 --- a/packages/sax/package.json +++ b/packages/sax/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/sax", - "version": "0.5.11", + "version": "0.5.12", "description": "Transducer-based, SAX-like, non-validating, speedy & tiny XML parser", "main": "./index.js", "typings": "./index.d.ts", @@ -29,8 +29,8 @@ }, "dependencies": { "@thi.ng/api": "^4.2.4", - "@thi.ng/transducers": "^2.3.0", - "@thi.ng/transducers-fsm": "^0.2.34" + "@thi.ng/transducers": "^2.3.1", + "@thi.ng/transducers-fsm": "^0.2.35" }, "keywords": [ "ES6", diff --git a/packages/transducers-fsm/CHANGELOG.md b/packages/transducers-fsm/CHANGELOG.md index 309f439fd9..d991e5131a 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. +## [0.2.35](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-fsm@0.2.34...@thi.ng/transducers-fsm@0.2.35) (2018-12-29) + +**Note:** Version bump only for package @thi.ng/transducers-fsm + + + + + ## [0.2.34](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-fsm@0.2.33...@thi.ng/transducers-fsm@0.2.34) (2018-12-28) **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 02d85d38d0..e06074e432 100644 --- a/packages/transducers-fsm/package.json +++ b/packages/transducers-fsm/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/transducers-fsm", - "version": "0.2.34", + "version": "0.2.35", "description": "Transducer-based Finite State Machine transformer", "main": "./index.js", "typings": "./index.d.ts", @@ -29,7 +29,7 @@ }, "dependencies": { "@thi.ng/api": "^4.2.4", - "@thi.ng/transducers": "^2.3.0" + "@thi.ng/transducers": "^2.3.1" }, "keywords": [ "ES6", diff --git a/packages/transducers-hdom/CHANGELOG.md b/packages/transducers-hdom/CHANGELOG.md index 8fedff19e1..2e7a15c71a 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. +## [1.2.15](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-hdom@1.2.14...@thi.ng/transducers-hdom@1.2.15) (2018-12-29) + +**Note:** Version bump only for package @thi.ng/transducers-hdom + + + + + ## [1.2.14](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-hdom@1.2.13...@thi.ng/transducers-hdom@1.2.14) (2018-12-28) **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 3a4f0f3c56..a46ad5fa10 100644 --- a/packages/transducers-hdom/package.json +++ b/packages/transducers-hdom/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/transducers-hdom", - "version": "1.2.14", + "version": "1.2.15", "description": "Transducer based UI updater for @thi.ng/hdom", "main": "./index.js", "typings": "./index.d.ts", @@ -30,7 +30,7 @@ "dependencies": { "@thi.ng/checks": "^1.5.14", "@thi.ng/hdom": "^6.1.0", - "@thi.ng/transducers": "^2.3.0" + "@thi.ng/transducers": "^2.3.1" }, "keywords": [ "diff", diff --git a/packages/transducers-stats/CHANGELOG.md b/packages/transducers-stats/CHANGELOG.md index 2f9846ffdd..e7cbbb133e 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. +## [0.4.22](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-stats@0.4.21...@thi.ng/transducers-stats@0.4.22) (2018-12-29) + +**Note:** Version bump only for package @thi.ng/transducers-stats + + + + + ## [0.4.21](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-stats@0.4.20...@thi.ng/transducers-stats@0.4.21) (2018-12-28) **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 3b02cc4788..bf466c7a87 100644 --- a/packages/transducers-stats/package.json +++ b/packages/transducers-stats/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/transducers-stats", - "version": "0.4.21", + "version": "0.4.22", "description": "Transducers for statistical / technical analysis", "main": "./index.js", "typings": "./index.d.ts", @@ -28,9 +28,9 @@ "typescript": "^3.2.2" }, "dependencies": { - "@thi.ng/dcons": "^1.1.21", + "@thi.ng/dcons": "^1.1.22", "@thi.ng/errors": "^0.1.12", - "@thi.ng/transducers": "^2.3.0" + "@thi.ng/transducers": "^2.3.1" }, "keywords": [ "ES6", diff --git a/packages/transducers/CHANGELOG.md b/packages/transducers/CHANGELOG.md index 26963ab547..7526a2e285 100644 --- a/packages/transducers/CHANGELOG.md +++ b/packages/transducers/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.3.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers@2.3.0...@thi.ng/transducers@2.3.1) (2018-12-29) + + +### Bug Fixes + +* **transducers:** interpolate() interval selection, add minPos/maxPos ([a90a712](https://github.com/thi-ng/umbrella/commit/a90a712)) + + + + + # [2.3.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers@2.2.8...@thi.ng/transducers@2.3.0) (2018-12-28) diff --git a/packages/transducers/package.json b/packages/transducers/package.json index 283e86740a..5471672d29 100644 --- a/packages/transducers/package.json +++ b/packages/transducers/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/transducers", - "version": "2.3.0", + "version": "2.3.1", "description": "Lightweight transducer implementations for ES6 / TypeScript", "main": "./index.js", "typings": "./index.d.ts", diff --git a/packages/vectors/CHANGELOG.md b/packages/vectors/CHANGELOG.md index 295f47ac23..714ab4a495 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. +## [1.4.11](https://github.com/thi-ng/umbrella/compare/@thi.ng/vectors@1.4.10...@thi.ng/vectors@1.4.11) (2018-12-29) + +**Note:** Version bump only for package @thi.ng/vectors + + + + + ## [1.4.10](https://github.com/thi-ng/umbrella/compare/@thi.ng/vectors@1.4.9...@thi.ng/vectors@1.4.10) (2018-12-28) **Note:** Version bump only for package @thi.ng/vectors diff --git a/packages/vectors/package.json b/packages/vectors/package.json index d2f9544af4..fa8b0815e5 100644 --- a/packages/vectors/package.json +++ b/packages/vectors/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/vectors", - "version": "1.4.10", + "version": "1.4.11", "description": "Vector algebra for fixed & variable sizes, memory mapped, flexible layouts", "main": "./index.js", "typings": "./index.d.ts", @@ -33,7 +33,7 @@ "@thi.ng/checks": "^1.5.14", "@thi.ng/errors": "^0.1.12", "@thi.ng/math": "^0.2.2", - "@thi.ng/transducers": "^2.3.0" + "@thi.ng/transducers": "^2.3.1" }, "keywords": [ "ES6",