From 4b94a1b9fa49abec98aed3da73c29a2e085e7f12 Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Mon, 14 May 2018 22:22:07 +0100 Subject: [PATCH 1/3] docs(api): update doc strings --- packages/api/src/api.ts | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/packages/api/src/api.ts b/packages/api/src/api.ts index 867ac23ddc..bd88b13385 100644 --- a/packages/api/src/api.ts +++ b/packages/api/src/api.ts @@ -95,8 +95,11 @@ export interface IBuffered { */ export interface ICompare { /** - * Compares this value with given value `x`. - * Must follow same contract as `Comparator`. + * Compares this value with given value `x`. MUST follow same + * contract as `Comparator`. MUST return 0 if the type also + * implements `IEquiv` and `equiv` returns true for same `x`. + * + * Also see `IHash`. * * @param x */ @@ -159,6 +162,8 @@ export interface IEmpty { /** * Interface to provide enabled/disabled functionality. Also see * `@IEnable` decorator mixin + * + * @param T type for enable/disable option arg */ export interface IEnable { isEnabled(): boolean; @@ -185,6 +190,9 @@ export interface IEquiv { equiv(o: any): boolean; } +/** + * @param T value type + */ export interface IEqualsDelta { /** * Returns `true` if this value equals `o` with optional allowance From 4dd97abda515c6dab45acda04dcbcc83dfc972c4 Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Mon, 14 May 2018 22:22:32 +0100 Subject: [PATCH 2/3] docs: update readmes (compare / equiv) --- packages/compare/README.md | 3 ++- packages/equiv/README.md | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 35 insertions(+), 1 deletion(-) diff --git a/packages/compare/README.md b/packages/compare/README.md index 7e9cb85b20..65d92270bd 100644 --- a/packages/compare/README.md +++ b/packages/compare/README.md @@ -27,9 +27,10 @@ None ## Usage examples ```typescript +import { ICompare } from "@thi.ng/api"; import { compare } from "@thi.ng/compare"; -class Foo { +class Foo implements ICompare { x: number; diff --git a/packages/equiv/README.md b/packages/equiv/README.md index f6fb73c171..bca552c97f 100644 --- a/packages/equiv/README.md +++ b/packages/equiv/README.md @@ -40,6 +40,39 @@ equiv({a: {b: [1, 2]}}, {a: {b: [1, 2]}}); // true ``` +### Implement IEquiv interface + +This is useful & required for custom types to take part in `equiv` +checks, by default only plain objects & array are traversed deeply. + +Furthemore by implementing this interface we can better control which +internal values / criteria are required to establish equivalence. In +this example we exclude the `meta` property and only check for same type +& `children` equality. + +```ts +import { IEquiv } from "@thi.ng/api"; +import { equiv } from "@thi.ng/equiv"; + +class Node implements IEquiv { + + meta: any; + children: any[]; + + constructor(children: any[], meta?) { + this.children = children; + this.meta = meta; + } + + equiv(o: any) { + return o instanceof Node && equiv(this.children, o.children); + } +} + +equiv(new Node([1,2,3], "foo"), new Node([1,2,3], "bar")); +// true +``` + ## Authors - Karsten Schmidt From 5595cc2a7321dee7183c78fe3be5dfabd3b8425a Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Mon, 14 May 2018 22:30:22 +0100 Subject: [PATCH 3/3] Publish - @thi.ng/api@4.0.3 - @thi.ng/associative@0.5.6 - @thi.ng/atom@1.3.13 - @thi.ng/cache@0.2.11 - @thi.ng/compare@0.1.3 - @thi.ng/csp@0.3.42 - @thi.ng/dcons@1.0.3 - @thi.ng/defmulti@0.3.4 - @thi.ng/dgraph@0.2.6 - @thi.ng/diff@1.0.17 - @thi.ng/dot@0.1.6 - @thi.ng/equiv@0.1.3 - @thi.ng/hdom-components@2.1.6 - @thi.ng/hdom@3.0.22 - @thi.ng/heaps@0.2.12 - @thi.ng/hiccup-css@0.1.24 - @thi.ng/hiccup-svg@1.0.2 - @thi.ng/hiccup@2.0.2 - @thi.ng/interceptors@1.8.2 - @thi.ng/iterators@4.1.16 - @thi.ng/pointfree-lang@0.2.13 - @thi.ng/pointfree@0.8.2 - @thi.ng/router@0.1.16 - @thi.ng/rstream-csp@0.1.73 - @thi.ng/rstream-dot@0.2.12 - @thi.ng/rstream-gestures@0.3.9 - @thi.ng/rstream-graph@1.0.16 - @thi.ng/rstream-log@1.0.24 - @thi.ng/rstream-query@0.3.11 - @thi.ng/rstream@1.6.14 - @thi.ng/transducers@1.10.2 --- packages/api/CHANGELOG.md | 8 ++++++++ packages/api/package.json | 2 +- packages/associative/CHANGELOG.md | 8 ++++++++ packages/associative/package.json | 12 ++++++------ packages/atom/CHANGELOG.md | 8 ++++++++ packages/atom/package.json | 6 +++--- packages/cache/CHANGELOG.md | 8 ++++++++ packages/cache/package.json | 8 ++++---- packages/compare/CHANGELOG.md | 8 ++++++++ packages/compare/package.json | 2 +- packages/csp/CHANGELOG.md | 8 ++++++++ packages/csp/package.json | 8 ++++---- packages/dcons/CHANGELOG.md | 8 ++++++++ packages/dcons/package.json | 8 ++++---- packages/defmulti/CHANGELOG.md | 8 ++++++++ packages/defmulti/package.json | 4 ++-- packages/dgraph/CHANGELOG.md | 8 ++++++++ packages/dgraph/package.json | 10 +++++----- packages/diff/CHANGELOG.md | 8 ++++++++ packages/diff/package.json | 6 +++--- packages/dot/CHANGELOG.md | 8 ++++++++ packages/dot/package.json | 4 ++-- packages/equiv/CHANGELOG.md | 8 ++++++++ packages/equiv/package.json | 2 +- packages/hdom-components/CHANGELOG.md | 8 ++++++++ packages/hdom-components/package.json | 6 +++--- packages/hdom/CHANGELOG.md | 8 ++++++++ packages/hdom/package.json | 14 +++++++------- packages/heaps/CHANGELOG.md | 8 ++++++++ packages/heaps/package.json | 6 +++--- packages/hiccup-css/CHANGELOG.md | 8 ++++++++ packages/hiccup-css/package.json | 6 +++--- packages/hiccup-svg/CHANGELOG.md | 8 ++++++++ packages/hiccup-svg/package.json | 4 ++-- packages/hiccup/CHANGELOG.md | 8 ++++++++ packages/hiccup/package.json | 4 ++-- packages/interceptors/CHANGELOG.md | 8 ++++++++ packages/interceptors/package.json | 6 +++--- packages/iterators/CHANGELOG.md | 8 ++++++++ packages/iterators/package.json | 6 +++--- packages/pointfree-lang/CHANGELOG.md | 8 ++++++++ packages/pointfree-lang/package.json | 6 +++--- packages/pointfree/CHANGELOG.md | 8 ++++++++ packages/pointfree/package.json | 6 +++--- packages/router/CHANGELOG.md | 8 ++++++++ packages/router/package.json | 6 +++--- packages/rstream-csp/CHANGELOG.md | 8 ++++++++ packages/rstream-csp/package.json | 6 +++--- packages/rstream-dot/CHANGELOG.md | 8 ++++++++ packages/rstream-dot/package.json | 4 ++-- packages/rstream-gestures/CHANGELOG.md | 8 ++++++++ packages/rstream-gestures/package.json | 8 ++++---- packages/rstream-graph/CHANGELOG.md | 8 ++++++++ packages/rstream-graph/package.json | 8 ++++---- packages/rstream-log/CHANGELOG.md | 8 ++++++++ packages/rstream-log/package.json | 8 ++++---- packages/rstream-query/CHANGELOG.md | 8 ++++++++ packages/rstream-query/package.json | 14 +++++++------- packages/rstream/CHANGELOG.md | 8 ++++++++ packages/rstream/package.json | 10 +++++----- packages/transducers/CHANGELOG.md | 8 ++++++++ packages/transducers/package.json | 8 ++++---- 62 files changed, 352 insertions(+), 104 deletions(-) diff --git a/packages/api/CHANGELOG.md b/packages/api/CHANGELOG.md index d27c806af6..f33bb19a5d 100644 --- a/packages/api/CHANGELOG.md +++ b/packages/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. + +## [4.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/api@4.0.2...@thi.ng/api@4.0.3) (2018-05-14) + + + + +**Note:** Version bump only for package @thi.ng/api + ## [4.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/api@4.0.1...@thi.ng/api@4.0.2) (2018-05-14) diff --git a/packages/api/package.json b/packages/api/package.json index ee4f6a8515..5186e740be 100644 --- a/packages/api/package.json +++ b/packages/api/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/api", - "version": "4.0.2", + "version": "4.0.3", "description": "Common, generic types & interfaces for thi.ng projects", "main": "./index.js", "typings": "./index.d.ts", diff --git a/packages/associative/CHANGELOG.md b/packages/associative/CHANGELOG.md index d6dc487c6e..7a3fed4370 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.5.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/associative@0.5.5...@thi.ng/associative@0.5.6) (2018-05-14) + + + + +**Note:** Version bump only for package @thi.ng/associative + ## [0.5.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/associative@0.5.4...@thi.ng/associative@0.5.5) (2018-05-14) diff --git a/packages/associative/package.json b/packages/associative/package.json index 9d9cdd31b8..1ed52db5c8 100644 --- a/packages/associative/package.json +++ b/packages/associative/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/associative", - "version": "0.5.5", + "version": "0.5.6", "description": "Alternative Set & Map data type implementations with customizable equality semantics & supporting operations", "main": "./index.js", "typings": "./index.d.ts", @@ -24,13 +24,13 @@ "typescript": "^2.8.3" }, "dependencies": { - "@thi.ng/api": "^4.0.2", + "@thi.ng/api": "^4.0.3", "@thi.ng/checks": "^1.5.3", - "@thi.ng/compare": "^0.1.2", - "@thi.ng/dcons": "^1.0.2", - "@thi.ng/equiv": "^0.1.2", + "@thi.ng/compare": "^0.1.3", + "@thi.ng/dcons": "^1.0.3", + "@thi.ng/equiv": "^0.1.3", "@thi.ng/errors": "^0.1.3", - "@thi.ng/iterators": "^4.1.15" + "@thi.ng/iterators": "^4.1.16" }, "keywords": [ "data structures", diff --git a/packages/atom/CHANGELOG.md b/packages/atom/CHANGELOG.md index f8c37fcc5b..cd67c9b219 100644 --- a/packages/atom/CHANGELOG.md +++ b/packages/atom/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.3.13](https://github.com/thi-ng/umbrella/compare/@thi.ng/atom@1.3.12...@thi.ng/atom@1.3.13) (2018-05-14) + + + + +**Note:** Version bump only for package @thi.ng/atom + ## [1.3.12](https://github.com/thi-ng/umbrella/compare/@thi.ng/atom@1.3.11...@thi.ng/atom@1.3.12) (2018-05-14) diff --git a/packages/atom/package.json b/packages/atom/package.json index 459fb4ded1..2679b9a02b 100644 --- a/packages/atom/package.json +++ b/packages/atom/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/atom", - "version": "1.3.12", + "version": "1.3.13", "description": "Mutable wrapper for immutable values", "main": "./index.js", "typings": "./index.d.ts", @@ -24,9 +24,9 @@ "typescript": "^2.8.3" }, "dependencies": { - "@thi.ng/api": "^4.0.2", + "@thi.ng/api": "^4.0.3", "@thi.ng/checks": "^1.5.3", - "@thi.ng/equiv": "^0.1.2", + "@thi.ng/equiv": "^0.1.3", "@thi.ng/errors": "^0.1.3", "@thi.ng/paths": "^1.3.8" }, diff --git a/packages/cache/CHANGELOG.md b/packages/cache/CHANGELOG.md index f3efb231b0..89e6f45edc 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.11](https://github.com/thi-ng/umbrella/compare/@thi.ng/cache@0.2.10...@thi.ng/cache@0.2.11) (2018-05-14) + + + + +**Note:** Version bump only for package @thi.ng/cache + ## [0.2.10](https://github.com/thi-ng/umbrella/compare/@thi.ng/cache@0.2.9...@thi.ng/cache@0.2.10) (2018-05-14) diff --git a/packages/cache/package.json b/packages/cache/package.json index ce9d5f9637..b3250bf07f 100644 --- a/packages/cache/package.json +++ b/packages/cache/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/cache", - "version": "0.2.10", + "version": "0.2.11", "description": "In-memory cache implementations with ES6 Map-like API and different eviction strategies", "main": "./index.js", "typings": "./index.d.ts", @@ -24,9 +24,9 @@ "typescript": "^2.8.3" }, "dependencies": { - "@thi.ng/api": "^4.0.2", - "@thi.ng/dcons": "^1.0.2", - "@thi.ng/iterators": "^4.1.15" + "@thi.ng/api": "^4.0.3", + "@thi.ng/dcons": "^1.0.3", + "@thi.ng/iterators": "^4.1.16" }, "keywords": [ "cache", diff --git a/packages/compare/CHANGELOG.md b/packages/compare/CHANGELOG.md index 87c420bd7d..acc3755417 100644 --- a/packages/compare/CHANGELOG.md +++ b/packages/compare/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.1.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/compare@0.1.2...@thi.ng/compare@0.1.3) (2018-05-14) + + + + +**Note:** Version bump only for package @thi.ng/compare + ## [0.1.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/compare@0.1.1...@thi.ng/compare@0.1.2) (2018-05-14) diff --git a/packages/compare/package.json b/packages/compare/package.json index 263039a556..b9fd942a3f 100644 --- a/packages/compare/package.json +++ b/packages/compare/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/compare", - "version": "0.1.2", + "version": "0.1.3", "description": "Comparator with optional delegation for types implementing @thi.ng/api/ICompare interface", "main": "./index.js", "typings": "./index.d.ts", diff --git a/packages/csp/CHANGELOG.md b/packages/csp/CHANGELOG.md index 94994f36b8..4d664e2ded 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.42](https://github.com/thi-ng/umbrella/compare/@thi.ng/csp@0.3.41...@thi.ng/csp@0.3.42) (2018-05-14) + + + + +**Note:** Version bump only for package @thi.ng/csp + ## [0.3.41](https://github.com/thi-ng/umbrella/compare/@thi.ng/csp@0.3.40...@thi.ng/csp@0.3.41) (2018-05-14) diff --git a/packages/csp/package.json b/packages/csp/package.json index 9feb830e1b..878ee0fca2 100644 --- a/packages/csp/package.json +++ b/packages/csp/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/csp", - "version": "0.3.41", + "version": "0.3.42", "description": "ES6 promise based CSP implementation", "main": "./index.js", "typings": "./index.d.ts", @@ -28,11 +28,11 @@ "typescript": "^2.8.3" }, "dependencies": { - "@thi.ng/api": "^4.0.2", + "@thi.ng/api": "^4.0.3", "@thi.ng/checks": "^1.5.3", - "@thi.ng/dcons": "^1.0.2", + "@thi.ng/dcons": "^1.0.3", "@thi.ng/errors": "^0.1.3", - "@thi.ng/transducers": "^1.10.1" + "@thi.ng/transducers": "^1.10.2" }, "keywords": [ "async", diff --git a/packages/dcons/CHANGELOG.md b/packages/dcons/CHANGELOG.md index e76bd0a6d0..517f642396 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.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/dcons@1.0.2...@thi.ng/dcons@1.0.3) (2018-05-14) + + + + +**Note:** Version bump only for package @thi.ng/dcons + ## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/dcons@1.0.1...@thi.ng/dcons@1.0.2) (2018-05-14) diff --git a/packages/dcons/package.json b/packages/dcons/package.json index 1e06757fc2..d740781b09 100644 --- a/packages/dcons/package.json +++ b/packages/dcons/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/dcons", - "version": "1.0.2", + "version": "1.0.3", "description": "Comprehensive doubly linked list structure w/ iterator support", "main": "./index.js", "typings": "./index.d.ts", @@ -24,10 +24,10 @@ "typescript": "^2.8.3" }, "dependencies": { - "@thi.ng/api": "^4.0.2", + "@thi.ng/api": "^4.0.3", "@thi.ng/checks": "^1.5.3", - "@thi.ng/compare": "^0.1.2", - "@thi.ng/equiv": "^0.1.2", + "@thi.ng/compare": "^0.1.3", + "@thi.ng/equiv": "^0.1.3", "@thi.ng/errors": "^0.1.3" }, "keywords": [ diff --git a/packages/defmulti/CHANGELOG.md b/packages/defmulti/CHANGELOG.md index 1637ff6cb4..a44f24f00d 100644 --- a/packages/defmulti/CHANGELOG.md +++ b/packages/defmulti/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.3.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/defmulti@0.3.3...@thi.ng/defmulti@0.3.4) (2018-05-14) + + + + +**Note:** Version bump only for package @thi.ng/defmulti + ## [0.3.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/defmulti@0.3.2...@thi.ng/defmulti@0.3.3) (2018-05-14) diff --git a/packages/defmulti/package.json b/packages/defmulti/package.json index 89b10132d5..ad66f89e3d 100644 --- a/packages/defmulti/package.json +++ b/packages/defmulti/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/defmulti", - "version": "0.3.3", + "version": "0.3.4", "description": "Dynamically extensible multiple dispatch via user supplied dispatch function.", "main": "./index.js", "typings": "./index.d.ts", @@ -24,7 +24,7 @@ "typescript": "^2.8.3" }, "dependencies": { - "@thi.ng/api": "^4.0.2", + "@thi.ng/api": "^4.0.3", "@thi.ng/errors": "^0.1.3" }, "keywords": [ diff --git a/packages/dgraph/CHANGELOG.md b/packages/dgraph/CHANGELOG.md index 8dc1487548..971fa0eaeb 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.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/dgraph@0.2.5...@thi.ng/dgraph@0.2.6) (2018-05-14) + + + + +**Note:** Version bump only for package @thi.ng/dgraph + ## [0.2.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/dgraph@0.2.4...@thi.ng/dgraph@0.2.5) (2018-05-14) diff --git a/packages/dgraph/package.json b/packages/dgraph/package.json index 1804649da9..6ba2cd68eb 100644 --- a/packages/dgraph/package.json +++ b/packages/dgraph/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/dgraph", - "version": "0.2.5", + "version": "0.2.6", "description": "Type-agnostic directed acyclic graph (DAG) & graph operations", "main": "./index.js", "typings": "./index.d.ts", @@ -24,11 +24,11 @@ "typescript": "^2.8.3" }, "dependencies": { - "@thi.ng/api": "^4.0.2", - "@thi.ng/associative": "^0.5.5", - "@thi.ng/equiv": "^0.1.2", + "@thi.ng/api": "^4.0.3", + "@thi.ng/associative": "^0.5.6", + "@thi.ng/equiv": "^0.1.3", "@thi.ng/errors": "^0.1.3", - "@thi.ng/iterators": "^4.1.15" + "@thi.ng/iterators": "^4.1.16" }, "keywords": [ "data structure", diff --git a/packages/diff/CHANGELOG.md b/packages/diff/CHANGELOG.md index 8b9f85cca2..6c0580b709 100644 --- a/packages/diff/CHANGELOG.md +++ b/packages/diff/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.0.17](https://github.com/thi-ng/umbrella/compare/@thi.ng/diff@1.0.16...@thi.ng/diff@1.0.17) (2018-05-14) + + + + +**Note:** Version bump only for package @thi.ng/diff + ## [1.0.16](https://github.com/thi-ng/umbrella/compare/@thi.ng/diff@1.0.15...@thi.ng/diff@1.0.16) (2018-05-14) diff --git a/packages/diff/package.json b/packages/diff/package.json index 9d8f8ae5bf..fb513daf82 100644 --- a/packages/diff/package.json +++ b/packages/diff/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/diff", - "version": "1.0.16", + "version": "1.0.17", "description": "Array & object Diff", "main": "./index.js", "typings": "./index.d.ts", @@ -22,8 +22,8 @@ "typescript": "^2.8.3" }, "dependencies": { - "@thi.ng/api": "^4.0.2", - "@thi.ng/equiv": "^0.1.2" + "@thi.ng/api": "^4.0.3", + "@thi.ng/equiv": "^0.1.3" }, "keywords": [ "array", diff --git a/packages/dot/CHANGELOG.md b/packages/dot/CHANGELOG.md index b644f2561e..d566e3cd36 100644 --- a/packages/dot/CHANGELOG.md +++ b/packages/dot/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.1.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/dot@0.1.5...@thi.ng/dot@0.1.6) (2018-05-14) + + + + +**Note:** Version bump only for package @thi.ng/dot + ## [0.1.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/dot@0.1.4...@thi.ng/dot@0.1.5) (2018-05-14) diff --git a/packages/dot/package.json b/packages/dot/package.json index e610c60e9d..32e69e370c 100644 --- a/packages/dot/package.json +++ b/packages/dot/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/dot", - "version": "0.1.5", + "version": "0.1.6", "description": "TODO", "main": "./index.js", "typings": "./index.d.ts", @@ -24,7 +24,7 @@ "typescript": "^2.8.3" }, "dependencies": { - "@thi.ng/api": "^4.0.2", + "@thi.ng/api": "^4.0.3", "@thi.ng/checks": "^1.5.3" }, "keywords": [ diff --git a/packages/equiv/CHANGELOG.md b/packages/equiv/CHANGELOG.md index 3e9ee8a75b..346bef1e22 100644 --- a/packages/equiv/CHANGELOG.md +++ b/packages/equiv/CHANGELOG.md @@ -3,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.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/equiv@0.1.2...@thi.ng/equiv@0.1.3) (2018-05-14) + + + + +**Note:** Version bump only for package @thi.ng/equiv + ## [0.1.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/equiv@0.1.1...@thi.ng/equiv@0.1.2) (2018-05-14) diff --git a/packages/equiv/package.json b/packages/equiv/package.json index 740650491b..b469119a2c 100644 --- a/packages/equiv/package.json +++ b/packages/equiv/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/equiv", - "version": "0.1.2", + "version": "0.1.3", "description": "Extensible deep equivalence checking for any data types", "main": "./index.js", "typings": "./index.d.ts", diff --git a/packages/hdom-components/CHANGELOG.md b/packages/hdom-components/CHANGELOG.md index fbf49ece49..a1c1638971 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.1.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-components@2.1.5...@thi.ng/hdom-components@2.1.6) (2018-05-14) + + + + +**Note:** Version bump only for package @thi.ng/hdom-components + ## [2.1.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-components@2.1.4...@thi.ng/hdom-components@2.1.5) (2018-05-14) diff --git a/packages/hdom-components/package.json b/packages/hdom-components/package.json index 53061833c4..f66aad1188 100644 --- a/packages/hdom-components/package.json +++ b/packages/hdom-components/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hdom-components", - "version": "2.1.5", + "version": "2.1.6", "description": "Raw, skinnable UI & SVG components for @thi.ng/hdom", "main": "./index.js", "typings": "./index.d.ts", @@ -24,9 +24,9 @@ "typescript": "^2.8.3" }, "dependencies": { - "@thi.ng/api": "^4.0.2", + "@thi.ng/api": "^4.0.3", "@thi.ng/checks": "^1.5.3", - "@thi.ng/iterators": "^4.1.15", + "@thi.ng/iterators": "^4.1.16", "@types/webgl2": "^0.0.3" }, "keywords": [ diff --git a/packages/hdom/CHANGELOG.md b/packages/hdom/CHANGELOG.md index 1d478a5b76..a8036eff0d 100644 --- a/packages/hdom/CHANGELOG.md +++ b/packages/hdom/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [3.0.22](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom@3.0.21...@thi.ng/hdom@3.0.22) (2018-05-14) + + + + +**Note:** Version bump only for package @thi.ng/hdom + ## [3.0.21](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom@3.0.20...@thi.ng/hdom@3.0.21) (2018-05-14) diff --git a/packages/hdom/package.json b/packages/hdom/package.json index be900090ae..2a27756cac 100644 --- a/packages/hdom/package.json +++ b/packages/hdom/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hdom", - "version": "3.0.21", + "version": "3.0.22", "description": "Lightweight vanilla ES6 UI component & virtual DOM system", "main": "./index.js", "typings": "./index.d.ts", @@ -16,7 +16,7 @@ "test": "rm -rf build && tsc -p test && nyc mocha build/test/*.js" }, "devDependencies": { - "@thi.ng/atom": "^1.3.12", + "@thi.ng/atom": "^1.3.13", "@types/mocha": "^5.2.0", "@types/node": "^10.0.6", "mocha": "^5.1.1", @@ -25,12 +25,12 @@ "typescript": "^2.8.3" }, "dependencies": { - "@thi.ng/api": "^4.0.2", + "@thi.ng/api": "^4.0.3", "@thi.ng/checks": "^1.5.3", - "@thi.ng/diff": "^1.0.16", - "@thi.ng/equiv": "^0.1.2", - "@thi.ng/hiccup": "^2.0.1", - "@thi.ng/iterators": "^4.1.15" + "@thi.ng/diff": "^1.0.17", + "@thi.ng/equiv": "^0.1.3", + "@thi.ng/hiccup": "^2.0.2", + "@thi.ng/iterators": "^4.1.16" }, "keywords": [ "browser", diff --git a/packages/heaps/CHANGELOG.md b/packages/heaps/CHANGELOG.md index 314f0a074b..5c3602bc3f 100644 --- a/packages/heaps/CHANGELOG.md +++ b/packages/heaps/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.2.12](https://github.com/thi-ng/umbrella/compare/@thi.ng/heaps@0.2.11...@thi.ng/heaps@0.2.12) (2018-05-14) + + + + +**Note:** Version bump only for package @thi.ng/heaps + ## [0.2.11](https://github.com/thi-ng/umbrella/compare/@thi.ng/heaps@0.2.10...@thi.ng/heaps@0.2.11) (2018-05-14) diff --git a/packages/heaps/package.json b/packages/heaps/package.json index 23e5927cf7..9249794969 100644 --- a/packages/heaps/package.json +++ b/packages/heaps/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/heaps", - "version": "0.2.11", + "version": "0.2.12", "description": "Generic binary heap & d-ary heap implementations with customizable ordering", "main": "./index.js", "typings": "./index.d.ts", @@ -24,8 +24,8 @@ "typescript": "^2.8.3" }, "dependencies": { - "@thi.ng/api": "^4.0.2", - "@thi.ng/compare": "^0.1.2" + "@thi.ng/api": "^4.0.3", + "@thi.ng/compare": "^0.1.3" }, "keywords": [ "data structure", diff --git a/packages/hiccup-css/CHANGELOG.md b/packages/hiccup-css/CHANGELOG.md index 0d43a8e53f..92d5fb0432 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.1.24](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-css@0.1.23...@thi.ng/hiccup-css@0.1.24) (2018-05-14) + + + + +**Note:** Version bump only for package @thi.ng/hiccup-css + ## [0.1.23](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-css@0.1.22...@thi.ng/hiccup-css@0.1.23) (2018-05-14) diff --git a/packages/hiccup-css/package.json b/packages/hiccup-css/package.json index e68dda6c63..bcb138ba9f 100644 --- a/packages/hiccup-css/package.json +++ b/packages/hiccup-css/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hiccup-css", - "version": "0.1.23", + "version": "0.1.24", "description": "CSS from nested JS data structures", "main": "./index.js", "typings": "./index.d.ts", @@ -24,10 +24,10 @@ "typescript": "^2.8.3" }, "dependencies": { - "@thi.ng/api": "^4.0.2", + "@thi.ng/api": "^4.0.3", "@thi.ng/checks": "^1.5.3", "@thi.ng/errors": "^0.1.3", - "@thi.ng/transducers": "^1.10.1" + "@thi.ng/transducers": "^1.10.2" }, "keywords": [ "clojure", diff --git a/packages/hiccup-svg/CHANGELOG.md b/packages/hiccup-svg/CHANGELOG.md index 2d2181ace8..a9f84ebe79 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. + +## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-svg@1.0.1...@thi.ng/hiccup-svg@1.0.2) (2018-05-14) + + + + +**Note:** Version bump only for package @thi.ng/hiccup-svg + ## [1.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-svg@1.0.0...@thi.ng/hiccup-svg@1.0.1) (2018-05-14) diff --git a/packages/hiccup-svg/package.json b/packages/hiccup-svg/package.json index 0d63f020fd..987f21cbf1 100644 --- a/packages/hiccup-svg/package.json +++ b/packages/hiccup-svg/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hiccup-svg", - "version": "1.0.1", + "version": "1.0.2", "description": "SVG element functions for @thi.ng/hiccup & @thi.ng/hdom", "main": "./index.js", "typings": "./index.d.ts", @@ -24,7 +24,7 @@ "typescript": "^2.8.3" }, "dependencies": { - "@thi.ng/hiccup": "^2.0.1" + "@thi.ng/hiccup": "^2.0.2" }, "keywords": [ "components", diff --git a/packages/hiccup/CHANGELOG.md b/packages/hiccup/CHANGELOG.md index 369414746c..dad111fd9a 100644 --- a/packages/hiccup/CHANGELOG.md +++ b/packages/hiccup/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [2.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup@2.0.1...@thi.ng/hiccup@2.0.2) (2018-05-14) + + + + +**Note:** Version bump only for package @thi.ng/hiccup + ## [2.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup@2.0.0...@thi.ng/hiccup@2.0.1) (2018-05-14) diff --git a/packages/hiccup/package.json b/packages/hiccup/package.json index 85fc6e3ff0..a602d97172 100644 --- a/packages/hiccup/package.json +++ b/packages/hiccup/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hiccup", - "version": "2.0.1", + "version": "2.0.2", "description": "HTML/SVG/XML serialization of nested data structures, iterables & closures", "main": "./index.js", "typings": "./index.d.ts", @@ -16,7 +16,7 @@ "test": "rm -rf build && tsc -p test && nyc mocha build/test/*.js" }, "devDependencies": { - "@thi.ng/atom": "^1.3.12", + "@thi.ng/atom": "^1.3.13", "@types/mocha": "^5.2.0", "@types/node": "^10.0.6", "mocha": "^5.1.1", diff --git a/packages/interceptors/CHANGELOG.md b/packages/interceptors/CHANGELOG.md index 8779f00b28..d4506b04dd 100644 --- a/packages/interceptors/CHANGELOG.md +++ b/packages/interceptors/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.8.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/interceptors@1.8.1...@thi.ng/interceptors@1.8.2) (2018-05-14) + + + + +**Note:** Version bump only for package @thi.ng/interceptors + ## [1.8.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/interceptors@1.8.0...@thi.ng/interceptors@1.8.1) (2018-05-14) diff --git a/packages/interceptors/package.json b/packages/interceptors/package.json index 8a6a4bc54c..170f6f7876 100644 --- a/packages/interceptors/package.json +++ b/packages/interceptors/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/interceptors", - "version": "1.8.1", + "version": "1.8.2", "description": "Interceptor based event bus, side effect & immutable state handling", "main": "./index.js", "typings": "./index.d.ts", @@ -24,8 +24,8 @@ "typescript": "^2.8.3" }, "dependencies": { - "@thi.ng/api": "^4.0.2", - "@thi.ng/atom": "^1.3.12", + "@thi.ng/api": "^4.0.3", + "@thi.ng/atom": "^1.3.13", "@thi.ng/checks": "^1.5.3", "@thi.ng/errors": "^0.1.3", "@thi.ng/paths": "^1.3.8" diff --git a/packages/iterators/CHANGELOG.md b/packages/iterators/CHANGELOG.md index 55f883e730..e52f8c08ec 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.1.16](https://github.com/thi-ng/umbrella/compare/@thi.ng/iterators@4.1.15...@thi.ng/iterators@4.1.16) (2018-05-14) + + + + +**Note:** Version bump only for package @thi.ng/iterators + ## [4.1.15](https://github.com/thi-ng/umbrella/compare/@thi.ng/iterators@4.1.14...@thi.ng/iterators@4.1.15) (2018-05-14) diff --git a/packages/iterators/package.json b/packages/iterators/package.json index ff82da5366..102904375a 100644 --- a/packages/iterators/package.json +++ b/packages/iterators/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/iterators", - "version": "4.1.15", + "version": "4.1.16", "description": "clojure.core inspired, composable ES6 iterators & generators", "main": "./index.js", "typings": "./index.d.ts", @@ -24,8 +24,8 @@ "typescript": "^2.8.3" }, "dependencies": { - "@thi.ng/api": "^4.0.2", - "@thi.ng/dcons": "^1.0.2", + "@thi.ng/api": "^4.0.3", + "@thi.ng/dcons": "^1.0.3", "@thi.ng/errors": "^0.1.3" }, "keywords": [ diff --git a/packages/pointfree-lang/CHANGELOG.md b/packages/pointfree-lang/CHANGELOG.md index 84a4259479..5bfd77f3df 100644 --- a/packages/pointfree-lang/CHANGELOG.md +++ b/packages/pointfree-lang/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.2.13](https://github.com/thi-ng/umbrella/compare/@thi.ng/pointfree-lang@0.2.12...@thi.ng/pointfree-lang@0.2.13) (2018-05-14) + + + + +**Note:** Version bump only for package @thi.ng/pointfree-lang + ## [0.2.12](https://github.com/thi-ng/umbrella/compare/@thi.ng/pointfree-lang@0.2.11...@thi.ng/pointfree-lang@0.2.12) (2018-05-14) diff --git a/packages/pointfree-lang/package.json b/packages/pointfree-lang/package.json index e406e72db0..e9732d671f 100644 --- a/packages/pointfree-lang/package.json +++ b/packages/pointfree-lang/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/pointfree-lang", - "version": "0.2.12", + "version": "0.2.13", "description": "Forth style syntax layer/compiler for the @thi.ng/pointfree DSL", "main": "./index.js", "typings": "./index.d.ts", @@ -26,9 +26,9 @@ "typescript": "^2.8.3" }, "dependencies": { - "@thi.ng/api": "^4.0.2", + "@thi.ng/api": "^4.0.3", "@thi.ng/errors": "^0.1.3", - "@thi.ng/pointfree": "^0.8.1" + "@thi.ng/pointfree": "^0.8.2" }, "keywords": [ "concatenative", diff --git a/packages/pointfree/CHANGELOG.md b/packages/pointfree/CHANGELOG.md index d4132a0f3a..29caa98b1b 100644 --- a/packages/pointfree/CHANGELOG.md +++ b/packages/pointfree/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.8.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/pointfree@0.8.1...@thi.ng/pointfree@0.8.2) (2018-05-14) + + + + +**Note:** Version bump only for package @thi.ng/pointfree + ## [0.8.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/pointfree@0.8.0...@thi.ng/pointfree@0.8.1) (2018-05-14) diff --git a/packages/pointfree/package.json b/packages/pointfree/package.json index a89e1af012..036e3143dc 100644 --- a/packages/pointfree/package.json +++ b/packages/pointfree/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/pointfree", - "version": "0.8.1", + "version": "0.8.2", "description": "Pointfree functional composition / Forth style stack execution engine", "main": "./index.js", "typings": "./index.d.ts", @@ -24,9 +24,9 @@ "typescript": "^2.8.3" }, "dependencies": { - "@thi.ng/api": "^4.0.2", + "@thi.ng/api": "^4.0.3", "@thi.ng/checks": "^1.5.3", - "@thi.ng/equiv": "^0.1.2", + "@thi.ng/equiv": "^0.1.3", "@thi.ng/errors": "^0.1.3" }, "keywords": [ diff --git a/packages/router/CHANGELOG.md b/packages/router/CHANGELOG.md index 7326be2e2c..d1d124722e 100644 --- a/packages/router/CHANGELOG.md +++ b/packages/router/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.1.16](https://github.com/thi-ng/umbrella/compare/@thi.ng/router@0.1.15...@thi.ng/router@0.1.16) (2018-05-14) + + + + +**Note:** Version bump only for package @thi.ng/router + ## [0.1.15](https://github.com/thi-ng/umbrella/compare/@thi.ng/router@0.1.14...@thi.ng/router@0.1.15) (2018-05-14) diff --git a/packages/router/package.json b/packages/router/package.json index c5b9983bab..24c930fcae 100644 --- a/packages/router/package.json +++ b/packages/router/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/router", - "version": "0.1.15", + "version": "0.1.16", "description": "Generic router for browser & non-browser based applications", "main": "./index.js", "typings": "./index.d.ts", @@ -23,9 +23,9 @@ "typescript": "^2.8.3" }, "dependencies": { - "@thi.ng/api": "^4.0.2", + "@thi.ng/api": "^4.0.3", "@thi.ng/checks": "^1.5.3", - "@thi.ng/equiv": "^0.1.2", + "@thi.ng/equiv": "^0.1.3", "@thi.ng/errors": "^0.1.3" }, "keywords": [ diff --git a/packages/rstream-csp/CHANGELOG.md b/packages/rstream-csp/CHANGELOG.md index e0c0209d16..da01631b48 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.73](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-csp@0.1.72...@thi.ng/rstream-csp@0.1.73) (2018-05-14) + + + + +**Note:** Version bump only for package @thi.ng/rstream-csp + ## [0.1.72](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-csp@0.1.71...@thi.ng/rstream-csp@0.1.72) (2018-05-14) diff --git a/packages/rstream-csp/package.json b/packages/rstream-csp/package.json index f5cb46be6a..21d55dc306 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.72", + "version": "0.1.73", "description": "@thi.ng/csp bridge module for @thi.ng/rstream", "main": "./index.js", "typings": "./index.d.ts", @@ -24,8 +24,8 @@ "typescript": "^2.8.3" }, "dependencies": { - "@thi.ng/csp": "^0.3.41", - "@thi.ng/rstream": "^1.6.13" + "@thi.ng/csp": "^0.3.42", + "@thi.ng/rstream": "^1.6.14" }, "keywords": [ "bridge", diff --git a/packages/rstream-dot/CHANGELOG.md b/packages/rstream-dot/CHANGELOG.md index 96909a4b6b..212baf6c50 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.12](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-dot@0.2.11...@thi.ng/rstream-dot@0.2.12) (2018-05-14) + + + + +**Note:** Version bump only for package @thi.ng/rstream-dot + ## [0.2.11](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-dot@0.2.10...@thi.ng/rstream-dot@0.2.11) (2018-05-14) diff --git a/packages/rstream-dot/package.json b/packages/rstream-dot/package.json index 8252842c2c..feb7b303de 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.11", + "version": "0.2.12", "description": "Graphviz DOT conversion of @thi.ng/rstream dataflow graph topologies", "main": "./index.js", "typings": "./index.d.ts", @@ -24,7 +24,7 @@ "typescript": "^2.8.3" }, "dependencies": { - "@thi.ng/rstream": "^1.6.13" + "@thi.ng/rstream": "^1.6.14" }, "keywords": [ "conversion", diff --git a/packages/rstream-gestures/CHANGELOG.md b/packages/rstream-gestures/CHANGELOG.md index f4399bee44..746a950694 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.3.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-gestures@0.3.8...@thi.ng/rstream-gestures@0.3.9) (2018-05-14) + + + + +**Note:** Version bump only for package @thi.ng/rstream-gestures + ## [0.3.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-gestures@0.3.7...@thi.ng/rstream-gestures@0.3.8) (2018-05-14) diff --git a/packages/rstream-gestures/package.json b/packages/rstream-gestures/package.json index d3be430e9e..f068d0b351 100644 --- a/packages/rstream-gestures/package.json +++ b/packages/rstream-gestures/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-gestures", - "version": "0.3.8", + "version": "0.3.9", "description": "Unified mouse, mouse wheel & single-touch event stream abstraction", "main": "./index.js", "typings": "./index.d.ts", @@ -24,9 +24,9 @@ "typescript": "^2.8.3" }, "dependencies": { - "@thi.ng/api": "^4.0.2", - "@thi.ng/rstream": "^1.6.13", - "@thi.ng/transducers": "^1.10.1" + "@thi.ng/api": "^4.0.3", + "@thi.ng/rstream": "^1.6.14", + "@thi.ng/transducers": "^1.10.2" }, "keywords": [ "dataflow", diff --git a/packages/rstream-graph/CHANGELOG.md b/packages/rstream-graph/CHANGELOG.md index 806be879b4..7ec67374d3 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. + +## [1.0.16](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-graph@1.0.15...@thi.ng/rstream-graph@1.0.16) (2018-05-14) + + + + +**Note:** Version bump only for package @thi.ng/rstream-graph + ## [1.0.15](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-graph@1.0.14...@thi.ng/rstream-graph@1.0.15) (2018-05-14) diff --git a/packages/rstream-graph/package.json b/packages/rstream-graph/package.json index dff0c1b1a4..e6ed88e0dc 100644 --- a/packages/rstream-graph/package.json +++ b/packages/rstream-graph/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-graph", - "version": "1.0.15", + "version": "1.0.16", "description": "Declarative dataflow graph construction for @thi.ng/rstream", "main": "./index.js", "typings": "./index.d.ts", @@ -24,13 +24,13 @@ "typescript": "^2.8.3" }, "dependencies": { - "@thi.ng/api": "^4.0.2", + "@thi.ng/api": "^4.0.3", "@thi.ng/checks": "^1.5.3", "@thi.ng/errors": "^0.1.3", "@thi.ng/paths": "^1.3.8", "@thi.ng/resolve-map": "^2.0.5", - "@thi.ng/rstream": "^1.6.13", - "@thi.ng/transducers": "^1.10.1" + "@thi.ng/rstream": "^1.6.14", + "@thi.ng/transducers": "^1.10.2" }, "keywords": [ "compute", diff --git a/packages/rstream-log/CHANGELOG.md b/packages/rstream-log/CHANGELOG.md index 24db589f7f..16a8ddd3d9 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.24](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log@1.0.23...@thi.ng/rstream-log@1.0.24) (2018-05-14) + + + + +**Note:** Version bump only for package @thi.ng/rstream-log + ## [1.0.23](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log@1.0.22...@thi.ng/rstream-log@1.0.23) (2018-05-14) diff --git a/packages/rstream-log/package.json b/packages/rstream-log/package.json index e11ab56255..0481ac9604 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.23", + "version": "1.0.24", "description": "Structured, multilevel & hierarchical loggers based on @thi.ng/rstream", "main": "./index.js", "typings": "./index.d.ts", @@ -24,11 +24,11 @@ "typescript": "^2.8.3" }, "dependencies": { - "@thi.ng/api": "^4.0.2", + "@thi.ng/api": "^4.0.3", "@thi.ng/checks": "^1.5.3", "@thi.ng/errors": "^0.1.3", - "@thi.ng/rstream": "^1.6.13", - "@thi.ng/transducers": "^1.10.1" + "@thi.ng/rstream": "^1.6.14", + "@thi.ng/transducers": "^1.10.2" }, "keywords": [ "ES6", diff --git a/packages/rstream-query/CHANGELOG.md b/packages/rstream-query/CHANGELOG.md index 61958170cc..90640713c5 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.11](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-query@0.3.10...@thi.ng/rstream-query@0.3.11) (2018-05-14) + + + + +**Note:** Version bump only for package @thi.ng/rstream-query + ## [0.3.10](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-query@0.3.9...@thi.ng/rstream-query@0.3.10) (2018-05-14) diff --git a/packages/rstream-query/package.json b/packages/rstream-query/package.json index 82f80c6098..9b269e555c 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.10", + "version": "0.3.11", "description": "@thi.ng/rstream based triple store & reactive query engine", "main": "./index.js", "typings": "./index.d.ts", @@ -24,14 +24,14 @@ "typescript": "^2.8.3" }, "dependencies": { - "@thi.ng/api": "^4.0.2", - "@thi.ng/associative": "^0.5.5", + "@thi.ng/api": "^4.0.3", + "@thi.ng/associative": "^0.5.6", "@thi.ng/checks": "^1.5.3", - "@thi.ng/equiv": "^0.1.2", + "@thi.ng/equiv": "^0.1.3", "@thi.ng/errors": "^0.1.3", - "@thi.ng/rstream": "^1.6.13", - "@thi.ng/rstream-dot": "^0.2.11", - "@thi.ng/transducers": "^1.10.1" + "@thi.ng/rstream": "^1.6.14", + "@thi.ng/rstream-dot": "^0.2.12", + "@thi.ng/transducers": "^1.10.2" }, "keywords": [ "dataflow", diff --git a/packages/rstream/CHANGELOG.md b/packages/rstream/CHANGELOG.md index 8c48692f5b..ad23245f1b 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.6.14](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream@1.6.13...@thi.ng/rstream@1.6.14) (2018-05-14) + + + + +**Note:** Version bump only for package @thi.ng/rstream + ## [1.6.13](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream@1.6.12...@thi.ng/rstream@1.6.13) (2018-05-14) diff --git a/packages/rstream/package.json b/packages/rstream/package.json index 009032e384..4e94b8371a 100644 --- a/packages/rstream/package.json +++ b/packages/rstream/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream", - "version": "1.6.13", + "version": "1.6.14", "description": "Reactive multi-tap streams, dataflow & transformation pipeline constructs", "main": "./index.js", "typings": "./index.d.ts", @@ -24,13 +24,13 @@ "typescript": "^2.8.3" }, "dependencies": { - "@thi.ng/api": "^4.0.2", - "@thi.ng/associative": "^0.5.5", - "@thi.ng/atom": "^1.3.12", + "@thi.ng/api": "^4.0.3", + "@thi.ng/associative": "^0.5.6", + "@thi.ng/atom": "^1.3.13", "@thi.ng/checks": "^1.5.3", "@thi.ng/errors": "^0.1.3", "@thi.ng/paths": "^1.3.8", - "@thi.ng/transducers": "^1.10.1" + "@thi.ng/transducers": "^1.10.2" }, "keywords": [ "datastructure", diff --git a/packages/transducers/CHANGELOG.md b/packages/transducers/CHANGELOG.md index 8dc5e2f327..61cdcea306 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. + +## [1.10.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers@1.10.1...@thi.ng/transducers@1.10.2) (2018-05-14) + + + + +**Note:** Version bump only for package @thi.ng/transducers + ## [1.10.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers@1.10.0...@thi.ng/transducers@1.10.1) (2018-05-14) diff --git a/packages/transducers/package.json b/packages/transducers/package.json index 937aba7bda..5d9f080121 100644 --- a/packages/transducers/package.json +++ b/packages/transducers/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/transducers", - "version": "1.10.1", + "version": "1.10.2", "description": "Lightweight transducer implementations for ES6 / TypeScript", "main": "./index.js", "typings": "./index.d.ts", @@ -24,10 +24,10 @@ "typescript": "^2.8.3" }, "dependencies": { - "@thi.ng/api": "^4.0.2", + "@thi.ng/api": "^4.0.3", "@thi.ng/checks": "^1.5.3", - "@thi.ng/compare": "^0.1.2", - "@thi.ng/equiv": "^0.1.2", + "@thi.ng/compare": "^0.1.3", + "@thi.ng/equiv": "^0.1.3", "@thi.ng/errors": "^0.1.3" }, "keywords": [