From c0a8926b535abc83f51e2d50daa9e56a414ce470 Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Mon, 24 Sep 2018 23:51:12 +0100 Subject: [PATCH 1/5] fix(examples): rename `prepare` script alias, add commits.json (#46) - rename `prepare` => `prep` to avoid autoexec during `yarn install` - add getCommits() to retrieve commits for caching and write to `commits.json` - commits.json stub file --- examples/commit-table-ssr/commits.json | 1 + examples/commit-table-ssr/package.json | 4 ++-- examples/commit-table-ssr/src/server/index.ts | 12 +++++++++--- 3 files changed, 12 insertions(+), 5 deletions(-) create mode 100644 examples/commit-table-ssr/commits.json diff --git a/examples/commit-table-ssr/commits.json b/examples/commit-table-ssr/commits.json new file mode 100644 index 0000000000..0637a088a0 --- /dev/null +++ b/examples/commit-table-ssr/commits.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/examples/commit-table-ssr/package.json b/examples/commit-table-ssr/package.json index eb6e093ae1..7de550e95a 100644 --- a/examples/commit-table-ssr/package.json +++ b/examples/commit-table-ssr/package.json @@ -6,9 +6,9 @@ "license": "Apache-2.0", "scripts": { "clean": "rm -rf .cache build out", - "prepare": "yarn clean && mkdir -p out && cp commits.json out", + "prep": "yarn clean && mkdir -p out && cp commits.json out", "build-static": "tsc && node build/server/static.js", - "build": "yarn prepare && parcel build index.html -d out --no-source-maps --no-cache --detailed-report --public-url ./", + "build": "yarn prep && parcel build index.html -d out --no-source-maps --no-cache --detailed-report --public-url ./", "start": "tsc && node build/server/index.js" }, "devDependencies": { diff --git a/examples/commit-table-ssr/src/server/index.ts b/examples/commit-table-ssr/src/server/index.ts index 5ac57b254e..0292329c79 100644 --- a/examples/commit-table-ssr/src/server/index.ts +++ b/examples/commit-table-ssr/src/server/index.ts @@ -1,6 +1,7 @@ import { TLRUCache } from "@thi.ng/cache"; import * as express from "express"; import * as Bundler from "parcel-bundler"; +import * as fs from "fs"; import { Commit } from "../common/api"; import { ctx } from "../common/config"; @@ -13,13 +14,18 @@ import { repoCommits } from "./git"; const rawCache = new TLRUCache(null, { ttl: 60 * 60 * 1000 }); const htmlCache = new TLRUCache(null, { ttl: 60 * 60 * 1000 }); -// console.log("parcel:", Object.keys(parcel)); const bundler = new Bundler("index.html", { outDir: "./out", outFile: "index.html", publicUrl: "/out", }); +const getCommits = async () => { + const commits = [...repoCommits(ctx.repo.path)]; + fs.writeFileSync("commits.json", JSON.stringify(commits)); + return commits; +}; + const app = express(); // route for browser version @@ -34,7 +40,7 @@ app.get("/commits", (_, res) => { // (re)create if missing... rawCache.getSet( ctx.repo.path, - async () => [...repoCommits(ctx.repo.path)] + getCommits ).then( (commits) => res.type("json").send(commits) ) @@ -50,7 +56,7 @@ app.get("/ssr", (_, res) => { async () => buildRepoTableHTML( await rawCache.getSet( ctx.repo.path, - async () => [...repoCommits(ctx.repo.path)] + getCommits ) ) ).then((doc) => res.send(doc)) From 888ea747c3c4a8f5d0f75a631cb4595482eb5d2a Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Mon, 24 Sep 2018 23:52:16 +0100 Subject: [PATCH 2/5] fix(examples): rename `prepare` script aliases - avoid autoexec during `yarn install` --- examples/async-effect/package.json | 6 +++--- examples/router-basics/package.json | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/examples/async-effect/package.json b/examples/async-effect/package.json index 0098aeece5..31052e68e8 100644 --- a/examples/async-effect/package.json +++ b/examples/async-effect/package.json @@ -6,9 +6,9 @@ "license": "Apache-2.0", "scripts": { "clean": "rm -rf .cache build out", - "prepare": "yarn clean && mkdir -p out && cp foo.json out", - "build": "yarn prepare && parcel build index.html -d out --no-source-maps --no-cache --detailed-report --public-url ./", - "start": "yarn prepare && parcel index.html -p 8080 --open -d out" + "prep": "yarn clean && mkdir -p out && cp foo.json out", + "build": "yarn prep && parcel build index.html -d out --no-source-maps --no-cache --detailed-report --public-url ./", + "start": "yarn prep && parcel index.html -p 8080 --open -d out" }, "devDependencies": { "parcel-bundler": "^1.9.7", diff --git a/examples/router-basics/package.json b/examples/router-basics/package.json index 3b799bd14e..c54772b5c2 100644 --- a/examples/router-basics/package.json +++ b/examples/router-basics/package.json @@ -7,9 +7,9 @@ "license": "Apache-2.0", "scripts": { "clean": "rm -rf .cache build out", - "prepare": "yarn clean && mkdir -p out && cp -R assets out", - "build": "yarn prepare && parcel build index.html -d out --no-source-maps --no-cache --detailed-report --public-url ./", - "start": "yarn prepare && parcel index.html -p 8080 --open -d out" + "prep": "yarn clean && mkdir -p out && cp -R assets out", + "build": "yarn prep && parcel build index.html -d out --no-source-maps --no-cache --detailed-report --public-url ./", + "start": "yarn prep && parcel index.html -p 8080 --open -d out" }, "dependencies": { "@thi.ng/atom": "latest", From 8cbfb97e586595a308654907c7344914318adcc0 Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Mon, 24 Sep 2018 23:53:10 +0100 Subject: [PATCH 3/5] fix(strings): rename number parsers - rename to `maybeParseInt` / `maybeParseFloat` --- packages/strings/src/parse.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/strings/src/parse.ts b/packages/strings/src/parse.ts index efaef03f42..ada5e7bae6 100644 --- a/packages/strings/src/parse.ts +++ b/packages/strings/src/parse.ts @@ -1,9 +1,9 @@ -export const parseInt = (x: string, defaultVal = 0, radix = 10) => { +export const maybeParseInt = (x: string, defaultVal: any = 0, radix = 10) => { const n = parseInt(x, radix); return isNaN(n) ? defaultVal : n; }; -export const parseFloat = (x: string, defaultVal = 0) => { +export const maybeParseFloat = (x: string, defaultVal: any = 0) => { const n = parseFloat(x); return isNaN(n) ? defaultVal : n; }; From cb263002a3438da99efcea81cf6df989a4687f95 Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Tue, 25 Sep 2018 00:03:33 +0100 Subject: [PATCH 4/5] feat(examples): add xml-converter example --- examples/xml-converter/.gitignore | 5 + examples/xml-converter/README.md | 26 ++++++ examples/xml-converter/index.html | 28 ++++++ examples/xml-converter/package.json | 29 ++++++ examples/xml-converter/src/index.ts | 135 +++++++++++++++++++++++++++ examples/xml-converter/tsconfig.json | 11 +++ 6 files changed, 234 insertions(+) create mode 100644 examples/xml-converter/.gitignore create mode 100644 examples/xml-converter/README.md create mode 100644 examples/xml-converter/index.html create mode 100644 examples/xml-converter/package.json create mode 100644 examples/xml-converter/src/index.ts create mode 100644 examples/xml-converter/tsconfig.json diff --git a/examples/xml-converter/.gitignore b/examples/xml-converter/.gitignore new file mode 100644 index 0000000000..0c5abcab62 --- /dev/null +++ b/examples/xml-converter/.gitignore @@ -0,0 +1,5 @@ +.cache +out +node_modules +yarn.lock +*.js diff --git a/examples/xml-converter/README.md b/examples/xml-converter/README.md new file mode 100644 index 0000000000..c91a088a34 --- /dev/null +++ b/examples/xml-converter/README.md @@ -0,0 +1,26 @@ +# xml-converter + +[Live demo](http://demo.thi.ng/umbrella/xml-converter/) + +This example uses +[@thi.ng/sax](https://github.com/thi-ng/umbrella/tree/master/packages/sax) +to convert XML/HTML syntax into +[@thi.ng/hiccup](https://github.com/thi-ng/umbrella/tree/master/packages/hiccup) +syntax. + +TODO better output formatting, html boolean attribs + +```bash +git clone https://github.com/thi-ng/umbrella.git +cd umbrella/examples/xml-converter +yarn install +yarn start +``` + +## Authors + +- Karsten Schmidt + +## License + +© 2018 Karsten Schmidt // Apache Software License 2.0 diff --git a/examples/xml-converter/index.html b/examples/xml-converter/index.html new file mode 100644 index 0000000000..cfc00c1ff9 --- /dev/null +++ b/examples/xml-converter/index.html @@ -0,0 +1,28 @@ + + + + + + + + xml-converter + + + + + +
+
+

Current limitations

+
    +
  • No HTML quirks allowed (well formed XML only)
  • +
  • No HTML boolean attribs
  • +
  • Probably many more... :)
  • +
+ Source code +
+ + + + \ No newline at end of file diff --git a/examples/xml-converter/package.json b/examples/xml-converter/package.json new file mode 100644 index 0000000000..4e5b480a57 --- /dev/null +++ b/examples/xml-converter/package.json @@ -0,0 +1,29 @@ +{ + "name": "xml-converter", + "version": "0.0.1", + "repository": "https://github.com/thi-ng/umbrella", + "author": "Karsten Schmidt ", + "license": "Apache-2.0", + "scripts": { + "clean": "rm -rf .cache build out", + "build": "yarn clean && parcel build index.html -d out --public-url ./ --no-source-maps --no-cache --detailed-report", + "start": "parcel index.html -p 8080 --open" + }, + "devDependencies": { + "parcel-bundler": "^1.9.7", + "terser": "^3.8.2", + "typescript": "^3.0.1" + }, + "dependencies": { + "@thi.ng/rstream": "latest", + "@thi.ng/sax": "latest", + "@thi.ng/strings": "latest", + "@thi.ng/transducers-hdom": "latest" + }, + "browserslist": [ + "last 3 Chrome versions" + ], + "browser": { + "process": false + } +} \ No newline at end of file diff --git a/examples/xml-converter/src/index.ts b/examples/xml-converter/src/index.ts new file mode 100644 index 0000000000..2cb5f8b1f8 --- /dev/null +++ b/examples/xml-converter/src/index.ts @@ -0,0 +1,135 @@ +import { stream } from "@thi.ng/rstream/stream"; +import { parse, Type } from "@thi.ng/sax"; +import { maybeParseFloat } from "@thi.ng/strings/parse"; +import { updateDOM } from "@thi.ng/transducers-hdom"; +import { comp } from "@thi.ng/transducers/func/comp"; +import { identity } from "@thi.ng/transducers/func/identity"; +import { pairs } from "@thi.ng/transducers/iter/pairs"; +import { assocObj } from "@thi.ng/transducers/rfn/assoc-obj"; +import { last } from "@thi.ng/transducers/rfn/last"; +import { push } from "@thi.ng/transducers/rfn/push"; +import { transduce } from "@thi.ng/transducers/transduce"; +import { filter } from "@thi.ng/transducers/xform/filter"; +import { map } from "@thi.ng/transducers/xform/map"; +import { multiplex } from "@thi.ng/transducers/xform/multiplex"; + +const parseXML = (src: string) => + transduce( + comp( + parse({ trim: true }), + filter((e) => e.type === Type.ELEM_END || e.type === Type.ERROR) + ), + last(), + src + ); + +const transformAttribs = (attribs: any) => + transduce( + comp( + map(([k, v]) => [k, maybeParseFloat(v, null)]), + filter(([_, v]) => v !== null), + ), + assocObj(), + attribs, + pairs(attribs) + ); + +const transformTree = (tree) => { + if (tree.type === Type.ERROR) { + return ["error", tree.body]; + } + const res: any[] = []; + const attribs = transformAttribs(tree.attribs); + let tag = tree.tag; + if (attribs.id) { + tag += "#" + attribs.id; + delete attribs.id; + } + if (attribs.class) { + tag += "." + attribs.class.replace(/\s+/g, "."); + delete attribs.class; + } + res.push(tag); + if (Object.keys(attribs).length) { + res.push(attribs); + } + if (tree.body) { + res.push(tree.body); + } + if (tree.children && tree.children.length) { + transduce(map(transformTree), push(), res, tree.children) + } + return res; +}; + +const app = ([html, hiccup]) => + ["div.flex", + ["div", + ["h3", "XML/HTML source", + ["small.fw1.ml2", "(must be well formed!)"]], + ["textarea.mr2.f7.code.bg-light-yellow", + { + cols: 72, + rows: 25, + oninput: (e) => src.next(e.target.value), + value: html + }] + ], + ["div", + ["h3", "Parsed Hiccup / JSON"], + ["textarea.f7.code", + { + cols: 72, + rows: 25, + disabled: true + }, + JSON.stringify(hiccup, null, 2) + ] + ] + ]; + +const src = stream() + .transform( + multiplex( + map(identity), + comp( + map(parseXML), + map(transformTree) + ) + ), + map(app), + updateDOM() + ); + +src.next(` + + foo + + +
+ +`); + +if (process.env.NODE_ENV !== "production") { + const hot = (module).hot; + hot && hot.dispose(() => src.done()); +} + +["html", + { + "lang": "en" + }, + [ + "head", + [ + "title", + "foo" + ] + ], + [ + "body.foo.bar", + [ + "div#app" + ] + ] +] \ No newline at end of file diff --git a/examples/xml-converter/tsconfig.json b/examples/xml-converter/tsconfig.json new file mode 100644 index 0000000000..bbf112cc18 --- /dev/null +++ b/examples/xml-converter/tsconfig.json @@ -0,0 +1,11 @@ +{ + "extends": "../../tsconfig.json", + "compilerOptions": { + "outDir": ".", + "target": "es6", + "sourceMap": true + }, + "include": [ + "./src/**/*.ts" + ] +} From febe3c36d4c7e5a5f71ca89a68d27eeb8278397d Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Tue, 25 Sep 2018 00:13:23 +0100 Subject: [PATCH 5/5] Publish - @thi.ng/associative@0.6.9 - @thi.ng/cache@0.2.26 - @thi.ng/csp@0.3.65 - @thi.ng/dcons@1.1.9 - @thi.ng/dgraph@0.2.21 - @thi.ng/hdom-components@2.2.8 - @thi.ng/hiccup-css@0.2.24 - @thi.ng/iges@0.2.14 - @thi.ng/iterators@4.1.30 - @thi.ng/range-coder@0.1.14 - @thi.ng/rstream-csp@0.1.110 - @thi.ng/rstream-dot@0.2.49 - @thi.ng/rstream-gestures@0.5.11 - @thi.ng/rstream-graph@2.1.35 - @thi.ng/rstream-log@1.0.61 - @thi.ng/rstream-query@0.3.48 - @thi.ng/rstream@1.13.3 - @thi.ng/sax@0.4.1 - @thi.ng/strings@0.4.3 - @thi.ng/transducers-fsm@0.2.22 - @thi.ng/transducers-hdom@1.1.3 - @thi.ng/transducers-stats@0.4.9 - @thi.ng/transducers@2.1.4 --- packages/associative/CHANGELOG.md | 9 +++++++++ packages/associative/package.json | 6 +++--- packages/cache/CHANGELOG.md | 9 +++++++++ packages/cache/package.json | 6 +++--- packages/csp/CHANGELOG.md | 9 +++++++++ packages/csp/package.json | 6 +++--- packages/dcons/CHANGELOG.md | 9 +++++++++ packages/dcons/package.json | 4 ++-- packages/dgraph/CHANGELOG.md | 9 +++++++++ packages/dgraph/package.json | 6 +++--- packages/hdom-components/CHANGELOG.md | 9 +++++++++ packages/hdom-components/package.json | 4 ++-- packages/hiccup-css/CHANGELOG.md | 9 +++++++++ packages/hiccup-css/package.json | 4 ++-- packages/iges/CHANGELOG.md | 9 +++++++++ packages/iges/package.json | 6 +++--- packages/iterators/CHANGELOG.md | 9 +++++++++ packages/iterators/package.json | 4 ++-- packages/range-coder/CHANGELOG.md | 9 +++++++++ packages/range-coder/package.json | 4 ++-- packages/rstream-csp/CHANGELOG.md | 9 +++++++++ packages/rstream-csp/package.json | 6 +++--- packages/rstream-dot/CHANGELOG.md | 9 +++++++++ packages/rstream-dot/package.json | 4 ++-- packages/rstream-gestures/CHANGELOG.md | 9 +++++++++ packages/rstream-gestures/package.json | 6 +++--- packages/rstream-graph/CHANGELOG.md | 9 +++++++++ packages/rstream-graph/package.json | 6 +++--- packages/rstream-log/CHANGELOG.md | 9 +++++++++ packages/rstream-log/package.json | 6 +++--- packages/rstream-query/CHANGELOG.md | 9 +++++++++ packages/rstream-query/package.json | 10 +++++----- packages/rstream/CHANGELOG.md | 9 +++++++++ packages/rstream/package.json | 6 +++--- packages/sax/CHANGELOG.md | 9 +++++++++ packages/sax/package.json | 6 +++--- packages/strings/CHANGELOG.md | 12 ++++++++++++ packages/strings/package.json | 2 +- packages/transducers-fsm/CHANGELOG.md | 9 +++++++++ packages/transducers-fsm/package.json | 4 ++-- packages/transducers-hdom/CHANGELOG.md | 9 +++++++++ packages/transducers-hdom/package.json | 4 ++-- packages/transducers-stats/CHANGELOG.md | 9 +++++++++ packages/transducers-stats/package.json | 6 +++--- packages/transducers/CHANGELOG.md | 9 +++++++++ packages/transducers/package.json | 4 ++-- 46 files changed, 270 insertions(+), 60 deletions(-) diff --git a/packages/associative/CHANGELOG.md b/packages/associative/CHANGELOG.md index d83bf05f48..358d46d94a 100644 --- a/packages/associative/CHANGELOG.md +++ b/packages/associative/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.6.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/associative@0.6.8...@thi.ng/associative@0.6.9) (2018-09-24) + +**Note:** Version bump only for package @thi.ng/associative + + + + + ## [0.6.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/associative@0.6.7...@thi.ng/associative@0.6.8) (2018-09-24) diff --git a/packages/associative/package.json b/packages/associative/package.json index 9383a0446e..6d2103739f 100644 --- a/packages/associative/package.json +++ b/packages/associative/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/associative", - "version": "0.6.8", + "version": "0.6.9", "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.1", "@thi.ng/checks": "^1.5.11", "@thi.ng/compare": "^0.1.9", - "@thi.ng/dcons": "^1.1.8", + "@thi.ng/dcons": "^1.1.9", "@thi.ng/equiv": "^0.1.11", "@thi.ng/errors": "^0.1.9", - "@thi.ng/transducers": "^2.1.3" + "@thi.ng/transducers": "^2.1.4" }, "keywords": [ "data structures", diff --git a/packages/cache/CHANGELOG.md b/packages/cache/CHANGELOG.md index 5e357915c8..d9cc1a1fdf 100644 --- a/packages/cache/CHANGELOG.md +++ b/packages/cache/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.2.26](https://github.com/thi-ng/umbrella/compare/@thi.ng/cache@0.2.25...@thi.ng/cache@0.2.26) (2018-09-24) + +**Note:** Version bump only for package @thi.ng/cache + + + + + ## [0.2.25](https://github.com/thi-ng/umbrella/compare/@thi.ng/cache@0.2.24...@thi.ng/cache@0.2.25) (2018-09-24) diff --git a/packages/cache/package.json b/packages/cache/package.json index ad665eb3e8..82c4227a67 100644 --- a/packages/cache/package.json +++ b/packages/cache/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/cache", - "version": "0.2.25", + "version": "0.2.26", "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.1", - "@thi.ng/dcons": "^1.1.8", - "@thi.ng/transducers": "^2.1.3" + "@thi.ng/dcons": "^1.1.9", + "@thi.ng/transducers": "^2.1.4" }, "keywords": [ "cache", diff --git a/packages/csp/CHANGELOG.md b/packages/csp/CHANGELOG.md index d7aeda7e4a..8dfd32de4f 100644 --- a/packages/csp/CHANGELOG.md +++ b/packages/csp/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.3.65](https://github.com/thi-ng/umbrella/compare/@thi.ng/csp@0.3.64...@thi.ng/csp@0.3.65) (2018-09-24) + +**Note:** Version bump only for package @thi.ng/csp + + + + + ## [0.3.64](https://github.com/thi-ng/umbrella/compare/@thi.ng/csp@0.3.63...@thi.ng/csp@0.3.64) (2018-09-24) diff --git a/packages/csp/package.json b/packages/csp/package.json index b23784230d..5ec3a7f4d9 100644 --- a/packages/csp/package.json +++ b/packages/csp/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/csp", - "version": "0.3.64", + "version": "0.3.65", "description": "ES6 promise based CSP implementation", "main": "./index.js", "typings": "./index.d.ts", @@ -34,9 +34,9 @@ "dependencies": { "@thi.ng/api": "^4.2.1", "@thi.ng/checks": "^1.5.11", - "@thi.ng/dcons": "^1.1.8", + "@thi.ng/dcons": "^1.1.9", "@thi.ng/errors": "^0.1.9", - "@thi.ng/transducers": "^2.1.3" + "@thi.ng/transducers": "^2.1.4" }, "keywords": [ "async", diff --git a/packages/dcons/CHANGELOG.md b/packages/dcons/CHANGELOG.md index 29bc7bcd12..c28b236145 100644 --- a/packages/dcons/CHANGELOG.md +++ b/packages/dcons/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.1.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/dcons@1.1.8...@thi.ng/dcons@1.1.9) (2018-09-24) + +**Note:** Version bump only for package @thi.ng/dcons + + + + + ## [1.1.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/dcons@1.1.7...@thi.ng/dcons@1.1.8) (2018-09-24) diff --git a/packages/dcons/package.json b/packages/dcons/package.json index 0e484ad8dc..2d3521ce78 100644 --- a/packages/dcons/package.json +++ b/packages/dcons/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/dcons", - "version": "1.1.8", + "version": "1.1.9", "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.9", "@thi.ng/equiv": "^0.1.11", "@thi.ng/errors": "^0.1.9", - "@thi.ng/transducers": "^2.1.3" + "@thi.ng/transducers": "^2.1.4" }, "keywords": [ "datastructure", diff --git a/packages/dgraph/CHANGELOG.md b/packages/dgraph/CHANGELOG.md index 90a3b677e0..f6bad146f4 100644 --- a/packages/dgraph/CHANGELOG.md +++ b/packages/dgraph/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.2.21](https://github.com/thi-ng/umbrella/compare/@thi.ng/dgraph@0.2.20...@thi.ng/dgraph@0.2.21) (2018-09-24) + +**Note:** Version bump only for package @thi.ng/dgraph + + + + + ## [0.2.20](https://github.com/thi-ng/umbrella/compare/@thi.ng/dgraph@0.2.19...@thi.ng/dgraph@0.2.20) (2018-09-24) diff --git a/packages/dgraph/package.json b/packages/dgraph/package.json index ed69d7442d..75ec7dcad2 100644 --- a/packages/dgraph/package.json +++ b/packages/dgraph/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/dgraph", - "version": "0.2.20", + "version": "0.2.21", "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.1", - "@thi.ng/associative": "^0.6.8", + "@thi.ng/associative": "^0.6.9", "@thi.ng/equiv": "^0.1.11", "@thi.ng/errors": "^0.1.9", - "@thi.ng/transducers": "^2.1.3" + "@thi.ng/transducers": "^2.1.4" }, "keywords": [ "data structure", diff --git a/packages/hdom-components/CHANGELOG.md b/packages/hdom-components/CHANGELOG.md index ac72686151..dc06cac56f 100644 --- a/packages/hdom-components/CHANGELOG.md +++ b/packages/hdom-components/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [2.2.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-components@2.2.7...@thi.ng/hdom-components@2.2.8) (2018-09-24) + +**Note:** Version bump only for package @thi.ng/hdom-components + + + + + ## [2.2.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-components@2.2.6...@thi.ng/hdom-components@2.2.7) (2018-09-24) diff --git a/packages/hdom-components/package.json b/packages/hdom-components/package.json index 3f061d396d..9416639010 100644 --- a/packages/hdom-components/package.json +++ b/packages/hdom-components/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hdom-components", - "version": "2.2.7", + "version": "2.2.8", "description": "Raw, skinnable UI & SVG components for @thi.ng/hdom", "main": "./index.js", "typings": "./index.d.ts", @@ -30,7 +30,7 @@ "dependencies": { "@thi.ng/api": "^4.2.1", "@thi.ng/checks": "^1.5.11", - "@thi.ng/transducers": "^2.1.3", + "@thi.ng/transducers": "^2.1.4", "@types/webgl2": "^0.0.4" }, "keywords": [ diff --git a/packages/hiccup-css/CHANGELOG.md b/packages/hiccup-css/CHANGELOG.md index 5ab23e7314..0ad51bcb49 100644 --- a/packages/hiccup-css/CHANGELOG.md +++ b/packages/hiccup-css/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.2.24](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-css@0.2.23...@thi.ng/hiccup-css@0.2.24) (2018-09-24) + +**Note:** Version bump only for package @thi.ng/hiccup-css + + + + + ## [0.2.23](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-css@0.2.22...@thi.ng/hiccup-css@0.2.23) (2018-09-24) diff --git a/packages/hiccup-css/package.json b/packages/hiccup-css/package.json index b33d830cf1..1e0e1e2eae 100644 --- a/packages/hiccup-css/package.json +++ b/packages/hiccup-css/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hiccup-css", - "version": "0.2.23", + "version": "0.2.24", "description": "CSS from nested JS data structures", "main": "./index.js", "typings": "./index.d.ts", @@ -31,7 +31,7 @@ "@thi.ng/api": "^4.2.1", "@thi.ng/checks": "^1.5.11", "@thi.ng/errors": "^0.1.9", - "@thi.ng/transducers": "^2.1.3" + "@thi.ng/transducers": "^2.1.4" }, "keywords": [ "clojure", diff --git a/packages/iges/CHANGELOG.md b/packages/iges/CHANGELOG.md index bd15babe16..aecfc68775 100644 --- a/packages/iges/CHANGELOG.md +++ b/packages/iges/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.2.14](https://github.com/thi-ng/umbrella/compare/@thi.ng/iges@0.2.13...@thi.ng/iges@0.2.14) (2018-09-24) + +**Note:** Version bump only for package @thi.ng/iges + + + + + ## [0.2.13](https://github.com/thi-ng/umbrella/compare/@thi.ng/iges@0.2.12...@thi.ng/iges@0.2.13) (2018-09-24) diff --git a/packages/iges/package.json b/packages/iges/package.json index 3976c496fb..2f9b29dc08 100644 --- a/packages/iges/package.json +++ b/packages/iges/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/iges", - "version": "0.2.13", + "version": "0.2.14", "description": "IGES 5.3 serializer for (currently only) polygonal geometry, both open & closed", "main": "./index.js", "typings": "./index.d.ts", @@ -30,8 +30,8 @@ "dependencies": { "@thi.ng/api": "^4.2.1", "@thi.ng/defmulti": "^0.3.11", - "@thi.ng/strings": "^0.4.2", - "@thi.ng/transducers": "^2.1.3" + "@thi.ng/strings": "^0.4.3", + "@thi.ng/transducers": "^2.1.4" }, "keywords": [ "CAD", diff --git a/packages/iterators/CHANGELOG.md b/packages/iterators/CHANGELOG.md index c230d20ba4..aa1033d428 100644 --- a/packages/iterators/CHANGELOG.md +++ b/packages/iterators/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [4.1.30](https://github.com/thi-ng/umbrella/compare/@thi.ng/iterators@4.1.29...@thi.ng/iterators@4.1.30) (2018-09-24) + +**Note:** Version bump only for package @thi.ng/iterators + + + + + ## [4.1.29](https://github.com/thi-ng/umbrella/compare/@thi.ng/iterators@4.1.28...@thi.ng/iterators@4.1.29) (2018-09-24) diff --git a/packages/iterators/package.json b/packages/iterators/package.json index f55b3b4af1..1db138610e 100644 --- a/packages/iterators/package.json +++ b/packages/iterators/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/iterators", - "version": "4.1.29", + "version": "4.1.30", "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.1", - "@thi.ng/dcons": "^1.1.8", + "@thi.ng/dcons": "^1.1.9", "@thi.ng/errors": "^0.1.9" }, "keywords": [ diff --git a/packages/range-coder/CHANGELOG.md b/packages/range-coder/CHANGELOG.md index 0129415a6b..9e5ac527b5 100644 --- a/packages/range-coder/CHANGELOG.md +++ b/packages/range-coder/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.1.14](https://github.com/thi-ng/umbrella/compare/@thi.ng/range-coder@0.1.13...@thi.ng/range-coder@0.1.14) (2018-09-24) + +**Note:** Version bump only for package @thi.ng/range-coder + + + + + ## [0.1.13](https://github.com/thi-ng/umbrella/compare/@thi.ng/range-coder@0.1.12...@thi.ng/range-coder@0.1.13) (2018-09-24) diff --git a/packages/range-coder/package.json b/packages/range-coder/package.json index 0f87a53c46..c5a7db64f9 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.13", + "version": "0.1.14", "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.1.3", + "@thi.ng/transducers": "^2.1.4", "@types/mocha": "^5.2.5", "@types/node": "^10.5.5", "mocha": "^5.2.0", diff --git a/packages/rstream-csp/CHANGELOG.md b/packages/rstream-csp/CHANGELOG.md index b3722f4d15..b52032fe68 100644 --- a/packages/rstream-csp/CHANGELOG.md +++ b/packages/rstream-csp/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.1.110](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-csp@0.1.109...@thi.ng/rstream-csp@0.1.110) (2018-09-24) + +**Note:** Version bump only for package @thi.ng/rstream-csp + + + + + ## [0.1.109](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-csp@0.1.108...@thi.ng/rstream-csp@0.1.109) (2018-09-24) diff --git a/packages/rstream-csp/package.json b/packages/rstream-csp/package.json index 4c07c313c9..847d07d3fa 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.109", + "version": "0.1.110", "description": "@thi.ng/csp bridge module for @thi.ng/rstream", "main": "./index.js", "typings": "./index.d.ts", @@ -28,8 +28,8 @@ "typescript": "^3.0.1" }, "dependencies": { - "@thi.ng/csp": "^0.3.64", - "@thi.ng/rstream": "^1.13.2" + "@thi.ng/csp": "^0.3.65", + "@thi.ng/rstream": "^1.13.3" }, "keywords": [ "bridge", diff --git a/packages/rstream-dot/CHANGELOG.md b/packages/rstream-dot/CHANGELOG.md index ebe4bc292f..25adb475b6 100644 --- a/packages/rstream-dot/CHANGELOG.md +++ b/packages/rstream-dot/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.2.49](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-dot@0.2.48...@thi.ng/rstream-dot@0.2.49) (2018-09-24) + +**Note:** Version bump only for package @thi.ng/rstream-dot + + + + + ## [0.2.48](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-dot@0.2.47...@thi.ng/rstream-dot@0.2.48) (2018-09-24) diff --git a/packages/rstream-dot/package.json b/packages/rstream-dot/package.json index 7679faf8d1..41e6c6c08c 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.48", + "version": "0.2.49", "description": "Graphviz DOT conversion of @thi.ng/rstream dataflow graph topologies", "main": "./index.js", "typings": "./index.d.ts", @@ -28,7 +28,7 @@ "typescript": "^3.0.1" }, "dependencies": { - "@thi.ng/rstream": "^1.13.2" + "@thi.ng/rstream": "^1.13.3" }, "keywords": [ "conversion", diff --git a/packages/rstream-gestures/CHANGELOG.md b/packages/rstream-gestures/CHANGELOG.md index 16e7b106df..1bdd106ead 100644 --- a/packages/rstream-gestures/CHANGELOG.md +++ b/packages/rstream-gestures/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.5.11](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-gestures@0.5.10...@thi.ng/rstream-gestures@0.5.11) (2018-09-24) + +**Note:** Version bump only for package @thi.ng/rstream-gestures + + + + + ## [0.5.10](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-gestures@0.5.9...@thi.ng/rstream-gestures@0.5.10) (2018-09-24) diff --git a/packages/rstream-gestures/package.json b/packages/rstream-gestures/package.json index 0bb7c1a204..93bdbc7c92 100644 --- a/packages/rstream-gestures/package.json +++ b/packages/rstream-gestures/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-gestures", - "version": "0.5.10", + "version": "0.5.11", "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.1", - "@thi.ng/rstream": "^1.13.2", - "@thi.ng/transducers": "^2.1.3" + "@thi.ng/rstream": "^1.13.3", + "@thi.ng/transducers": "^2.1.4" }, "keywords": [ "dataflow", diff --git a/packages/rstream-graph/CHANGELOG.md b/packages/rstream-graph/CHANGELOG.md index 8e4195490a..81595f3167 100644 --- a/packages/rstream-graph/CHANGELOG.md +++ b/packages/rstream-graph/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [2.1.35](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-graph@2.1.34...@thi.ng/rstream-graph@2.1.35) (2018-09-24) + +**Note:** Version bump only for package @thi.ng/rstream-graph + + + + + ## [2.1.34](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-graph@2.1.33...@thi.ng/rstream-graph@2.1.34) (2018-09-24) diff --git a/packages/rstream-graph/package.json b/packages/rstream-graph/package.json index 8b8236458d..0404b53921 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.34", + "version": "2.1.35", "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.9", "@thi.ng/paths": "^1.6.3", "@thi.ng/resolve-map": "^3.0.13", - "@thi.ng/rstream": "^1.13.2", - "@thi.ng/transducers": "^2.1.3" + "@thi.ng/rstream": "^1.13.3", + "@thi.ng/transducers": "^2.1.4" }, "keywords": [ "compute", diff --git a/packages/rstream-log/CHANGELOG.md b/packages/rstream-log/CHANGELOG.md index 3df83e7c3c..9c1fd797c6 100644 --- a/packages/rstream-log/CHANGELOG.md +++ b/packages/rstream-log/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.0.61](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log@1.0.60...@thi.ng/rstream-log@1.0.61) (2018-09-24) + +**Note:** Version bump only for package @thi.ng/rstream-log + + + + + ## [1.0.60](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log@1.0.59...@thi.ng/rstream-log@1.0.60) (2018-09-24) diff --git a/packages/rstream-log/package.json b/packages/rstream-log/package.json index e3b06ad73b..5341d9a08a 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.60", + "version": "1.0.61", "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.1", "@thi.ng/checks": "^1.5.11", "@thi.ng/errors": "^0.1.9", - "@thi.ng/rstream": "^1.13.2", - "@thi.ng/transducers": "^2.1.3" + "@thi.ng/rstream": "^1.13.3", + "@thi.ng/transducers": "^2.1.4" }, "keywords": [ "ES6", diff --git a/packages/rstream-query/CHANGELOG.md b/packages/rstream-query/CHANGELOG.md index 5d84732b30..be6723f0cd 100644 --- a/packages/rstream-query/CHANGELOG.md +++ b/packages/rstream-query/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.3.48](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-query@0.3.47...@thi.ng/rstream-query@0.3.48) (2018-09-24) + +**Note:** Version bump only for package @thi.ng/rstream-query + + + + + ## [0.3.47](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-query@0.3.46...@thi.ng/rstream-query@0.3.47) (2018-09-24) diff --git a/packages/rstream-query/package.json b/packages/rstream-query/package.json index d6d21378ba..84c6815027 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.47", + "version": "0.3.48", "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.1", - "@thi.ng/associative": "^0.6.8", + "@thi.ng/associative": "^0.6.9", "@thi.ng/checks": "^1.5.11", "@thi.ng/equiv": "^0.1.11", "@thi.ng/errors": "^0.1.9", - "@thi.ng/rstream": "^1.13.2", - "@thi.ng/rstream-dot": "^0.2.48", - "@thi.ng/transducers": "^2.1.3" + "@thi.ng/rstream": "^1.13.3", + "@thi.ng/rstream-dot": "^0.2.49", + "@thi.ng/transducers": "^2.1.4" }, "keywords": [ "dataflow", diff --git a/packages/rstream/CHANGELOG.md b/packages/rstream/CHANGELOG.md index 6426c24926..79ebaa91e4 100644 --- a/packages/rstream/CHANGELOG.md +++ b/packages/rstream/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.13.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream@1.13.2...@thi.ng/rstream@1.13.3) (2018-09-24) + +**Note:** Version bump only for package @thi.ng/rstream + + + + + ## [1.13.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream@1.13.1...@thi.ng/rstream@1.13.2) (2018-09-24) diff --git a/packages/rstream/package.json b/packages/rstream/package.json index 44282917e9..0b8549075f 100644 --- a/packages/rstream/package.json +++ b/packages/rstream/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream", - "version": "1.13.2", + "version": "1.13.3", "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.1", - "@thi.ng/associative": "^0.6.8", + "@thi.ng/associative": "^0.6.9", "@thi.ng/atom": "^1.5.4", "@thi.ng/checks": "^1.5.11", "@thi.ng/errors": "^0.1.9", "@thi.ng/paths": "^1.6.3", - "@thi.ng/transducers": "^2.1.3" + "@thi.ng/transducers": "^2.1.4" }, "keywords": [ "datastructure", diff --git a/packages/sax/CHANGELOG.md b/packages/sax/CHANGELOG.md index d0cb8bd679..4d88b168df 100644 --- a/packages/sax/CHANGELOG.md +++ b/packages/sax/CHANGELOG.md @@ -3,6 +3,15 @@ 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/sax@0.4.0...@thi.ng/sax@0.4.1) (2018-09-24) + +**Note:** Version bump only for package @thi.ng/sax + + + + + # [0.4.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/sax@0.3.21...@thi.ng/sax@0.4.0) (2018-09-24) diff --git a/packages/sax/package.json b/packages/sax/package.json index 6c70b722ee..dbab0d948c 100644 --- a/packages/sax/package.json +++ b/packages/sax/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/sax", - "version": "0.4.0", + "version": "0.4.1", "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.1", - "@thi.ng/transducers": "^2.1.3", - "@thi.ng/transducers-fsm": "^0.2.21" + "@thi.ng/transducers": "^2.1.4", + "@thi.ng/transducers-fsm": "^0.2.22" }, "keywords": [ "ES6", diff --git a/packages/strings/CHANGELOG.md b/packages/strings/CHANGELOG.md index 6a52b9e272..e3b892efbc 100644 --- a/packages/strings/CHANGELOG.md +++ b/packages/strings/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.4.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/strings@0.4.2...@thi.ng/strings@0.4.3) (2018-09-24) + + +### Bug Fixes + +* **strings:** rename number parsers ([8cbfb97](https://github.com/thi-ng/umbrella/commit/8cbfb97)) + + + + + ## [0.4.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/strings@0.4.1...@thi.ng/strings@0.4.2) (2018-09-24) diff --git a/packages/strings/package.json b/packages/strings/package.json index 54c1688cb9..10cf623f66 100644 --- a/packages/strings/package.json +++ b/packages/strings/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/strings", - "version": "0.4.2", + "version": "0.4.3", "description": "Various string formatting & utility functions", "main": "./index.js", "typings": "./index.d.ts", diff --git a/packages/transducers-fsm/CHANGELOG.md b/packages/transducers-fsm/CHANGELOG.md index e378ffb09b..2a8c543731 100644 --- a/packages/transducers-fsm/CHANGELOG.md +++ b/packages/transducers-fsm/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.2.22](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-fsm@0.2.21...@thi.ng/transducers-fsm@0.2.22) (2018-09-24) + +**Note:** Version bump only for package @thi.ng/transducers-fsm + + + + + ## [0.2.21](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-fsm@0.2.20...@thi.ng/transducers-fsm@0.2.21) (2018-09-24) diff --git a/packages/transducers-fsm/package.json b/packages/transducers-fsm/package.json index a289f65ff4..3a8341468e 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.21", + "version": "0.2.22", "description": "Transducer-based Finite State Machine transformer", "main": "./index.js", "typings": "./index.d.ts", @@ -29,7 +29,7 @@ }, "dependencies": { "@thi.ng/api": "^4.2.1", - "@thi.ng/transducers": "^2.1.3" + "@thi.ng/transducers": "^2.1.4" }, "keywords": [ "ES6", diff --git a/packages/transducers-hdom/CHANGELOG.md b/packages/transducers-hdom/CHANGELOG.md index 0720d13932..ebc85864f8 100644 --- a/packages/transducers-hdom/CHANGELOG.md +++ b/packages/transducers-hdom/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.1.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-hdom@1.1.2...@thi.ng/transducers-hdom@1.1.3) (2018-09-24) + +**Note:** Version bump only for package @thi.ng/transducers-hdom + + + + + ## [1.1.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-hdom@1.1.1...@thi.ng/transducers-hdom@1.1.2) (2018-09-24) diff --git a/packages/transducers-hdom/package.json b/packages/transducers-hdom/package.json index 417d5b2e05..d6cceacd6e 100644 --- a/packages/transducers-hdom/package.json +++ b/packages/transducers-hdom/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/transducers-hdom", - "version": "1.1.2", + "version": "1.1.3", "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.11", "@thi.ng/hdom": "^5.0.2", - "@thi.ng/transducers": "^2.1.3" + "@thi.ng/transducers": "^2.1.4" }, "keywords": [ "diff", diff --git a/packages/transducers-stats/CHANGELOG.md b/packages/transducers-stats/CHANGELOG.md index 44c795791e..52dd6c24c9 100644 --- a/packages/transducers-stats/CHANGELOG.md +++ b/packages/transducers-stats/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.4.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-stats@0.4.8...@thi.ng/transducers-stats@0.4.9) (2018-09-24) + +**Note:** Version bump only for package @thi.ng/transducers-stats + + + + + ## [0.4.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-stats@0.4.7...@thi.ng/transducers-stats@0.4.8) (2018-09-24) diff --git a/packages/transducers-stats/package.json b/packages/transducers-stats/package.json index 71cd21e08b..b0944da9c7 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.8", + "version": "0.4.9", "description": "Transducers for statistical / technical analysis", "main": "./index.js", "typings": "./index.d.ts", @@ -28,9 +28,9 @@ "typescript": "^3.0.1" }, "dependencies": { - "@thi.ng/dcons": "^1.1.8", + "@thi.ng/dcons": "^1.1.9", "@thi.ng/errors": "^0.1.9", - "@thi.ng/transducers": "^2.1.3" + "@thi.ng/transducers": "^2.1.4" }, "keywords": [ "ES6", diff --git a/packages/transducers/CHANGELOG.md b/packages/transducers/CHANGELOG.md index db8fef0175..79016dbf17 100644 --- a/packages/transducers/CHANGELOG.md +++ b/packages/transducers/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [2.1.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers@2.1.3...@thi.ng/transducers@2.1.4) (2018-09-24) + +**Note:** Version bump only for package @thi.ng/transducers + + + + + ## [2.1.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers@2.1.2...@thi.ng/transducers@2.1.3) (2018-09-24) diff --git a/packages/transducers/package.json b/packages/transducers/package.json index b20df7af82..605f7adf0b 100644 --- a/packages/transducers/package.json +++ b/packages/transducers/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/transducers", - "version": "2.1.3", + "version": "2.1.4", "description": "Lightweight transducer implementations for ES6 / TypeScript", "main": "./index.js", "typings": "./index.d.ts", @@ -34,7 +34,7 @@ "@thi.ng/compose": "^0.1.4", "@thi.ng/equiv": "^0.1.11", "@thi.ng/errors": "^0.1.9", - "@thi.ng/strings": "^0.4.2" + "@thi.ng/strings": "^0.4.3" }, "keywords": [ "ES6",