diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 3790433a94..8bb9ce33ba 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -20,7 +20,7 @@ of them. - [Create a feature branch](#create-a-feature-branch) - [Commit your changes](#commit-your-changes) - [Run & add tests](#run--add-tests) - - [Push to the branch](#push-to-the-branch) + - [Push to your feature branch](#push-to-your-feature-branch) - [Create new Pull Request](#create-new-pull-request) - [Code style guide](#code-style-guide) - [Project layout](#project-layout) @@ -28,7 +28,7 @@ of them. - [Sorted imports](#sorted-imports) - [No default exports](#no-default-exports) - [No 3rd party dependencies](#no-3rd-party-dependencies) - - [Inter-repo dependencies](#inter-repo-dependencies) + - [Intra-repo dependencies](#intra-repo-dependencies) - [No exported `const enums`](#no-exported-const-enums) - [Arrow functions preferred](#arrow-functions-preferred) - [Function / ctor arguments](#function--ctor-arguments) @@ -44,13 +44,13 @@ of them. ### Join our Discord We have a [Discord community](https://discord.gg/JhYcmBw) where it's -usually the faster to get some answers to any burning questions and -where we generally share & discuss feedback / ideas / interesting things +usually the fastest to get some answers to any burning questions and +where we generally share & discuss feedback/ideas/interesting things loosely related to this project. Come and say Hi! ### Submit an issue -In many cases it might be better to [submit an +In many cases, it might be better to [submit an issue](https://github.com/thi-ng/umbrella/issues) here on GitHub, especially if you've discovered some kind of bug and/or want to propose new features etc., which require longer discussion. I'd also encourage @@ -92,9 +92,9 @@ lerna run doc:readme --scope @thi.ng/ The wiki of this repo is still pretty barebones, however adding some gallery, FAQs, tutorials, best practice tips, feature ideas/roadmaps and -a collection of links to blog posts, 3rd party examples etc. is planned. -If you have anything to contribute (or have already done so elsewhere), -please do get in touch. +a collection of links to blog posts, 3rd party examples, etc. is +planned. If you have anything to contribute (or have already done so +elsewhere), please do get in touch. ### Small, standalone examples in the repo @@ -103,7 +103,7 @@ included in the repo are each focused on specific features and kept quite lowkey for reasons of simplicity. Since many of the projects are meant to be integrated with other 3rd party projects, I'm always on the lookout for similar small demos showcasing these integrations (e.g. w/ -React, WebGL, SVG etc.) +React, WebGL, SVG, etc.) The repo contains a generator bash script to create a new example project skeleton in the repo's `/examples` dir. Use it like below (and @@ -136,11 +136,11 @@ interweb), please also read the next section... **IMPORTANT:** To avoid misunderstandings or disappointment, please always first submit an issue discussing any new feature or large refactoring before starting to code and submitting PRs. For small bug -fixes or new examples it's usually fine without, though. I'm not trying +fixes or new examples, it's usually fine without, though. I'm not trying to complicate things, but it's always a good idea to first talk about -larger contributions and there're also various (sometime still +larger contributions and there're also various (sometimes still unpublished) feature branches, incl. some existing WIP relevant to your -issue / proposal... +issue/proposal... ### Fork it @@ -154,6 +154,10 @@ yarn build ### Create a feature branch +Creating feature branches is only needed for adding new code or larger +fixes/refactoring. If you're only updating some docs or other minor +fixes you can work on your own `develop` branch directly... + **Always use `develop` as base branch, which also is the default branch of this repo...** @@ -183,7 +187,7 @@ convention](https://conventionalcommits.org/) for your commit messages.** This format is used to generate changelogs and ensures consistency and better filtering. Since this is a mono repository the convention ensures commit messages can be easily mapped to their -sub-project. Also see existing commits for reference +sub-project. Also, see existing commits for reference ([example](https://github.com/thi-ng/umbrella/commit/ebbc4910f64c90df7bb93010a75307df51c80b6e)). The Conventional Commits classifiers/prefixes used in this project are: @@ -206,7 +210,7 @@ replacement for a large suite of tests, therefore most packages do have a varying (but growing) number of unit tests. If you're adding a new feature (or think you've fixed a bug), please add some related tests (if possible) too for extra brownie points. Either add a new file under a -project's `/test` dir or add / edit one of the existing test cases in +project's `/test` dir or add/edit one of the existing test cases in there. Tests can be run via: @@ -224,7 +228,7 @@ yarn test # also builds all packages first yarn test:only # assumes all packages have been build already ``` -### Push to the branch +### Push to your feature branch ``` git push origin feature/my-feature @@ -232,7 +236,8 @@ git push origin feature/my-feature ### Create new Pull Request -Go to your fork on GH and create a PR. +Go to your fork on GH and create a PR. If there's no prior issue related +to the PR, please make sure you explain its purpose. ## Code style guide @@ -252,18 +257,18 @@ topically related files are grouped in sub-folders under `/src`. ### Imports -To encourage small(er) file sizes of production artefacts, most source -files are organized to only contain a small number of related functions -/ classes. Package internal imports MUST always refer to the actual -source file, whereas imports from other packages MUST only use the -package name. This is because of the way each package is built and +To encourage small(er) file sizes of production artifacts, most source +files are organized to only contain a small number of related +functions/classes. Package internal imports MUST always refer to the +actual source file, whereas imports from other packages MUST only use +the package name. This is because of the way each package is built and output in 3 different module formats (ES6, CJS, UMD). ### Sorted imports -Please ensure you're updating the list imports in changed files to be -sorted by package name. In VSCode it's as easy as hitting `Alt + Shift + -O` or choosing "Organize imports" from the command pallette. +Please ensure you're updating the list of imports in changed files to be +sorted by package name. In VSCode it's as easy as hitting `Shift + Alt + +O` or choosing "Organize imports" from the command palette. ### No default exports @@ -279,9 +284,9 @@ _Not-Invented-Here_, but here done for reasons of sanity & clarity, not to prove a point. If you plan to submit code with 3rd party deps, please get in touch first and explain why it's necessary (in your humble opinion). -### Inter-repo dependencies +### Intra-repo dependencies -Please use your best judgement before introducing a new dependency on +Please use your best judgment before introducing a new dependency on another package within this repo and remember that even though these packages are developed under one "umbrella", the aim is NOT to form a tightly coupled framework. In general, it's absolutely fine to depend on @@ -313,10 +318,10 @@ attention](https://github.com/thi-ng/umbrella/issues/154) (thanks to downstream workflows related to Babel transpilation and TypeScript's `isolatedModules` compilation feature. For that reason, that latter option is now enabled for all packages and exported `const enum`s are -NOT to be used anymore in this project. The only exception are packages -where `const enums` are used internally. For all others we have reverted -to using normal `enum`s, but might introduce alternatives in the -future... +NOT to be used anymore in this project. The only exceptions are packages +where `const enums` are used internally. For all others, we have +reverted to using normal `enum`s, but might introduce alternatives in +the future... ### Arrow functions preferred @@ -374,7 +379,7 @@ const sort = (coll: T[], opts: FooOpts) => { ### Naming conventions -These are not fully set in stone, but there's been recent effort +These are not fully set in stone, but there's been a recent effort underway to unify naming conventions & patterns for several aspects/groups of functions / types: @@ -420,7 +425,7 @@ interface TextureOpts { Not (yet?) used consistently, but in order to encourage a more function driven coding style (regardless of using some OOP concepts internally), -functions which create some form of resource / object / class instance +functions which create some form of resource/object/class instance *should* be using the `def` prefix (inspired by Clojure and other Lisps). For classes, this means adding a factory function delegating to the class constructor and potentially performing additional preparation @@ -500,11 +505,11 @@ For others, the important rules are: ## Donations -This this project has been in development since early 2016 (some -packages even older). If you would like to support the continued -development & ever increasing maintenance effort of this project, please -consider a financial contribution (anything helps!) via any of the -following channels: +This project has been in development since early 2016 (some packages +even older). If you would like to support the continued development & +ever-increasing maintenance effort of this project, please consider a +financial contribution (anything helps!) via any of the following +channels: - [GitHub Sponsors](https://github.com/sponsors/postspectacular) - [Patreon](https://www.patreon.com/thing_umbrella) diff --git a/packages/adjacency/CHANGELOG.md b/packages/adjacency/CHANGELOG.md index 45869570ef..b7dabae679 100644 --- a/packages/adjacency/CHANGELOG.md +++ b/packages/adjacency/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.36](https://github.com/thi-ng/umbrella/compare/@thi.ng/adjacency@0.1.35...@thi.ng/adjacency@0.1.36) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/adjacency + + + + + ## [0.1.35](https://github.com/thi-ng/umbrella/compare/@thi.ng/adjacency@0.1.34...@thi.ng/adjacency@0.1.35) (2020-04-05) **Note:** Version bump only for package @thi.ng/adjacency diff --git a/packages/adjacency/package.json b/packages/adjacency/package.json index d29fbac51a..c24ed52e40 100644 --- a/packages/adjacency/package.json +++ b/packages/adjacency/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/adjacency", - "version": "0.1.35", + "version": "0.1.36", "description": "Sparse & bitwise adjacency matrices and related functions for directed & undirected graphs", "module": "./index.js", "main": "./lib/index.js", @@ -29,7 +29,7 @@ "devDependencies": { "@istanbuljs/nyc-config-typescript": "^1.0.1", "@microsoft/api-extractor": "^7.7.8", - "@thi.ng/vectors": "^4.2.3", + "@thi.ng/vectors": "^4.2.4", "@types/mocha": "^7.0.1", "@types/node": "^13.7.4", "mocha": "^7.1.1", @@ -39,12 +39,12 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", + "@thi.ng/api": "^6.10.0", "@thi.ng/binary": "^2.0.2", - "@thi.ng/bitfield": "^0.3.2", + "@thi.ng/bitfield": "^0.3.3", "@thi.ng/checks": "^2.6.1", - "@thi.ng/dcons": "^2.2.9", - "@thi.ng/sparse": "^0.1.32", + "@thi.ng/dcons": "^2.2.10", + "@thi.ng/sparse": "^0.1.33", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/api/CHANGELOG.md b/packages/api/CHANGELOG.md index d91be11530..dc788352a1 100644 --- a/packages/api/CHANGELOG.md +++ b/packages/api/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.10.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/api@6.9.1...@thi.ng/api@6.10.0) (2020-04-06) + + +### Features + +* **api:** add LogLevelName type ([25b6c67](https://github.com/thi-ng/umbrella/commit/25b6c6774645eef6606e76b9e81149863e964d71)) + + + + + ## [6.9.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/api@6.9.0...@thi.ng/api@6.9.1) (2020-04-05) **Note:** Version bump only for package @thi.ng/api diff --git a/packages/api/package.json b/packages/api/package.json index 846b367a10..c56914a7e2 100644 --- a/packages/api/package.json +++ b/packages/api/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/api", - "version": "6.9.1", + "version": "6.10.0", "description": "Common, generic types, interfaces & mixins", "module": "./index.js", "main": "./lib/index.js", diff --git a/packages/api/src/api/logger.ts b/packages/api/src/api/logger.ts index be19ab0d9b..a69d039cfe 100644 --- a/packages/api/src/api/logger.ts +++ b/packages/api/src/api/logger.ts @@ -4,9 +4,17 @@ export enum LogLevel { INFO, WARN, SEVERE, - NONE + NONE, } +export type LogLevelName = + | "FINE" + | "DEBUG" + | "INFO" + | "WARN" + | "SEVERE" + | "NONE"; + export interface ILogger { /** * This logger's configured minimum log level diff --git a/packages/arrays/CHANGELOG.md b/packages/arrays/CHANGELOG.md index c0ea6dbe2e..33855e5bfc 100644 --- a/packages/arrays/CHANGELOG.md +++ b/packages/arrays/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.6.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/arrays@0.6.1...@thi.ng/arrays@0.6.2) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/arrays + + + + + ## [0.6.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/arrays@0.6.0...@thi.ng/arrays@0.6.1) (2020-04-05) **Note:** Version bump only for package @thi.ng/arrays diff --git a/packages/arrays/package.json b/packages/arrays/package.json index ef25d7bbad..f483558ec0 100644 --- a/packages/arrays/package.json +++ b/packages/arrays/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/arrays", - "version": "0.6.1", + "version": "0.6.2", "description": "Array / Arraylike utilities", "module": "./index.js", "main": "./lib/index.js", @@ -38,12 +38,12 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", + "@thi.ng/api": "^6.10.0", "@thi.ng/checks": "^2.6.1", - "@thi.ng/compare": "^1.3.0", + "@thi.ng/compare": "^1.3.1", "@thi.ng/equiv": "^1.0.18", "@thi.ng/errors": "^1.2.9", - "@thi.ng/random": "^1.4.3", + "@thi.ng/random": "^1.4.4", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/associative/CHANGELOG.md b/packages/associative/CHANGELOG.md index c86c1b5b06..9135ddb139 100644 --- a/packages/associative/CHANGELOG.md +++ b/packages/associative/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/associative@4.0.1...@thi.ng/associative@4.0.2) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/associative + + + + + ## [4.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/associative@4.0.0...@thi.ng/associative@4.0.1) (2020-04-05) **Note:** Version bump only for package @thi.ng/associative diff --git a/packages/associative/package.json b/packages/associative/package.json index daad48d55d..a9b261361b 100644 --- a/packages/associative/package.json +++ b/packages/associative/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/associative", - "version": "4.0.1", + "version": "4.0.2", "description": "Alternative Map and Set implementations with customizable equality semantics & supporting operations", "module": "./index.js", "main": "./lib/index.js", @@ -38,14 +38,14 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", + "@thi.ng/api": "^6.10.0", "@thi.ng/binary": "^2.0.2", "@thi.ng/checks": "^2.6.1", - "@thi.ng/compare": "^1.3.0", - "@thi.ng/dcons": "^2.2.9", + "@thi.ng/compare": "^1.3.1", + "@thi.ng/dcons": "^2.2.10", "@thi.ng/equiv": "^1.0.18", "@thi.ng/errors": "^1.2.9", - "@thi.ng/transducers": "^6.4.3", + "@thi.ng/transducers": "^6.4.4", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/atom/CHANGELOG.md b/packages/atom/CHANGELOG.md index e02d32cc53..2e3163f1e6 100644 --- a/packages/atom/CHANGELOG.md +++ b/packages/atom/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.1.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/atom@4.1.1...@thi.ng/atom@4.1.2) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/atom + + + + + ## [4.1.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/atom@4.1.0...@thi.ng/atom@4.1.1) (2020-04-05) **Note:** Version bump only for package @thi.ng/atom diff --git a/packages/atom/package.json b/packages/atom/package.json index a3482bd4ce..8f34916728 100644 --- a/packages/atom/package.json +++ b/packages/atom/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/atom", - "version": "4.1.1", + "version": "4.1.2", "description": "Mutable wrappers for nested immutable values with optional undo/redo history and transaction support", "module": "./index.js", "main": "./lib/index.js", @@ -38,7 +38,7 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", + "@thi.ng/api": "^6.10.0", "@thi.ng/checks": "^2.6.1", "@thi.ng/equiv": "^1.0.18", "@thi.ng/errors": "^1.2.9", diff --git a/packages/bencode/CHANGELOG.md b/packages/bencode/CHANGELOG.md index cedbcadd42..13323032cc 100644 --- a/packages/bencode/CHANGELOG.md +++ b/packages/bencode/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.3.17](https://github.com/thi-ng/umbrella/compare/@thi.ng/bencode@0.3.16...@thi.ng/bencode@0.3.17) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/bencode + + + + + ## [0.3.16](https://github.com/thi-ng/umbrella/compare/@thi.ng/bencode@0.3.15...@thi.ng/bencode@0.3.16) (2020-04-05) **Note:** Version bump only for package @thi.ng/bencode diff --git a/packages/bencode/package.json b/packages/bencode/package.json index 5943c4d774..0e3fe3a34b 100644 --- a/packages/bencode/package.json +++ b/packages/bencode/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/bencode", - "version": "0.3.16", + "version": "0.3.17", "description": "Bencode binary encoder / decoder with optional UTF8 encoding & floating point support", "module": "./index.js", "main": "./lib/index.js", @@ -38,13 +38,13 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", - "@thi.ng/arrays": "^0.6.1", + "@thi.ng/api": "^6.10.0", + "@thi.ng/arrays": "^0.6.2", "@thi.ng/checks": "^2.6.1", - "@thi.ng/defmulti": "^1.2.9", + "@thi.ng/defmulti": "^1.2.10", "@thi.ng/errors": "^1.2.9", - "@thi.ng/transducers": "^6.4.3", - "@thi.ng/transducers-binary": "^0.5.6", + "@thi.ng/transducers": "^6.4.4", + "@thi.ng/transducers-binary": "^0.5.7", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/bitfield/CHANGELOG.md b/packages/bitfield/CHANGELOG.md index 955bf1e1da..1aaf499bc1 100644 --- a/packages/bitfield/CHANGELOG.md +++ b/packages/bitfield/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.3.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/bitfield@0.3.2...@thi.ng/bitfield@0.3.3) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/bitfield + + + + + ## [0.3.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/bitfield@0.3.1...@thi.ng/bitfield@0.3.2) (2020-04-05) **Note:** Version bump only for package @thi.ng/bitfield diff --git a/packages/bitfield/package.json b/packages/bitfield/package.json index 1a3227d59e..4ea32ab63c 100644 --- a/packages/bitfield/package.json +++ b/packages/bitfield/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/bitfield", - "version": "0.3.2", + "version": "0.3.3", "description": "1D / 2D bit field implementations", "module": "./index.js", "main": "./lib/index.js", @@ -38,9 +38,9 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", + "@thi.ng/api": "^6.10.0", "@thi.ng/binary": "^2.0.2", - "@thi.ng/strings": "^1.8.1", + "@thi.ng/strings": "^1.8.2", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/cache/CHANGELOG.md b/packages/cache/CHANGELOG.md index d1956bdd9a..430006c4ad 100644 --- a/packages/cache/CHANGELOG.md +++ b/packages/cache/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.37](https://github.com/thi-ng/umbrella/compare/@thi.ng/cache@1.0.36...@thi.ng/cache@1.0.37) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/cache + + + + + ## [1.0.36](https://github.com/thi-ng/umbrella/compare/@thi.ng/cache@1.0.35...@thi.ng/cache@1.0.36) (2020-04-05) **Note:** Version bump only for package @thi.ng/cache diff --git a/packages/cache/package.json b/packages/cache/package.json index 2d82eecccf..1c46c72002 100644 --- a/packages/cache/package.json +++ b/packages/cache/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/cache", - "version": "1.0.36", + "version": "1.0.37", "description": "In-memory cache implementations with ES6 Map-like API and different eviction strategies", "module": "./index.js", "main": "./lib/index.js", @@ -38,9 +38,9 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", - "@thi.ng/dcons": "^2.2.9", - "@thi.ng/transducers": "^6.4.3", + "@thi.ng/api": "^6.10.0", + "@thi.ng/dcons": "^2.2.10", + "@thi.ng/transducers": "^6.4.4", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/color/CHANGELOG.md b/packages/color/CHANGELOG.md index f785ad5860..43ecc8f198 100644 --- a/packages/color/CHANGELOG.md +++ b/packages/color/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.1.13](https://github.com/thi-ng/umbrella/compare/@thi.ng/color@1.1.12...@thi.ng/color@1.1.13) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/color + + + + + ## [1.1.12](https://github.com/thi-ng/umbrella/compare/@thi.ng/color@1.1.11...@thi.ng/color@1.1.12) (2020-04-05) **Note:** Version bump only for package @thi.ng/color diff --git a/packages/color/package.json b/packages/color/package.json index 35da4a48c3..f0a9571ef7 100644 --- a/packages/color/package.json +++ b/packages/color/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/color", - "version": "1.1.12", + "version": "1.1.13", "description": "Array-based color ops, conversions, multi-color gradients, presets", "module": "./index.js", "main": "./lib/index.js", @@ -38,15 +38,15 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", + "@thi.ng/api": "^6.10.0", "@thi.ng/checks": "^2.6.1", - "@thi.ng/compose": "^1.4.1", - "@thi.ng/defmulti": "^1.2.9", + "@thi.ng/compose": "^1.4.2", + "@thi.ng/defmulti": "^1.2.10", "@thi.ng/errors": "^1.2.9", "@thi.ng/math": "^1.7.5", - "@thi.ng/strings": "^1.8.1", - "@thi.ng/transducers": "^6.4.3", - "@thi.ng/vectors": "^4.2.3", + "@thi.ng/strings": "^1.8.2", + "@thi.ng/transducers": "^6.4.4", + "@thi.ng/vectors": "^4.2.4", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/compare/CHANGELOG.md b/packages/compare/CHANGELOG.md index a2a64b8922..dcb209a5aa 100644 --- a/packages/compare/CHANGELOG.md +++ b/packages/compare/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.3.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/compare@1.3.0...@thi.ng/compare@1.3.1) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/compare + + + + + # [1.3.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/compare@1.2.2...@thi.ng/compare@1.3.0) (2020-04-05) diff --git a/packages/compare/package.json b/packages/compare/package.json index 00fdf5e913..1fc26c041f 100644 --- a/packages/compare/package.json +++ b/packages/compare/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/compare", - "version": "1.3.0", + "version": "1.3.1", "description": "Comparators with support for types implementing the @thi.ng/api/ICompare interface", "module": "./index.js", "main": "./lib/index.js", @@ -38,7 +38,7 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", + "@thi.ng/api": "^6.10.0", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/compose/CHANGELOG.md b/packages/compose/CHANGELOG.md index e25f98a575..ee35fa3bac 100644 --- a/packages/compose/CHANGELOG.md +++ b/packages/compose/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.4.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/compose@1.4.1...@thi.ng/compose@1.4.2) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/compose + + + + + ## [1.4.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/compose@1.4.0...@thi.ng/compose@1.4.1) (2020-04-05) **Note:** Version bump only for package @thi.ng/compose diff --git a/packages/compose/package.json b/packages/compose/package.json index 2463b7fd93..2e092951af 100644 --- a/packages/compose/package.json +++ b/packages/compose/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/compose", - "version": "1.4.1", + "version": "1.4.2", "description": "Optimized functional composition helpers", "module": "./index.js", "main": "./lib/index.js", @@ -38,7 +38,7 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", + "@thi.ng/api": "^6.10.0", "@thi.ng/errors": "^1.2.9", "tslib": "^1.11.1" }, diff --git a/packages/csp/CHANGELOG.md b/packages/csp/CHANGELOG.md index 2ee70feb7a..071594d9b5 100644 --- a/packages/csp/CHANGELOG.md +++ b/packages/csp/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.1.17](https://github.com/thi-ng/umbrella/compare/@thi.ng/csp@1.1.16...@thi.ng/csp@1.1.17) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/csp + + + + + ## [1.1.16](https://github.com/thi-ng/umbrella/compare/@thi.ng/csp@1.1.15...@thi.ng/csp@1.1.16) (2020-04-05) **Note:** Version bump only for package @thi.ng/csp diff --git a/packages/csp/package.json b/packages/csp/package.json index ee84cd7080..9ee18c35e5 100644 --- a/packages/csp/package.json +++ b/packages/csp/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/csp", - "version": "1.1.16", + "version": "1.1.17", "description": "ES6 promise based CSP primitives & operations", "module": "./index.js", "main": "./lib/index.js", @@ -42,12 +42,12 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", - "@thi.ng/arrays": "^0.6.1", + "@thi.ng/api": "^6.10.0", + "@thi.ng/arrays": "^0.6.2", "@thi.ng/checks": "^2.6.1", - "@thi.ng/dcons": "^2.2.9", + "@thi.ng/dcons": "^2.2.10", "@thi.ng/errors": "^1.2.9", - "@thi.ng/transducers": "^6.4.3", + "@thi.ng/transducers": "^6.4.4", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/dcons/CHANGELOG.md b/packages/dcons/CHANGELOG.md index 997cbb9f09..b601818ea9 100644 --- a/packages/dcons/CHANGELOG.md +++ b/packages/dcons/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.2.10](https://github.com/thi-ng/umbrella/compare/@thi.ng/dcons@2.2.9...@thi.ng/dcons@2.2.10) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/dcons + + + + + ## [2.2.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/dcons@2.2.8...@thi.ng/dcons@2.2.9) (2020-04-05) **Note:** Version bump only for package @thi.ng/dcons diff --git a/packages/dcons/package.json b/packages/dcons/package.json index afb6c10cf5..ad00289793 100644 --- a/packages/dcons/package.json +++ b/packages/dcons/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/dcons", - "version": "2.2.9", + "version": "2.2.10", "description": "Double-linked list with comprehensive set of operations", "module": "./index.js", "main": "./lib/index.js", @@ -38,13 +38,13 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", + "@thi.ng/api": "^6.10.0", "@thi.ng/checks": "^2.6.1", - "@thi.ng/compare": "^1.3.0", + "@thi.ng/compare": "^1.3.1", "@thi.ng/equiv": "^1.0.18", "@thi.ng/errors": "^1.2.9", - "@thi.ng/random": "^1.4.3", - "@thi.ng/transducers": "^6.4.3", + "@thi.ng/random": "^1.4.4", + "@thi.ng/transducers": "^6.4.4", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/defmulti/CHANGELOG.md b/packages/defmulti/CHANGELOG.md index 986710e4d2..614942534f 100644 --- a/packages/defmulti/CHANGELOG.md +++ b/packages/defmulti/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.2.10](https://github.com/thi-ng/umbrella/compare/@thi.ng/defmulti@1.2.9...@thi.ng/defmulti@1.2.10) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/defmulti + + + + + ## [1.2.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/defmulti@1.2.8...@thi.ng/defmulti@1.2.9) (2020-04-05) **Note:** Version bump only for package @thi.ng/defmulti diff --git a/packages/defmulti/package.json b/packages/defmulti/package.json index 95e22b0c47..cbe6f9ac53 100644 --- a/packages/defmulti/package.json +++ b/packages/defmulti/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/defmulti", - "version": "1.2.9", + "version": "1.2.10", "description": "Dynamic, extensible multiple dispatch via user supplied dispatch function.", "module": "./index.js", "main": "./lib/index.js", @@ -38,7 +38,7 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", + "@thi.ng/api": "^6.10.0", "@thi.ng/errors": "^1.2.9", "tslib": "^1.11.1" }, diff --git a/packages/dgraph-dot/CHANGELOG.md b/packages/dgraph-dot/CHANGELOG.md index 8991377538..d130543ba5 100644 --- a/packages/dgraph-dot/CHANGELOG.md +++ b/packages/dgraph-dot/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/dgraph-dot@0.1.1...@thi.ng/dgraph-dot@0.1.2) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/dgraph-dot + + + + + ## [0.1.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/dgraph-dot@0.1.0...@thi.ng/dgraph-dot@0.1.1) (2020-04-05) **Note:** Version bump only for package @thi.ng/dgraph-dot diff --git a/packages/dgraph-dot/README.md b/packages/dgraph-dot/README.md index e0a80e04ea..ca8d361197 100644 --- a/packages/dgraph-dot/README.md +++ b/packages/dgraph-dot/README.md @@ -22,7 +22,7 @@ This project is part of the Customizable Graphviz DOT serialization for [@thi.ng/dgraph](https://github.com/thi-ng/umbrella/tree/develop/packages/dgraph). This package acts as optional glue layer between the -[@thi.ng/graph](https://github.com/thi-ng/umbrella/tree/develop/packages/graph) +[@thi.ng/dgraph](https://github.com/thi-ng/umbrella/tree/develop/packages/dgraph) and [@thi.ng/dot](https://github.com/thi-ng/umbrella/tree/develop/packages/dot) packages. The latter is used to perform the actual diff --git a/packages/dgraph-dot/package.json b/packages/dgraph-dot/package.json index 921b21b50c..682873860b 100644 --- a/packages/dgraph-dot/package.json +++ b/packages/dgraph-dot/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/dgraph-dot", - "version": "0.1.1", + "version": "0.1.2", "description": "Customizable Graphviz DOT serialization for @thi.ng/dgraph", "module": "./index.js", "main": "./lib/index.js", @@ -38,9 +38,9 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", - "@thi.ng/dgraph": "^1.2.1", - "@thi.ng/dot": "^1.2.1" + "@thi.ng/api": "^6.10.0", + "@thi.ng/dgraph": "^1.2.2", + "@thi.ng/dot": "^1.2.2" }, "keywords": [ "ES6", diff --git a/packages/dgraph/CHANGELOG.md b/packages/dgraph/CHANGELOG.md index c438595772..3d32270555 100644 --- a/packages/dgraph/CHANGELOG.md +++ b/packages/dgraph/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.2.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/dgraph@1.2.1...@thi.ng/dgraph@1.2.2) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/dgraph + + + + + ## [1.2.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/dgraph@1.2.0...@thi.ng/dgraph@1.2.1) (2020-04-05) **Note:** Version bump only for package @thi.ng/dgraph diff --git a/packages/dgraph/package.json b/packages/dgraph/package.json index d4b2bfcdf5..3ff107303a 100644 --- a/packages/dgraph/package.json +++ b/packages/dgraph/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/dgraph", - "version": "1.2.1", + "version": "1.2.2", "description": "Type-agnostic directed acyclic graph (DAG) & graph operations", "module": "./index.js", "main": "./lib/index.js", @@ -38,11 +38,11 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", - "@thi.ng/associative": "^4.0.1", + "@thi.ng/api": "^6.10.0", + "@thi.ng/associative": "^4.0.2", "@thi.ng/equiv": "^1.0.18", "@thi.ng/errors": "^1.2.9", - "@thi.ng/transducers": "^6.4.3", + "@thi.ng/transducers": "^6.4.4", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/diff/CHANGELOG.md b/packages/diff/CHANGELOG.md index 263dbe828b..0c5596ebc1 100644 --- a/packages/diff/CHANGELOG.md +++ b/packages/diff/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.2.15](https://github.com/thi-ng/umbrella/compare/@thi.ng/diff@3.2.14...@thi.ng/diff@3.2.15) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/diff + + + + + ## [3.2.14](https://github.com/thi-ng/umbrella/compare/@thi.ng/diff@3.2.13...@thi.ng/diff@3.2.14) (2020-04-05) **Note:** Version bump only for package @thi.ng/diff diff --git a/packages/diff/package.json b/packages/diff/package.json index c8baefe478..6f39b91f31 100644 --- a/packages/diff/package.json +++ b/packages/diff/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/diff", - "version": "3.2.14", + "version": "3.2.15", "description": "Customizable diff implementations for arrays (sequential) & objects (associative), with or without linear edit logs", "module": "./index.js", "main": "./lib/index.js", @@ -37,7 +37,7 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", + "@thi.ng/api": "^6.10.0", "@thi.ng/equiv": "^1.0.18", "tslib": "^1.11.1" }, diff --git a/packages/dl-asset/CHANGELOG.md b/packages/dl-asset/CHANGELOG.md index ab884b2241..8e3522b97f 100644 --- a/packages/dl-asset/CHANGELOG.md +++ b/packages/dl-asset/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.3.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/dl-asset@0.3.3...@thi.ng/dl-asset@0.3.4) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/dl-asset + + + + + ## [0.3.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/dl-asset@0.3.2...@thi.ng/dl-asset@0.3.3) (2020-04-05) **Note:** Version bump only for package @thi.ng/dl-asset diff --git a/packages/dl-asset/package.json b/packages/dl-asset/package.json index 3ec2e4ee1a..a04d9dd032 100644 --- a/packages/dl-asset/package.json +++ b/packages/dl-asset/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/dl-asset", - "version": "0.3.3", + "version": "0.3.4", "description": "Local asset download for web apps, with automatic MIME type detection", "module": "./index.js", "main": "./lib/index.js", @@ -38,9 +38,9 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", + "@thi.ng/api": "^6.10.0", "@thi.ng/checks": "^2.6.1", - "@thi.ng/mime": "^0.1.5", + "@thi.ng/mime": "^0.1.6", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/dot/CHANGELOG.md b/packages/dot/CHANGELOG.md index da8657c6f6..7869ce08b2 100644 --- a/packages/dot/CHANGELOG.md +++ b/packages/dot/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.2.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/dot@1.2.1...@thi.ng/dot@1.2.2) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/dot + + + + + ## [1.2.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/dot@1.2.0...@thi.ng/dot@1.2.1) (2020-04-05) **Note:** Version bump only for package @thi.ng/dot diff --git a/packages/dot/package.json b/packages/dot/package.json index 293dcb98e3..48fcb25ee0 100644 --- a/packages/dot/package.json +++ b/packages/dot/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/dot", - "version": "1.2.1", + "version": "1.2.2", "description": "Graphviz document abstraction & serialization to DOT format", "module": "./index.js", "main": "./lib/index.js", @@ -38,7 +38,7 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", + "@thi.ng/api": "^6.10.0", "@thi.ng/checks": "^2.6.1", "tslib": "^1.11.1" }, diff --git a/packages/dsp-io-wav/CHANGELOG.md b/packages/dsp-io-wav/CHANGELOG.md index 5274f68173..eb0a0c3e38 100644 --- a/packages/dsp-io-wav/CHANGELOG.md +++ b/packages/dsp-io-wav/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/dsp-io-wav@0.1.6...@thi.ng/dsp-io-wav@0.1.7) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/dsp-io-wav + + + + + ## [0.1.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/dsp-io-wav@0.1.5...@thi.ng/dsp-io-wav@0.1.6) (2020-04-05) **Note:** Version bump only for package @thi.ng/dsp-io-wav diff --git a/packages/dsp-io-wav/package.json b/packages/dsp-io-wav/package.json index f27598a0c5..156c4ed883 100644 --- a/packages/dsp-io-wav/package.json +++ b/packages/dsp-io-wav/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/dsp-io-wav", - "version": "0.1.6", + "version": "0.1.7", "description": "WAV file format generation", "module": "./index.js", "main": "./lib/index.js", @@ -38,10 +38,10 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", + "@thi.ng/api": "^6.10.0", "@thi.ng/binary": "^2.0.2", - "@thi.ng/transducers": "^6.4.3", - "@thi.ng/transducers-binary": "^0.5.6", + "@thi.ng/transducers": "^6.4.4", + "@thi.ng/transducers-binary": "^0.5.7", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/dsp/CHANGELOG.md b/packages/dsp/CHANGELOG.md index cfe404a21d..9ff7fd1ce0 100644 --- a/packages/dsp/CHANGELOG.md +++ b/packages/dsp/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.0.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/dsp@2.0.8...@thi.ng/dsp@2.0.9) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/dsp + + + + + ## [2.0.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/dsp@2.0.7...@thi.ng/dsp@2.0.8) (2020-04-05) **Note:** Version bump only for package @thi.ng/dsp diff --git a/packages/dsp/package.json b/packages/dsp/package.json index d5e9652257..8d5268f9e5 100644 --- a/packages/dsp/package.json +++ b/packages/dsp/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/dsp", - "version": "2.0.8", + "version": "2.0.9", "description": "Composable signal generators, oscillators, filters, FFT, spectrum, windowing & related DSP utils", "module": "./index.js", "main": "./lib/index.js", @@ -38,10 +38,10 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", + "@thi.ng/api": "^6.10.0", "@thi.ng/checks": "^2.6.1", "@thi.ng/math": "^1.7.5", - "@thi.ng/transducers": "^6.4.3", + "@thi.ng/transducers": "^6.4.4", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/dynvar/CHANGELOG.md b/packages/dynvar/CHANGELOG.md index 079f3e1898..428239023b 100644 --- a/packages/dynvar/CHANGELOG.md +++ b/packages/dynvar/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/dynvar@0.1.7...@thi.ng/dynvar@0.1.8) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/dynvar + + + + + ## [0.1.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/dynvar@0.1.6...@thi.ng/dynvar@0.1.7) (2020-04-05) **Note:** Version bump only for package @thi.ng/dynvar diff --git a/packages/dynvar/package.json b/packages/dynvar/package.json index 72be516051..ecd96f0400 100644 --- a/packages/dynvar/package.json +++ b/packages/dynvar/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/dynvar", - "version": "0.1.7", + "version": "0.1.8", "description": "Dynamically scoped variable bindings", "module": "./index.js", "main": "./lib/index.js", @@ -38,7 +38,7 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", + "@thi.ng/api": "^6.10.0", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/ecs/CHANGELOG.md b/packages/ecs/CHANGELOG.md index 73315e93af..5da9badc98 100644 --- a/packages/ecs/CHANGELOG.md +++ b/packages/ecs/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.3.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/ecs@0.3.8...@thi.ng/ecs@0.3.9) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/ecs + + + + + ## [0.3.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/ecs@0.3.7...@thi.ng/ecs@0.3.8) (2020-04-05) **Note:** Version bump only for package @thi.ng/ecs diff --git a/packages/ecs/package.json b/packages/ecs/package.json index d6bee09ff9..fb72ba21f8 100644 --- a/packages/ecs/package.json +++ b/packages/ecs/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/ecs", - "version": "0.3.8", + "version": "0.3.9", "description": "Entity Component System based around typed arrays & sparse sets", "module": "./index.js", "main": "./lib/index.js", @@ -39,13 +39,13 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", - "@thi.ng/associative": "^4.0.1", + "@thi.ng/api": "^6.10.0", + "@thi.ng/associative": "^4.0.2", "@thi.ng/binary": "^2.0.2", "@thi.ng/checks": "^2.6.1", - "@thi.ng/dcons": "^2.2.9", - "@thi.ng/idgen": "^0.2.7", - "@thi.ng/transducers": "^6.4.3", + "@thi.ng/dcons": "^2.2.10", + "@thi.ng/idgen": "^0.2.8", + "@thi.ng/transducers": "^6.4.4", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/fsm/CHANGELOG.md b/packages/fsm/CHANGELOG.md index 5900e67356..b6c380695f 100644 --- a/packages/fsm/CHANGELOG.md +++ b/packages/fsm/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.4.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/fsm@2.4.2...@thi.ng/fsm@2.4.3) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/fsm + + + + + ## [2.4.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/fsm@2.4.1...@thi.ng/fsm@2.4.2) (2020-04-05) **Note:** Version bump only for package @thi.ng/fsm diff --git a/packages/fsm/package.json b/packages/fsm/package.json index c095f94a2c..d89c6b3c8a 100644 --- a/packages/fsm/package.json +++ b/packages/fsm/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/fsm", - "version": "2.4.2", + "version": "2.4.3", "description": "Composable primitives for building declarative, transducer based Finite-State Machines & matchers for arbitrary data streams", "module": "./index.js", "main": "./lib/index.js", @@ -38,12 +38,12 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", - "@thi.ng/arrays": "^0.6.1", + "@thi.ng/api": "^6.10.0", + "@thi.ng/arrays": "^0.6.2", "@thi.ng/equiv": "^1.0.18", "@thi.ng/errors": "^1.2.9", - "@thi.ng/strings": "^1.8.1", - "@thi.ng/transducers": "^6.4.3", + "@thi.ng/strings": "^1.8.2", + "@thi.ng/transducers": "^6.4.4", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/geom-accel/CHANGELOG.md b/packages/geom-accel/CHANGELOG.md index 36a389c979..35504b6005 100644 --- a/packages/geom-accel/CHANGELOG.md +++ b/packages/geom-accel/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.0.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-accel@2.0.8...@thi.ng/geom-accel@2.0.9) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/geom-accel + + + + + ## [2.0.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-accel@2.0.7...@thi.ng/geom-accel@2.0.8) (2020-04-05) **Note:** Version bump only for package @thi.ng/geom-accel diff --git a/packages/geom-accel/package.json b/packages/geom-accel/package.json index 835bdad849..7b0e0ddbb4 100644 --- a/packages/geom-accel/package.json +++ b/packages/geom-accel/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-accel", - "version": "2.0.8", + "version": "2.0.9", "description": "n-D spatial indexing data structures", "module": "./index.js", "main": "./lib/index.js", @@ -39,15 +39,15 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", - "@thi.ng/arrays": "^0.6.1", + "@thi.ng/api": "^6.10.0", + "@thi.ng/arrays": "^0.6.2", "@thi.ng/equiv": "^1.0.18", - "@thi.ng/geom-api": "^1.0.8", - "@thi.ng/geom-isec": "^0.4.8", - "@thi.ng/heaps": "^1.2.8", + "@thi.ng/geom-api": "^1.0.9", + "@thi.ng/geom-isec": "^0.4.9", + "@thi.ng/heaps": "^1.2.9", "@thi.ng/math": "^1.7.5", - "@thi.ng/transducers": "^6.4.3", - "@thi.ng/vectors": "^4.2.3", + "@thi.ng/transducers": "^6.4.4", + "@thi.ng/vectors": "^4.2.4", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/geom-api/CHANGELOG.md b/packages/geom-api/CHANGELOG.md index 9b67261158..40c57e45ae 100644 --- a/packages/geom-api/CHANGELOG.md +++ b/packages/geom-api/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-api@1.0.8...@thi.ng/geom-api@1.0.9) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/geom-api + + + + + ## [1.0.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-api@1.0.7...@thi.ng/geom-api@1.0.8) (2020-04-05) **Note:** Version bump only for package @thi.ng/geom-api diff --git a/packages/geom-api/package.json b/packages/geom-api/package.json index 3b1a630267..2ca4a8cb05 100644 --- a/packages/geom-api/package.json +++ b/packages/geom-api/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-api", - "version": "1.0.8", + "version": "1.0.9", "description": "Shared type & interface declarations for @thi.ng/geom packages", "module": "./index.js", "main": "./lib/index.js", @@ -38,8 +38,8 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", - "@thi.ng/vectors": "^4.2.3", + "@thi.ng/api": "^6.10.0", + "@thi.ng/vectors": "^4.2.4", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/geom-arc/CHANGELOG.md b/packages/geom-arc/CHANGELOG.md index 526fb5a869..85c826fd15 100644 --- a/packages/geom-arc/CHANGELOG.md +++ b/packages/geom-arc/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.2.20](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-arc@0.2.19...@thi.ng/geom-arc@0.2.20) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/geom-arc + + + + + ## [0.2.19](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-arc@0.2.18...@thi.ng/geom-arc@0.2.19) (2020-04-05) **Note:** Version bump only for package @thi.ng/geom-arc diff --git a/packages/geom-arc/package.json b/packages/geom-arc/package.json index a20b1f6420..f2e3dd06f1 100644 --- a/packages/geom-arc/package.json +++ b/packages/geom-arc/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-arc", - "version": "0.2.19", + "version": "0.2.20", "description": "2D circular / elliptic arc operations", "module": "./index.js", "main": "./lib/index.js", @@ -39,10 +39,10 @@ }, "dependencies": { "@thi.ng/checks": "^2.6.1", - "@thi.ng/geom-api": "^1.0.8", - "@thi.ng/geom-resample": "^0.2.19", + "@thi.ng/geom-api": "^1.0.9", + "@thi.ng/geom-resample": "^0.2.20", "@thi.ng/math": "^1.7.5", - "@thi.ng/vectors": "^4.2.3", + "@thi.ng/vectors": "^4.2.4", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/geom-clip-line/CHANGELOG.md b/packages/geom-clip-line/CHANGELOG.md index 0e0fc22fd7..e9f7fc0ef2 100644 --- a/packages/geom-clip-line/CHANGELOG.md +++ b/packages/geom-clip-line/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-clip-line@1.0.6...@thi.ng/geom-clip-line@1.0.7) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/geom-clip-line + + + + + ## [1.0.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-clip-line@1.0.5...@thi.ng/geom-clip-line@1.0.6) (2020-04-05) **Note:** Version bump only for package @thi.ng/geom-clip-line diff --git a/packages/geom-clip-line/package.json b/packages/geom-clip-line/package.json index 02d1e86d6e..55b08c016d 100644 --- a/packages/geom-clip-line/package.json +++ b/packages/geom-clip-line/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-clip-line", - "version": "1.0.6", + "version": "1.0.7", "description": "2D line clipping (Liang-Barsky)", "module": "./index.js", "main": "./lib/index.js", @@ -38,7 +38,7 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/vectors": "^4.2.3", + "@thi.ng/vectors": "^4.2.4", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/geom-clip-poly/CHANGELOG.md b/packages/geom-clip-poly/CHANGELOG.md index de6bee41db..c192618f5e 100644 --- a/packages/geom-clip-poly/CHANGELOG.md +++ b/packages/geom-clip-poly/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-clip-poly@1.0.6...@thi.ng/geom-clip-poly@1.0.7) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/geom-clip-poly + + + + + ## [1.0.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-clip-poly@1.0.5...@thi.ng/geom-clip-poly@1.0.6) (2020-04-05) **Note:** Version bump only for package @thi.ng/geom-clip-poly diff --git a/packages/geom-clip-poly/package.json b/packages/geom-clip-poly/package.json index d4ba97b6dc..b55576a6c1 100644 --- a/packages/geom-clip-poly/package.json +++ b/packages/geom-clip-poly/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-clip-poly", - "version": "1.0.6", + "version": "1.0.7", "description": "2D convex polygon clipping (Sutherland-Hodgeman)", "module": "./index.js", "main": "./lib/index.js", @@ -38,10 +38,10 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/geom-isec": "^0.4.8", - "@thi.ng/geom-poly-utils": "^0.1.37", + "@thi.ng/geom-isec": "^0.4.9", + "@thi.ng/geom-poly-utils": "^0.1.38", "@thi.ng/math": "^1.7.5", - "@thi.ng/vectors": "^4.2.3", + "@thi.ng/vectors": "^4.2.4", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/geom-closest-point/CHANGELOG.md b/packages/geom-closest-point/CHANGELOG.md index 40e4955fbc..029ed10e90 100644 --- a/packages/geom-closest-point/CHANGELOG.md +++ b/packages/geom-closest-point/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.3.20](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-closest-point@0.3.19...@thi.ng/geom-closest-point@0.3.20) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/geom-closest-point + + + + + ## [0.3.19](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-closest-point@0.3.18...@thi.ng/geom-closest-point@0.3.19) (2020-04-05) **Note:** Version bump only for package @thi.ng/geom-closest-point diff --git a/packages/geom-closest-point/package.json b/packages/geom-closest-point/package.json index 605d7081b4..9a10b37218 100644 --- a/packages/geom-closest-point/package.json +++ b/packages/geom-closest-point/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-closest-point", - "version": "0.3.19", + "version": "0.3.20", "description": "2D / 3D closest point / proximity helpers", "module": "./index.js", "main": "./lib/index.js", @@ -39,7 +39,7 @@ }, "dependencies": { "@thi.ng/math": "^1.7.5", - "@thi.ng/vectors": "^4.2.3", + "@thi.ng/vectors": "^4.2.4", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/geom-hull/CHANGELOG.md b/packages/geom-hull/CHANGELOG.md index a5d99490a3..fecda71bcc 100644 --- a/packages/geom-hull/CHANGELOG.md +++ b/packages/geom-hull/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.0.40](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-hull@0.0.39...@thi.ng/geom-hull@0.0.40) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/geom-hull + + + + + ## [0.0.39](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-hull@0.0.38...@thi.ng/geom-hull@0.0.39) (2020-04-05) **Note:** Version bump only for package @thi.ng/geom-hull diff --git a/packages/geom-hull/package.json b/packages/geom-hull/package.json index e50d14261e..2af70b1b7b 100644 --- a/packages/geom-hull/package.json +++ b/packages/geom-hull/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-hull", - "version": "0.0.39", + "version": "0.0.40", "description": "Fast 2D convex hull (Graham Scan)", "module": "./index.js", "main": "./lib/index.js", @@ -39,7 +39,7 @@ }, "dependencies": { "@thi.ng/math": "^1.7.5", - "@thi.ng/vectors": "^4.2.3", + "@thi.ng/vectors": "^4.2.4", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/geom-isec/CHANGELOG.md b/packages/geom-isec/CHANGELOG.md index 51fcc84244..c58100db71 100644 --- a/packages/geom-isec/CHANGELOG.md +++ b/packages/geom-isec/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.4.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-isec@0.4.8...@thi.ng/geom-isec@0.4.9) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/geom-isec + + + + + ## [0.4.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-isec@0.4.7...@thi.ng/geom-isec@0.4.8) (2020-04-05) **Note:** Version bump only for package @thi.ng/geom-isec diff --git a/packages/geom-isec/package.json b/packages/geom-isec/package.json index e2cbf835a6..d4ca2ee14d 100644 --- a/packages/geom-isec/package.json +++ b/packages/geom-isec/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-isec", - "version": "0.4.8", + "version": "0.4.9", "description": "2D/3D shape intersection checks", "module": "./index.js", "main": "./lib/index.js", @@ -38,11 +38,11 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", - "@thi.ng/geom-api": "^1.0.8", - "@thi.ng/geom-closest-point": "^0.3.19", + "@thi.ng/api": "^6.10.0", + "@thi.ng/geom-api": "^1.0.9", + "@thi.ng/geom-closest-point": "^0.3.20", "@thi.ng/math": "^1.7.5", - "@thi.ng/vectors": "^4.2.3", + "@thi.ng/vectors": "^4.2.4", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/geom-isoline/CHANGELOG.md b/packages/geom-isoline/CHANGELOG.md index e6e62db024..2677c82b17 100644 --- a/packages/geom-isoline/CHANGELOG.md +++ b/packages/geom-isoline/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.38](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-isoline@0.1.37...@thi.ng/geom-isoline@0.1.38) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/geom-isoline + + + + + ## [0.1.37](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-isoline@0.1.36...@thi.ng/geom-isoline@0.1.37) (2020-04-05) **Note:** Version bump only for package @thi.ng/geom-isoline diff --git a/packages/geom-isoline/package.json b/packages/geom-isoline/package.json index a0b8b3dbfd..1df5352a53 100644 --- a/packages/geom-isoline/package.json +++ b/packages/geom-isoline/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-isoline", - "version": "0.1.37", + "version": "0.1.38", "description": "Fast 2D contour line extraction / generation", "module": "./index.js", "main": "./lib/index.js", @@ -38,8 +38,8 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/transducers": "^6.4.3", - "@thi.ng/vectors": "^4.2.3", + "@thi.ng/transducers": "^6.4.4", + "@thi.ng/vectors": "^4.2.4", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/geom-poly-utils/CHANGELOG.md b/packages/geom-poly-utils/CHANGELOG.md index 51f2302173..666200d1ff 100644 --- a/packages/geom-poly-utils/CHANGELOG.md +++ b/packages/geom-poly-utils/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.38](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-poly-utils@0.1.37...@thi.ng/geom-poly-utils@0.1.38) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/geom-poly-utils + + + + + ## [0.1.37](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-poly-utils@0.1.36...@thi.ng/geom-poly-utils@0.1.37) (2020-04-05) **Note:** Version bump only for package @thi.ng/geom-poly-utils diff --git a/packages/geom-poly-utils/package.json b/packages/geom-poly-utils/package.json index 683564bcd1..0619cb8e39 100644 --- a/packages/geom-poly-utils/package.json +++ b/packages/geom-poly-utils/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-poly-utils", - "version": "0.1.37", + "version": "0.1.38", "description": "2D polygon / triangle analysis & processing utilities", "module": "./index.js", "main": "./lib/index.js", @@ -39,9 +39,9 @@ }, "dependencies": { "@thi.ng/errors": "^1.2.9", - "@thi.ng/geom-api": "^1.0.8", + "@thi.ng/geom-api": "^1.0.9", "@thi.ng/math": "^1.7.5", - "@thi.ng/vectors": "^4.2.3", + "@thi.ng/vectors": "^4.2.4", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/geom-resample/CHANGELOG.md b/packages/geom-resample/CHANGELOG.md index fff6e7ef8c..7f4d2c1d7e 100644 --- a/packages/geom-resample/CHANGELOG.md +++ b/packages/geom-resample/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.2.20](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-resample@0.2.19...@thi.ng/geom-resample@0.2.20) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/geom-resample + + + + + ## [0.2.19](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-resample@0.2.18...@thi.ng/geom-resample@0.2.19) (2020-04-05) **Note:** Version bump only for package @thi.ng/geom-resample diff --git a/packages/geom-resample/package.json b/packages/geom-resample/package.json index 630d41ae0f..11b4490d13 100644 --- a/packages/geom-resample/package.json +++ b/packages/geom-resample/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-resample", - "version": "0.2.19", + "version": "0.2.20", "description": "Customizable nD polyline interpolation, re-sampling, splitting & nearest point computation", "module": "./index.js", "main": "./lib/index.js", @@ -39,10 +39,10 @@ }, "dependencies": { "@thi.ng/checks": "^2.6.1", - "@thi.ng/geom-api": "^1.0.8", - "@thi.ng/geom-closest-point": "^0.3.19", + "@thi.ng/geom-api": "^1.0.9", + "@thi.ng/geom-closest-point": "^0.3.20", "@thi.ng/math": "^1.7.5", - "@thi.ng/vectors": "^4.2.3", + "@thi.ng/vectors": "^4.2.4", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/geom-splines/CHANGELOG.md b/packages/geom-splines/CHANGELOG.md index db43b4004e..e2f0350331 100644 --- a/packages/geom-splines/CHANGELOG.md +++ b/packages/geom-splines/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.5.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-splines@0.5.6...@thi.ng/geom-splines@0.5.7) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/geom-splines + + + + + ## [0.5.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-splines@0.5.5...@thi.ng/geom-splines@0.5.6) (2020-04-05) **Note:** Version bump only for package @thi.ng/geom-splines diff --git a/packages/geom-splines/package.json b/packages/geom-splines/package.json index d93e9f39fd..3f51813102 100644 --- a/packages/geom-splines/package.json +++ b/packages/geom-splines/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-splines", - "version": "0.5.6", + "version": "0.5.7", "description": "nD cubic & quadratic curve analysis, conversion, interpolation, splitting", "module": "./index.js", "main": "./lib/index.js", @@ -39,11 +39,11 @@ }, "dependencies": { "@thi.ng/checks": "^2.6.1", - "@thi.ng/geom-api": "^1.0.8", - "@thi.ng/geom-arc": "^0.2.19", - "@thi.ng/geom-resample": "^0.2.19", + "@thi.ng/geom-api": "^1.0.9", + "@thi.ng/geom-arc": "^0.2.20", + "@thi.ng/geom-resample": "^0.2.20", "@thi.ng/math": "^1.7.5", - "@thi.ng/vectors": "^4.2.3", + "@thi.ng/vectors": "^4.2.4", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/geom-subdiv-curve/CHANGELOG.md b/packages/geom-subdiv-curve/CHANGELOG.md index 041f3e3a6d..4cefc309d1 100644 --- a/packages/geom-subdiv-curve/CHANGELOG.md +++ b/packages/geom-subdiv-curve/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.37](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-subdiv-curve@0.1.36...@thi.ng/geom-subdiv-curve@0.1.37) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/geom-subdiv-curve + + + + + ## [0.1.36](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-subdiv-curve@0.1.35...@thi.ng/geom-subdiv-curve@0.1.36) (2020-04-05) **Note:** Version bump only for package @thi.ng/geom-subdiv-curve diff --git a/packages/geom-subdiv-curve/package.json b/packages/geom-subdiv-curve/package.json index 5c046de713..3dcb80f19d 100644 --- a/packages/geom-subdiv-curve/package.json +++ b/packages/geom-subdiv-curve/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-subdiv-curve", - "version": "0.1.36", + "version": "0.1.37", "description": "Freely customizable, iterative nD subdivision curves for open / closed geometries", "module": "./index.js", "main": "./lib/index.js", @@ -38,9 +38,9 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/geom-api": "^1.0.8", - "@thi.ng/transducers": "^6.4.3", - "@thi.ng/vectors": "^4.2.3", + "@thi.ng/geom-api": "^1.0.9", + "@thi.ng/transducers": "^6.4.4", + "@thi.ng/vectors": "^4.2.4", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/geom-tessellate/CHANGELOG.md b/packages/geom-tessellate/CHANGELOG.md index 8ae1fbe67e..8af9cfdfd3 100644 --- a/packages/geom-tessellate/CHANGELOG.md +++ b/packages/geom-tessellate/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.2.20](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-tessellate@0.2.19...@thi.ng/geom-tessellate@0.2.20) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/geom-tessellate + + + + + ## [0.2.19](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-tessellate@0.2.18...@thi.ng/geom-tessellate@0.2.19) (2020-04-05) **Note:** Version bump only for package @thi.ng/geom-tessellate diff --git a/packages/geom-tessellate/package.json b/packages/geom-tessellate/package.json index b6a62aab71..f7100e2b3a 100644 --- a/packages/geom-tessellate/package.json +++ b/packages/geom-tessellate/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-tessellate", - "version": "0.2.19", + "version": "0.2.20", "description": "2D/3D convex polygon tessellators", "module": "./index.js", "main": "./lib/index.js", @@ -39,11 +39,11 @@ }, "dependencies": { "@thi.ng/checks": "^2.6.1", - "@thi.ng/geom-api": "^1.0.8", - "@thi.ng/geom-isec": "^0.4.8", - "@thi.ng/geom-poly-utils": "^0.1.37", - "@thi.ng/transducers": "^6.4.3", - "@thi.ng/vectors": "^4.2.3", + "@thi.ng/geom-api": "^1.0.9", + "@thi.ng/geom-isec": "^0.4.9", + "@thi.ng/geom-poly-utils": "^0.1.38", + "@thi.ng/transducers": "^6.4.4", + "@thi.ng/vectors": "^4.2.4", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/geom-voronoi/CHANGELOG.md b/packages/geom-voronoi/CHANGELOG.md index e0f768c460..dbf18af691 100644 --- a/packages/geom-voronoi/CHANGELOG.md +++ b/packages/geom-voronoi/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.38](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-voronoi@0.1.37...@thi.ng/geom-voronoi@0.1.38) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/geom-voronoi + + + + + ## [0.1.37](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-voronoi@0.1.36...@thi.ng/geom-voronoi@0.1.37) (2020-04-05) **Note:** Version bump only for package @thi.ng/geom-voronoi diff --git a/packages/geom-voronoi/package.json b/packages/geom-voronoi/package.json index 99191c4e52..5f7e445213 100644 --- a/packages/geom-voronoi/package.json +++ b/packages/geom-voronoi/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom-voronoi", - "version": "0.1.37", + "version": "0.1.38", "description": "Fast, incremental 2D Delaunay & Voronoi mesh implementation", "module": "./index.js", "main": "./lib/index.js", @@ -38,15 +38,15 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", + "@thi.ng/api": "^6.10.0", "@thi.ng/checks": "^2.6.1", - "@thi.ng/geom-clip-line": "^1.0.6", - "@thi.ng/geom-clip-poly": "^1.0.6", - "@thi.ng/geom-isec": "^0.4.8", - "@thi.ng/geom-poly-utils": "^0.1.37", + "@thi.ng/geom-clip-line": "^1.0.7", + "@thi.ng/geom-clip-poly": "^1.0.7", + "@thi.ng/geom-isec": "^0.4.9", + "@thi.ng/geom-poly-utils": "^0.1.38", "@thi.ng/math": "^1.7.5", "@thi.ng/quad-edge": "^0.2.11", - "@thi.ng/vectors": "^4.2.3", + "@thi.ng/vectors": "^4.2.4", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/geom/CHANGELOG.md b/packages/geom/CHANGELOG.md index dee008bd90..5661453732 100644 --- a/packages/geom/CHANGELOG.md +++ b/packages/geom/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.8.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom@1.8.7...@thi.ng/geom@1.8.8) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/geom + + + + + ## [1.8.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom@1.8.6...@thi.ng/geom@1.8.7) (2020-04-05) **Note:** Version bump only for package @thi.ng/geom diff --git a/packages/geom/package.json b/packages/geom/package.json index fa5978101b..61fa9eb536 100644 --- a/packages/geom/package.json +++ b/packages/geom/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/geom", - "version": "1.8.7", + "version": "1.8.8", "description": "Functional, polymorphic API for 2D geometry types & SVG generation", "module": "./index.js", "main": "./lib/index.js", @@ -38,32 +38,32 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", - "@thi.ng/arrays": "^0.6.1", + "@thi.ng/api": "^6.10.0", + "@thi.ng/arrays": "^0.6.2", "@thi.ng/checks": "^2.6.1", - "@thi.ng/compose": "^1.4.1", - "@thi.ng/defmulti": "^1.2.9", + "@thi.ng/compose": "^1.4.2", + "@thi.ng/defmulti": "^1.2.10", "@thi.ng/equiv": "^1.0.18", "@thi.ng/errors": "^1.2.9", - "@thi.ng/geom-api": "^1.0.8", - "@thi.ng/geom-arc": "^0.2.19", - "@thi.ng/geom-clip-line": "^1.0.6", - "@thi.ng/geom-clip-poly": "^1.0.6", - "@thi.ng/geom-closest-point": "^0.3.19", - "@thi.ng/geom-hull": "^0.0.39", - "@thi.ng/geom-isec": "^0.4.8", - "@thi.ng/geom-poly-utils": "^0.1.37", - "@thi.ng/geom-resample": "^0.2.19", - "@thi.ng/geom-splines": "^0.5.6", - "@thi.ng/geom-subdiv-curve": "^0.1.36", - "@thi.ng/geom-tessellate": "^0.2.19", - "@thi.ng/hiccup": "^3.2.16", - "@thi.ng/hiccup-svg": "^3.4.9", + "@thi.ng/geom-api": "^1.0.9", + "@thi.ng/geom-arc": "^0.2.20", + "@thi.ng/geom-clip-line": "^1.0.7", + "@thi.ng/geom-clip-poly": "^1.0.7", + "@thi.ng/geom-closest-point": "^0.3.20", + "@thi.ng/geom-hull": "^0.0.40", + "@thi.ng/geom-isec": "^0.4.9", + "@thi.ng/geom-poly-utils": "^0.1.38", + "@thi.ng/geom-resample": "^0.2.20", + "@thi.ng/geom-splines": "^0.5.7", + "@thi.ng/geom-subdiv-curve": "^0.1.37", + "@thi.ng/geom-tessellate": "^0.2.20", + "@thi.ng/hiccup": "^3.2.17", + "@thi.ng/hiccup-svg": "^3.4.10", "@thi.ng/math": "^1.7.5", - "@thi.ng/matrices": "^0.6.6", - "@thi.ng/random": "^1.4.3", - "@thi.ng/transducers": "^6.4.3", - "@thi.ng/vectors": "^4.2.3", + "@thi.ng/matrices": "^0.6.7", + "@thi.ng/random": "^1.4.4", + "@thi.ng/transducers": "^6.4.4", + "@thi.ng/vectors": "^4.2.4", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/gp/CHANGELOG.md b/packages/gp/CHANGELOG.md index c95712d9b9..7d54e7157b 100644 --- a/packages/gp/CHANGELOG.md +++ b/packages/gp/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.10](https://github.com/thi-ng/umbrella/compare/@thi.ng/gp@0.1.9...@thi.ng/gp@0.1.10) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/gp + + + + + ## [0.1.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/gp@0.1.8...@thi.ng/gp@0.1.9) (2020-04-05) **Note:** Version bump only for package @thi.ng/gp diff --git a/packages/gp/package.json b/packages/gp/package.json index 5dd6284fde..1bd179d312 100644 --- a/packages/gp/package.json +++ b/packages/gp/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/gp", - "version": "0.1.9", + "version": "0.1.10", "description": "Genetic programming helpers & strategies (tree based & multi-expression programming)", "module": "./index.js", "main": "./lib/index.js", @@ -38,11 +38,11 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", + "@thi.ng/api": "^6.10.0", "@thi.ng/math": "^1.7.5", - "@thi.ng/random": "^1.4.3", - "@thi.ng/transducers": "^6.4.3", - "@thi.ng/zipper": "^0.1.9", + "@thi.ng/random": "^1.4.4", + "@thi.ng/transducers": "^6.4.4", + "@thi.ng/zipper": "^0.1.10", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/grid-iterators/CHANGELOG.md b/packages/grid-iterators/CHANGELOG.md index ac60402f39..dabc6dd151 100644 --- a/packages/grid-iterators/CHANGELOG.md +++ b/packages/grid-iterators/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.3.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/grid-iterators@0.3.6...@thi.ng/grid-iterators@0.3.7) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/grid-iterators + + + + + ## [0.3.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/grid-iterators@0.3.5...@thi.ng/grid-iterators@0.3.6) (2020-04-05) **Note:** Version bump only for package @thi.ng/grid-iterators diff --git a/packages/grid-iterators/package.json b/packages/grid-iterators/package.json index 6658787730..cadb896701 100644 --- a/packages/grid-iterators/package.json +++ b/packages/grid-iterators/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/grid-iterators", - "version": "0.3.6", + "version": "0.3.7", "description": "2D grid iterators w/ multiple orderings", "module": "./index.js", "main": "./lib/index.js", @@ -39,11 +39,11 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/arrays": "^0.6.1", + "@thi.ng/arrays": "^0.6.2", "@thi.ng/binary": "^2.0.2", - "@thi.ng/morton": "^2.0.7", - "@thi.ng/random": "^1.4.3", - "@thi.ng/transducers": "^6.4.3", + "@thi.ng/morton": "^2.0.8", + "@thi.ng/random": "^1.4.4", + "@thi.ng/transducers": "^6.4.4", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/hdom-canvas/CHANGELOG.md b/packages/hdom-canvas/CHANGELOG.md index 1e550cfedb..557eb515e3 100644 --- a/packages/hdom-canvas/CHANGELOG.md +++ b/packages/hdom-canvas/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.4.13](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-canvas@2.4.12...@thi.ng/hdom-canvas@2.4.13) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/hdom-canvas + + + + + +## [2.4.12](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-canvas@2.4.11...@thi.ng/hdom-canvas@2.4.12) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/hdom-canvas + + + + + ## [2.4.11](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-canvas@2.4.10...@thi.ng/hdom-canvas@2.4.11) (2020-04-05) **Note:** Version bump only for package @thi.ng/hdom-canvas diff --git a/packages/hdom-canvas/package.json b/packages/hdom-canvas/package.json index 0cf8d6b5e9..f3746d56c4 100644 --- a/packages/hdom-canvas/package.json +++ b/packages/hdom-canvas/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hdom-canvas", - "version": "2.4.11", + "version": "2.4.13", "description": "Declarative canvas scenegraph & visualization for @thi.ng/hdom", "module": "./index.js", "main": "./lib/index.js", @@ -38,13 +38,13 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", + "@thi.ng/api": "^6.10.0", "@thi.ng/checks": "^2.6.1", - "@thi.ng/color": "^1.1.12", - "@thi.ng/diff": "^3.2.14", - "@thi.ng/hdom": "^8.0.17", + "@thi.ng/color": "^1.1.13", + "@thi.ng/diff": "^3.2.15", + "@thi.ng/hdom": "^8.0.19", "@thi.ng/math": "^1.7.5", - "@thi.ng/vectors": "^4.2.3", + "@thi.ng/vectors": "^4.2.4", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/hdom-components/CHANGELOG.md b/packages/hdom-components/CHANGELOG.md index 95ea1bf88a..40fd40fca6 100644 --- a/packages/hdom-components/CHANGELOG.md +++ b/packages/hdom-components/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.2.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-components@3.2.2...@thi.ng/hdom-components@3.2.3) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/hdom-components + + + + + ## [3.2.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-components@3.2.1...@thi.ng/hdom-components@3.2.2) (2020-04-05) **Note:** Version bump only for package @thi.ng/hdom-components diff --git a/packages/hdom-components/package.json b/packages/hdom-components/package.json index 452deaf5ec..b7ba6c84bd 100644 --- a/packages/hdom-components/package.json +++ b/packages/hdom-components/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hdom-components", - "version": "3.2.2", + "version": "3.2.3", "description": "Raw, skinnable UI & SVG components for @thi.ng/hdom", "module": "./index.js", "main": "./lib/index.js", @@ -38,11 +38,11 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", + "@thi.ng/api": "^6.10.0", "@thi.ng/checks": "^2.6.1", "@thi.ng/math": "^1.7.5", - "@thi.ng/transducers": "^6.4.3", - "@thi.ng/transducers-stats": "^1.1.16", + "@thi.ng/transducers": "^6.4.4", + "@thi.ng/transducers-stats": "^1.1.17", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/hdom-mock/CHANGELOG.md b/packages/hdom-mock/CHANGELOG.md index b3483674be..97ebf2f32e 100644 --- a/packages/hdom-mock/CHANGELOG.md +++ b/packages/hdom-mock/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.1.19](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-mock@1.1.18...@thi.ng/hdom-mock@1.1.19) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/hdom-mock + + + + + +## [1.1.18](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-mock@1.1.17...@thi.ng/hdom-mock@1.1.18) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/hdom-mock + + + + + ## [1.1.17](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-mock@1.1.16...@thi.ng/hdom-mock@1.1.17) (2020-04-05) **Note:** Version bump only for package @thi.ng/hdom-mock diff --git a/packages/hdom-mock/package.json b/packages/hdom-mock/package.json index de945b1f27..90686cf1ee 100644 --- a/packages/hdom-mock/package.json +++ b/packages/hdom-mock/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hdom-mock", - "version": "1.1.17", + "version": "1.1.19", "description": "Mock base implementation for @thi.ng/hdom API", "module": "./index.js", "main": "./lib/index.js", @@ -38,9 +38,9 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", + "@thi.ng/api": "^6.10.0", "@thi.ng/checks": "^2.6.1", - "@thi.ng/hdom": "^8.0.17", + "@thi.ng/hdom": "^8.0.19", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/hdom/CHANGELOG.md b/packages/hdom/CHANGELOG.md index c0ac26bf83..b8c149a3a9 100644 --- a/packages/hdom/CHANGELOG.md +++ b/packages/hdom/CHANGELOG.md @@ -3,6 +3,25 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [8.0.19](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom@8.0.18...@thi.ng/hdom@8.0.19) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/hdom + + + + + +## [8.0.18](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom@8.0.17...@thi.ng/hdom@8.0.18) (2020-04-06) + + +### Performance Improvements + +* **hdom:** update event attrib checks ([ab54d3c](https://github.com/thi-ng/umbrella/commit/ab54d3cc670dc9b060984e28066d4a84dde64ec2)) + + + + + ## [8.0.17](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom@8.0.16...@thi.ng/hdom@8.0.17) (2020-04-05) **Note:** Version bump only for package @thi.ng/hdom diff --git a/packages/hdom/README.md b/packages/hdom/README.md index a94a8f9c3f..b9bcd23b38 100644 --- a/packages/hdom/README.md +++ b/packages/hdom/README.md @@ -132,7 +132,7 @@ yarn install yarn start ``` -Package sizes (gzipped, pre-treeshake): ESM: 3.59 KB / CJS: 3.70 KB / UMD: 3.62 KB +Package sizes (gzipped, pre-treeshake): ESM: 3.60 KB / CJS: 3.71 KB / UMD: 3.63 KB ## Dependencies diff --git a/packages/hdom/package.json b/packages/hdom/package.json index ee92733213..9cfb8f7c18 100644 --- a/packages/hdom/package.json +++ b/packages/hdom/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hdom", - "version": "8.0.17", + "version": "8.0.19", "description": "Lightweight vanilla ES6 UI component trees with customizable branch-local behaviors", "module": "./index.js", "main": "./lib/index.js", @@ -29,7 +29,7 @@ "devDependencies": { "@istanbuljs/nyc-config-typescript": "^1.0.1", "@microsoft/api-extractor": "^7.7.8", - "@thi.ng/atom": "^4.1.1", + "@thi.ng/atom": "^4.1.2", "@types/mocha": "^7.0.1", "@types/node": "^13.7.4", "mocha": "^7.1.1", @@ -39,12 +39,12 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", + "@thi.ng/api": "^6.10.0", "@thi.ng/checks": "^2.6.1", - "@thi.ng/diff": "^3.2.14", + "@thi.ng/diff": "^3.2.15", "@thi.ng/equiv": "^1.0.18", "@thi.ng/errors": "^1.2.9", - "@thi.ng/hiccup": "^3.2.16", + "@thi.ng/hiccup": "^3.2.17", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/hdom/src/diff.ts b/packages/hdom/src/diff.ts index 3d48fe80a1..84440993f0 100644 --- a/packages/hdom/src/diff.ts +++ b/packages/hdom/src/diff.ts @@ -1,13 +1,13 @@ import { SEMAPHORE } from "@thi.ng/api"; +import type { IObjectOf } from "@thi.ng/api"; import { diffArray, DiffMode, diffObject } from "@thi.ng/diff"; import { equiv as _equiv, equivArrayLike, equivMap, equivObject, - equivSet + equivSet, } from "@thi.ng/equiv"; -import type { IObjectOf } from "@thi.ng/api"; import type { HDOMImplementation, HDOMOpts } from "./api"; const isArray = Array.isArray; @@ -217,7 +217,7 @@ const decOffsets = (offsets: any[], j: number, idx: number) => { * @param el - DOM element * @param prev - previous attributes * @param curr - current attributes - * + * * @internal */ export const diffAttributes = ( @@ -232,7 +232,7 @@ export const diffAttributes = ( let i: number, e, edits; for (edits = delta.edits!, i = edits.length; (i -= 2) >= 0; ) { e = edits[i]; - e.indexOf("on") === 0 && impl.removeAttribs(el, [e], prev); + e[0] === "o" && e[1] === "n" && impl.removeAttribs(el, [e], prev); e !== "value" ? impl.setAttrib(el, e, edits[i + 1], curr) : (val = edits[i + 1]); diff --git a/packages/hdom/src/dom.ts b/packages/hdom/src/dom.ts index 603c97cd3a..d385cc9ee4 100644 --- a/packages/hdom/src/dom.ts +++ b/packages/hdom/src/dom.ts @@ -1,6 +1,5 @@ import { isArray as isa, isNotStringAndIterable as isi } from "@thi.ng/checks"; -import { SVG_NS, SVG_TAGS } from "@thi.ng/hiccup"; -import { css } from "@thi.ng/hiccup"; +import { css, SVG_NS, SVG_TAGS } from "@thi.ng/hiccup"; import type { HDOMImplementation, HDOMOpts } from "./api"; const isArray = isa; @@ -106,7 +105,7 @@ export const hydrateTree = ( } maybeInitElement(el, tree); for (let a in attribs) { - a.indexOf("on") === 0 && impl.setAttrib(el, a, attribs[a]); + a[0] === "o" && a[1] === "n" && impl.setAttrib(el, a, attribs[a]); } for (let n = tree.length, i = 2; i < n; i++) { hydrateTree(opts, impl, el, tree[i], i - 2); @@ -213,7 +212,7 @@ export const setAttribs = (el: Element, attribs: any) => { */ export const setAttrib = (el: Element, id: string, val: any, attribs?: any) => { if (id.startsWith("__")) return; - const isListener = id.indexOf("on") === 0; + const isListener = id[0] === "o" && id[1] === "n"; if (!isListener && typeof val === "function") { val = val(attribs); } @@ -284,7 +283,8 @@ export const updateValueAttrib = (el: HTMLInputElement, value: any) => { case "week": case "month": if ((ev = el.value) !== undefined && typeof value === "string") { - const off = value.length - (ev.length - (el.selectionStart || 0)); + const off = + value.length - (ev.length - (el.selectionStart || 0)); el.value = value; el.selectionStart = el.selectionEnd = off; break; @@ -297,7 +297,7 @@ export const updateValueAttrib = (el: HTMLInputElement, value: any) => { export const removeAttribs = (el: Element, attribs: string[], prev: any) => { for (let i = attribs.length; --i >= 0; ) { const a = attribs[i]; - if (a.indexOf("on") === 0) { + if (a[0] === "o" && a[1] === "n") { removeListener(el, a.substr(2), prev[a]); } else { el.hasAttribute(a) ? el.removeAttribute(a) : ((el)[a] = null); diff --git a/packages/hdom/src/normalize.ts b/packages/hdom/src/normalize.ts index f0b9dfc5d7..10ce7b5af1 100644 --- a/packages/hdom/src/normalize.ts +++ b/packages/hdom/src/normalize.ts @@ -1,4 +1,8 @@ -import { isArray as isa, isNotStringAndIterable as isi, isPlainObject as iso } from "@thi.ng/checks"; +import { + isArray as isa, + isNotStringAndIterable as isi, + isPlainObject as iso, +} from "@thi.ng/checks"; import { illegalArgs } from "@thi.ng/errors"; import { NO_SPANS, RE_TAG } from "@thi.ng/hiccup"; import type { HDOMOpts } from "./api"; diff --git a/packages/heaps/CHANGELOG.md b/packages/heaps/CHANGELOG.md index a09192ec96..4eb247764b 100644 --- a/packages/heaps/CHANGELOG.md +++ b/packages/heaps/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.2.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/heaps@1.2.8...@thi.ng/heaps@1.2.9) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/heaps + + + + + ## [1.2.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/heaps@1.2.7...@thi.ng/heaps@1.2.8) (2020-04-05) **Note:** Version bump only for package @thi.ng/heaps diff --git a/packages/heaps/package.json b/packages/heaps/package.json index 703365a2c8..282f1127e5 100644 --- a/packages/heaps/package.json +++ b/packages/heaps/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/heaps", - "version": "1.2.8", + "version": "1.2.9", "description": "Various heap implementations for arbitrary values and with customizable ordering", "module": "./index.js", "main": "./lib/index.js", @@ -39,8 +39,8 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", - "@thi.ng/compare": "^1.3.0", + "@thi.ng/api": "^6.10.0", + "@thi.ng/compare": "^1.3.1", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/hiccup-carbon-icons/CHANGELOG.md b/packages/hiccup-carbon-icons/CHANGELOG.md index b6ac15c890..2eb5882f97 100644 --- a/packages/hiccup-carbon-icons/CHANGELOG.md +++ b/packages/hiccup-carbon-icons/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.32](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-carbon-icons@1.0.31...@thi.ng/hiccup-carbon-icons@1.0.32) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/hiccup-carbon-icons + + + + + ## [1.0.31](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-carbon-icons@1.0.30...@thi.ng/hiccup-carbon-icons@1.0.31) (2020-04-05) **Note:** Version bump only for package @thi.ng/hiccup-carbon-icons diff --git a/packages/hiccup-carbon-icons/package.json b/packages/hiccup-carbon-icons/package.json index db043c2dc2..94c3c3b3d1 100644 --- a/packages/hiccup-carbon-icons/package.json +++ b/packages/hiccup-carbon-icons/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hiccup-carbon-icons", - "version": "1.0.31", + "version": "1.0.32", "description": "Full set of IBM's Carbon icons in hiccup format", "module": "./index.js", "main": "./lib/index.js", @@ -29,7 +29,7 @@ "devDependencies": { "@istanbuljs/nyc-config-typescript": "^1.0.1", "@microsoft/api-extractor": "^7.7.8", - "@thi.ng/hiccup": "^3.2.16", + "@thi.ng/hiccup": "^3.2.17", "@types/mocha": "^7.0.1", "@types/node": "^13.7.4", "mocha": "^7.1.1", diff --git a/packages/hiccup-css/CHANGELOG.md b/packages/hiccup-css/CHANGELOG.md index 7cc7af18b1..7d047eb85e 100644 --- a/packages/hiccup-css/CHANGELOG.md +++ b/packages/hiccup-css/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.1.17](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-css@1.1.16...@thi.ng/hiccup-css@1.1.17) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/hiccup-css + + + + + ## [1.1.16](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-css@1.1.15...@thi.ng/hiccup-css@1.1.16) (2020-04-05) **Note:** Version bump only for package @thi.ng/hiccup-css diff --git a/packages/hiccup-css/package.json b/packages/hiccup-css/package.json index 976872cf52..1857410c6c 100644 --- a/packages/hiccup-css/package.json +++ b/packages/hiccup-css/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hiccup-css", - "version": "1.1.16", + "version": "1.1.17", "description": "CSS from nested JS data structures", "module": "./index.js", "main": "./lib/index.js", @@ -38,10 +38,10 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", + "@thi.ng/api": "^6.10.0", "@thi.ng/checks": "^2.6.1", "@thi.ng/errors": "^1.2.9", - "@thi.ng/transducers": "^6.4.3", + "@thi.ng/transducers": "^6.4.4", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/hiccup-markdown/CHANGELOG.md b/packages/hiccup-markdown/CHANGELOG.md index f53983d160..d49ec34b8e 100644 --- a/packages/hiccup-markdown/CHANGELOG.md +++ b/packages/hiccup-markdown/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.2.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-markdown@1.2.2...@thi.ng/hiccup-markdown@1.2.3) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/hiccup-markdown + + + + + ## [1.2.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-markdown@1.2.1...@thi.ng/hiccup-markdown@1.2.2) (2020-04-05) **Note:** Version bump only for package @thi.ng/hiccup-markdown diff --git a/packages/hiccup-markdown/package.json b/packages/hiccup-markdown/package.json index ca7e074f29..4327624308 100644 --- a/packages/hiccup-markdown/package.json +++ b/packages/hiccup-markdown/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hiccup-markdown", - "version": "1.2.2", + "version": "1.2.3", "description": "Markdown parser & serializer from/to Hiccup format", "module": "./index.js", "main": "./lib/index.js", @@ -38,15 +38,15 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/arrays": "^0.6.1", + "@thi.ng/arrays": "^0.6.2", "@thi.ng/checks": "^2.6.1", - "@thi.ng/defmulti": "^1.2.9", + "@thi.ng/defmulti": "^1.2.10", "@thi.ng/errors": "^1.2.9", - "@thi.ng/fsm": "^2.4.2", - "@thi.ng/hiccup": "^3.2.16", - "@thi.ng/strings": "^1.8.1", - "@thi.ng/text-canvas": "^0.2.3", - "@thi.ng/transducers": "^6.4.3", + "@thi.ng/fsm": "^2.4.3", + "@thi.ng/hiccup": "^3.2.17", + "@thi.ng/strings": "^1.8.2", + "@thi.ng/text-canvas": "^0.2.4", + "@thi.ng/transducers": "^6.4.4", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/hiccup-svg/CHANGELOG.md b/packages/hiccup-svg/CHANGELOG.md index 18215ffbe4..b43865a829 100644 --- a/packages/hiccup-svg/CHANGELOG.md +++ b/packages/hiccup-svg/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.4.10](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-svg@3.4.9...@thi.ng/hiccup-svg@3.4.10) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/hiccup-svg + + + + + ## [3.4.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup-svg@3.4.8...@thi.ng/hiccup-svg@3.4.9) (2020-04-05) **Note:** Version bump only for package @thi.ng/hiccup-svg diff --git a/packages/hiccup-svg/package.json b/packages/hiccup-svg/package.json index 7fa1af2027..694d5d1b7e 100644 --- a/packages/hiccup-svg/package.json +++ b/packages/hiccup-svg/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hiccup-svg", - "version": "3.4.9", + "version": "3.4.10", "description": "SVG element functions for @thi.ng/hiccup & @thi.ng/hdom", "module": "./index.js", "main": "./lib/index.js", @@ -39,8 +39,8 @@ }, "dependencies": { "@thi.ng/checks": "^2.6.1", - "@thi.ng/color": "^1.1.12", - "@thi.ng/hiccup": "^3.2.16", + "@thi.ng/color": "^1.1.13", + "@thi.ng/hiccup": "^3.2.17", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/hiccup/CHANGELOG.md b/packages/hiccup/CHANGELOG.md index c80342fb85..e0a8f69ba2 100644 --- a/packages/hiccup/CHANGELOG.md +++ b/packages/hiccup/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.2.17](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup@3.2.16...@thi.ng/hiccup@3.2.17) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/hiccup + + + + + ## [3.2.16](https://github.com/thi-ng/umbrella/compare/@thi.ng/hiccup@3.2.15...@thi.ng/hiccup@3.2.16) (2020-04-05) **Note:** Version bump only for package @thi.ng/hiccup diff --git a/packages/hiccup/package.json b/packages/hiccup/package.json index 131971a97c..bce95ce9a3 100644 --- a/packages/hiccup/package.json +++ b/packages/hiccup/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hiccup", - "version": "3.2.16", + "version": "3.2.17", "description": "HTML/SVG/XML serialization of nested data structures, iterables & closures", "module": "./index.js", "main": "./lib/index.js", @@ -29,7 +29,7 @@ "devDependencies": { "@istanbuljs/nyc-config-typescript": "^1.0.1", "@microsoft/api-extractor": "^7.7.8", - "@thi.ng/atom": "^4.1.1", + "@thi.ng/atom": "^4.1.2", "@types/mocha": "^7.0.1", "@types/node": "^13.7.4", "mocha": "^7.1.1", diff --git a/packages/idgen/CHANGELOG.md b/packages/idgen/CHANGELOG.md index 79214cb9cc..02c7fd21af 100644 --- a/packages/idgen/CHANGELOG.md +++ b/packages/idgen/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.2.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/idgen@0.2.7...@thi.ng/idgen@0.2.8) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/idgen + + + + + ## [0.2.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/idgen@0.2.6...@thi.ng/idgen@0.2.7) (2020-04-05) **Note:** Version bump only for package @thi.ng/idgen diff --git a/packages/idgen/package.json b/packages/idgen/package.json index 240a3b9ee9..b9ead49fcf 100644 --- a/packages/idgen/package.json +++ b/packages/idgen/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/idgen", - "version": "0.2.7", + "version": "0.2.8", "description": "Generator of opaque numeric identifiers with optional support for ID versioning and efficient re-use", "module": "./index.js", "main": "./lib/index.js", @@ -38,7 +38,7 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", + "@thi.ng/api": "^6.10.0", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/iges/CHANGELOG.md b/packages/iges/CHANGELOG.md index 798f93e7fa..ea7908a028 100644 --- a/packages/iges/CHANGELOG.md +++ b/packages/iges/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.1.22](https://github.com/thi-ng/umbrella/compare/@thi.ng/iges@1.1.21...@thi.ng/iges@1.1.22) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/iges + + + + + ## [1.1.21](https://github.com/thi-ng/umbrella/compare/@thi.ng/iges@1.1.20...@thi.ng/iges@1.1.21) (2020-04-05) **Note:** Version bump only for package @thi.ng/iges diff --git a/packages/iges/package.json b/packages/iges/package.json index 28196d1128..07a79ca458 100644 --- a/packages/iges/package.json +++ b/packages/iges/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/iges", - "version": "1.1.21", + "version": "1.1.22", "description": "IGES 5.3 serializer for (currently only) polygonal geometry, both open & closed", "module": "./index.js", "main": "./lib/index.js", @@ -38,12 +38,12 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", + "@thi.ng/api": "^6.10.0", "@thi.ng/checks": "^2.6.1", - "@thi.ng/defmulti": "^1.2.9", - "@thi.ng/strings": "^1.8.1", - "@thi.ng/transducers": "^6.4.3", - "@thi.ng/vectors": "^4.2.3", + "@thi.ng/defmulti": "^1.2.10", + "@thi.ng/strings": "^1.8.2", + "@thi.ng/transducers": "^6.4.4", + "@thi.ng/vectors": "^4.2.4", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/imgui/CHANGELOG.md b/packages/imgui/CHANGELOG.md index 7ef3f9cff7..865d236f52 100644 --- a/packages/imgui/CHANGELOG.md +++ b/packages/imgui/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.2.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/imgui@0.2.7...@thi.ng/imgui@0.2.8) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/imgui + + + + + ## [0.2.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/imgui@0.2.6...@thi.ng/imgui@0.2.7) (2020-04-05) **Note:** Version bump only for package @thi.ng/imgui diff --git a/packages/imgui/package.json b/packages/imgui/package.json index 8002824b78..95b9587cf0 100644 --- a/packages/imgui/package.json +++ b/packages/imgui/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/imgui", - "version": "0.2.7", + "version": "0.2.8", "description": "Immediate mode GUI with flexible state handling & data only shape output", "module": "./index.js", "main": "./lib/index.js", @@ -38,16 +38,16 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", + "@thi.ng/api": "^6.10.0", "@thi.ng/checks": "^2.6.1", - "@thi.ng/geom": "^1.8.7", - "@thi.ng/geom-api": "^1.0.8", - "@thi.ng/geom-isec": "^0.4.8", - "@thi.ng/geom-tessellate": "^0.2.19", - "@thi.ng/layout": "^0.1.5", + "@thi.ng/geom": "^1.8.8", + "@thi.ng/geom-api": "^1.0.9", + "@thi.ng/geom-isec": "^0.4.9", + "@thi.ng/geom-tessellate": "^0.2.20", + "@thi.ng/layout": "^0.1.6", "@thi.ng/math": "^1.7.5", - "@thi.ng/transducers": "^6.4.3", - "@thi.ng/vectors": "^4.2.3", + "@thi.ng/transducers": "^6.4.4", + "@thi.ng/vectors": "^4.2.4", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/interceptors/CHANGELOG.md b/packages/interceptors/CHANGELOG.md index 542160ff54..4194af234f 100644 --- a/packages/interceptors/CHANGELOG.md +++ b/packages/interceptors/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.2.13](https://github.com/thi-ng/umbrella/compare/@thi.ng/interceptors@2.2.12...@thi.ng/interceptors@2.2.13) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/interceptors + + + + + ## [2.2.12](https://github.com/thi-ng/umbrella/compare/@thi.ng/interceptors@2.2.11...@thi.ng/interceptors@2.2.12) (2020-04-05) **Note:** Version bump only for package @thi.ng/interceptors diff --git a/packages/interceptors/package.json b/packages/interceptors/package.json index 03a17edeff..0f13362705 100644 --- a/packages/interceptors/package.json +++ b/packages/interceptors/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/interceptors", - "version": "2.2.12", + "version": "2.2.13", "description": "Interceptor based event bus, side effect & immutable state handling", "module": "./index.js", "main": "./lib/index.js", @@ -38,8 +38,8 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", - "@thi.ng/atom": "^4.1.1", + "@thi.ng/api": "^6.10.0", + "@thi.ng/atom": "^4.1.2", "@thi.ng/checks": "^2.6.1", "@thi.ng/errors": "^1.2.9", "@thi.ng/paths": "^4.0.1", diff --git a/packages/intervals/CHANGELOG.md b/packages/intervals/CHANGELOG.md index a4b5dc985c..a8abd65bf9 100644 --- a/packages/intervals/CHANGELOG.md +++ b/packages/intervals/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.0.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/intervals@2.0.8...@thi.ng/intervals@2.0.9) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/intervals + + + + + ## [2.0.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/intervals@2.0.7...@thi.ng/intervals@2.0.8) (2020-04-05) **Note:** Version bump only for package @thi.ng/intervals diff --git a/packages/intervals/package.json b/packages/intervals/package.json index 4c936020b1..8366ad59dc 100644 --- a/packages/intervals/package.json +++ b/packages/intervals/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/intervals", - "version": "2.0.8", + "version": "2.0.9", "description": "Closed/open/semi-open interval data type, queries & operations", "module": "./index.js", "main": "./lib/index.js", @@ -38,7 +38,7 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", + "@thi.ng/api": "^6.10.0", "@thi.ng/checks": "^2.6.1", "@thi.ng/dlogic": "^1.0.18", "@thi.ng/errors": "^1.2.9", diff --git a/packages/iterators/CHANGELOG.md b/packages/iterators/CHANGELOG.md index 607e66c114..0ac936e4c0 100644 --- a/packages/iterators/CHANGELOG.md +++ b/packages/iterators/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.1.17](https://github.com/thi-ng/umbrella/compare/@thi.ng/iterators@5.1.16...@thi.ng/iterators@5.1.17) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/iterators + + + + + ## [5.1.16](https://github.com/thi-ng/umbrella/compare/@thi.ng/iterators@5.1.15...@thi.ng/iterators@5.1.16) (2020-04-05) **Note:** Version bump only for package @thi.ng/iterators diff --git a/packages/iterators/package.json b/packages/iterators/package.json index 7ca6517b5c..5d35ccd4d9 100644 --- a/packages/iterators/package.json +++ b/packages/iterators/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/iterators", - "version": "5.1.16", + "version": "5.1.17", "description": "Clojure inspired, composable ES6 iterators & generators", "module": "./index.js", "main": "./lib/index.js", @@ -38,8 +38,8 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", - "@thi.ng/dcons": "^2.2.9", + "@thi.ng/api": "^6.10.0", + "@thi.ng/dcons": "^2.2.10", "@thi.ng/errors": "^1.2.9", "tslib": "^1.11.1" }, diff --git a/packages/layout/CHANGELOG.md b/packages/layout/CHANGELOG.md index 5cd5f2d2da..ca7a761945 100644 --- a/packages/layout/CHANGELOG.md +++ b/packages/layout/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/layout@0.1.5...@thi.ng/layout@0.1.6) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/layout + + + + + ## [0.1.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/layout@0.1.4...@thi.ng/layout@0.1.5) (2020-04-05) **Note:** Version bump only for package @thi.ng/layout diff --git a/packages/layout/package.json b/packages/layout/package.json index f0f4f978cf..3032546888 100644 --- a/packages/layout/package.json +++ b/packages/layout/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/layout", - "version": "0.1.5", + "version": "0.1.6", "description": "TODO", "module": "./index.js", "main": "./lib/index.js", @@ -38,7 +38,7 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", + "@thi.ng/api": "^6.10.0", "@thi.ng/checks": "^2.6.1", "tslib": "^1.11.1" }, diff --git a/packages/leb128/CHANGELOG.md b/packages/leb128/CHANGELOG.md index ed28e8e828..7956cc7154 100644 --- a/packages/leb128/CHANGELOG.md +++ b/packages/leb128/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.11](https://github.com/thi-ng/umbrella/compare/@thi.ng/leb128@1.0.10...@thi.ng/leb128@1.0.11) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/leb128 + + + + + ## [1.0.10](https://github.com/thi-ng/umbrella/compare/@thi.ng/leb128@1.0.9...@thi.ng/leb128@1.0.10) (2020-04-05) **Note:** Version bump only for package @thi.ng/leb128 diff --git a/packages/leb128/package.json b/packages/leb128/package.json index f3c40d79fa..ae132df725 100644 --- a/packages/leb128/package.json +++ b/packages/leb128/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/leb128", - "version": "1.0.10", + "version": "1.0.11", "description": "WASM based LEB128 encoder / decoder (signed & unsigned)", "module": "./index.js", "main": "./lib/index.js", @@ -41,7 +41,7 @@ "dependencies": { "@thi.ng/checks": "^2.6.1", "@thi.ng/errors": "^1.2.9", - "@thi.ng/transducers-binary": "^0.5.6", + "@thi.ng/transducers-binary": "^0.5.7", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/lsys/CHANGELOG.md b/packages/lsys/CHANGELOG.md index 5fa9d974b2..ba20d77044 100644 --- a/packages/lsys/CHANGELOG.md +++ b/packages/lsys/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.2.35](https://github.com/thi-ng/umbrella/compare/@thi.ng/lsys@0.2.34...@thi.ng/lsys@0.2.35) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/lsys + + + + + ## [0.2.34](https://github.com/thi-ng/umbrella/compare/@thi.ng/lsys@0.2.33...@thi.ng/lsys@0.2.34) (2020-04-05) **Note:** Version bump only for package @thi.ng/lsys diff --git a/packages/lsys/package.json b/packages/lsys/package.json index 6251190e1b..3acb5228ba 100644 --- a/packages/lsys/package.json +++ b/packages/lsys/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/lsys", - "version": "0.2.34", + "version": "0.2.35", "description": "Functional, extensible L-System architecture w/ support for probabilistic rules", "module": "./index.js", "main": "./lib/index.js", @@ -38,13 +38,13 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", - "@thi.ng/compose": "^1.4.1", + "@thi.ng/api": "^6.10.0", + "@thi.ng/compose": "^1.4.2", "@thi.ng/errors": "^1.2.9", "@thi.ng/math": "^1.7.5", - "@thi.ng/random": "^1.4.3", - "@thi.ng/transducers": "^6.4.3", - "@thi.ng/vectors": "^4.2.3", + "@thi.ng/random": "^1.4.4", + "@thi.ng/transducers": "^6.4.4", + "@thi.ng/vectors": "^4.2.4", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/malloc/CHANGELOG.md b/packages/malloc/CHANGELOG.md index f5064e7f94..5bf9bd973d 100644 --- a/packages/malloc/CHANGELOG.md +++ b/packages/malloc/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.1.10](https://github.com/thi-ng/umbrella/compare/@thi.ng/malloc@4.1.9...@thi.ng/malloc@4.1.10) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/malloc + + + + + ## [4.1.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/malloc@4.1.8...@thi.ng/malloc@4.1.9) (2020-04-05) **Note:** Version bump only for package @thi.ng/malloc diff --git a/packages/malloc/package.json b/packages/malloc/package.json index eb329c2e83..1cb9dd7cd4 100644 --- a/packages/malloc/package.json +++ b/packages/malloc/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/malloc", - "version": "4.1.9", + "version": "4.1.10", "description": "ArrayBuffer based malloc() impl for hybrid JS/WASM use cases, based on thi.ng/tinyalloc", "module": "./index.js", "main": "./lib/index.js", @@ -38,7 +38,7 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", + "@thi.ng/api": "^6.10.0", "@thi.ng/binary": "^2.0.2", "@thi.ng/checks": "^2.6.1", "@thi.ng/errors": "^1.2.9", diff --git a/packages/matrices/CHANGELOG.md b/packages/matrices/CHANGELOG.md index 3350a59a5b..a3ba531173 100644 --- a/packages/matrices/CHANGELOG.md +++ b/packages/matrices/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.6.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/matrices@0.6.6...@thi.ng/matrices@0.6.7) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/matrices + + + + + ## [0.6.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/matrices@0.6.5...@thi.ng/matrices@0.6.6) (2020-04-05) **Note:** Version bump only for package @thi.ng/matrices diff --git a/packages/matrices/package.json b/packages/matrices/package.json index 748f6e5aad..029d463040 100644 --- a/packages/matrices/package.json +++ b/packages/matrices/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/matrices", - "version": "0.6.6", + "version": "0.6.7", "description": "Matrix & quaternion operations for 2D/3D geometry processing", "module": "./index.js", "main": "./lib/index.js", @@ -38,10 +38,10 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", + "@thi.ng/api": "^6.10.0", "@thi.ng/checks": "^2.6.1", "@thi.ng/math": "^1.7.5", - "@thi.ng/vectors": "^4.2.3", + "@thi.ng/vectors": "^4.2.4", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/memoize/CHANGELOG.md b/packages/memoize/CHANGELOG.md index b8e9d08463..7e17754afa 100644 --- a/packages/memoize/CHANGELOG.md +++ b/packages/memoize/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.0.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/memoize@2.0.5...@thi.ng/memoize@2.0.6) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/memoize + + + + + ## [2.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/memoize@2.0.4...@thi.ng/memoize@2.0.5) (2020-04-05) **Note:** Version bump only for package @thi.ng/memoize diff --git a/packages/memoize/package.json b/packages/memoize/package.json index 1b624ba15c..b9763dde1e 100644 --- a/packages/memoize/package.json +++ b/packages/memoize/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/memoize", - "version": "2.0.5", + "version": "2.0.6", "description": "Function memoization with configurable caching", "module": "./index.js", "main": "./lib/index.js", @@ -38,7 +38,7 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", + "@thi.ng/api": "^6.10.0", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/mime/CHANGELOG.md b/packages/mime/CHANGELOG.md index dc87e5c1c6..db3637102b 100644 --- a/packages/mime/CHANGELOG.md +++ b/packages/mime/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/mime@0.1.5...@thi.ng/mime@0.1.6) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/mime + + + + + ## [0.1.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/mime@0.1.4...@thi.ng/mime@0.1.5) (2020-04-05) **Note:** Version bump only for package @thi.ng/mime diff --git a/packages/mime/package.json b/packages/mime/package.json index 5cfe1807fc..169d587e2c 100644 --- a/packages/mime/package.json +++ b/packages/mime/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/mime", - "version": "0.1.5", + "version": "0.1.6", "description": "350+ file extension to MIME type mappings, based on mime-db", "module": "./index.js", "main": "./lib/index.js", @@ -38,7 +38,7 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", + "@thi.ng/api": "^6.10.0", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/morton/CHANGELOG.md b/packages/morton/CHANGELOG.md index 8ee5388ef3..36e2c13f4e 100644 --- a/packages/morton/CHANGELOG.md +++ b/packages/morton/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.0.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/morton@2.0.7...@thi.ng/morton@2.0.8) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/morton + + + + + ## [2.0.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/morton@2.0.6...@thi.ng/morton@2.0.7) (2020-04-05) **Note:** Version bump only for package @thi.ng/morton diff --git a/packages/morton/package.json b/packages/morton/package.json index 3795b8c68f..b3c00de789 100644 --- a/packages/morton/package.json +++ b/packages/morton/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/morton", - "version": "2.0.7", + "version": "2.0.8", "description": "Z-order curve / Morton encoding, decoding & range extraction for arbitrary dimensions", "module": "./index.js", "main": "./lib/index.js", @@ -38,7 +38,7 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", + "@thi.ng/api": "^6.10.0", "@thi.ng/binary": "^2.0.2", "@thi.ng/math": "^1.7.5", "tslib": "^1.11.1" diff --git a/packages/pixel/CHANGELOG.md b/packages/pixel/CHANGELOG.md index d1341bc30a..4775de98ef 100644 --- a/packages/pixel/CHANGELOG.md +++ b/packages/pixel/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.15](https://github.com/thi-ng/umbrella/compare/@thi.ng/pixel@0.1.14...@thi.ng/pixel@0.1.15) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/pixel + + + + + ## [0.1.14](https://github.com/thi-ng/umbrella/compare/@thi.ng/pixel@0.1.13...@thi.ng/pixel@0.1.14) (2020-04-05) **Note:** Version bump only for package @thi.ng/pixel diff --git a/packages/pixel/package.json b/packages/pixel/package.json index 824f7afe3c..c200497f83 100644 --- a/packages/pixel/package.json +++ b/packages/pixel/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/pixel", - "version": "0.1.14", + "version": "0.1.15", "description": "Typed array backed, packed pixel buffer w/ customizable formats, blitting, conversions", "module": "./index.js", "main": "./lib/index.js", @@ -38,10 +38,10 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", + "@thi.ng/api": "^6.10.0", "@thi.ng/checks": "^2.6.1", "@thi.ng/math": "^1.7.5", - "@thi.ng/porter-duff": "^0.1.13", + "@thi.ng/porter-duff": "^0.1.14", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/pointfree-lang/CHANGELOG.md b/packages/pointfree-lang/CHANGELOG.md index 1ac1cf2919..eecbfc83cb 100644 --- a/packages/pointfree-lang/CHANGELOG.md +++ b/packages/pointfree-lang/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.2.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/pointfree-lang@1.2.1...@thi.ng/pointfree-lang@1.2.2) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/pointfree-lang + + + + + ## [1.2.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/pointfree-lang@1.2.0...@thi.ng/pointfree-lang@1.2.1) (2020-04-05) **Note:** Version bump only for package @thi.ng/pointfree-lang diff --git a/packages/pointfree-lang/package.json b/packages/pointfree-lang/package.json index 77b097853a..4407deb866 100644 --- a/packages/pointfree-lang/package.json +++ b/packages/pointfree-lang/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/pointfree-lang", - "version": "1.2.1", + "version": "1.2.2", "description": "Forth style syntax layer/compiler & CLI for the @thi.ng/pointfree DSL", "module": "./index.js", "main": "./lib/index.js", @@ -42,9 +42,9 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", + "@thi.ng/api": "^6.10.0", "@thi.ng/errors": "^1.2.9", - "@thi.ng/pointfree": "^1.3.1", + "@thi.ng/pointfree": "^1.3.2", "commander": "^5.0.0", "tslib": "^1.11.1" }, diff --git a/packages/pointfree/CHANGELOG.md b/packages/pointfree/CHANGELOG.md index 368c6b25a4..29316b9751 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. +## [1.3.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/pointfree@1.3.1...@thi.ng/pointfree@1.3.2) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/pointfree + + + + + ## [1.3.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/pointfree@1.3.0...@thi.ng/pointfree@1.3.1) (2020-04-05) **Note:** Version bump only for package @thi.ng/pointfree diff --git a/packages/pointfree/package.json b/packages/pointfree/package.json index 2879fec41e..1592efbbb1 100644 --- a/packages/pointfree/package.json +++ b/packages/pointfree/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/pointfree", - "version": "1.3.1", + "version": "1.3.2", "description": "Pointfree functional composition / Forth style stack execution engine", "module": "./index.js", "main": "./lib/index.js", @@ -38,9 +38,9 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", + "@thi.ng/api": "^6.10.0", "@thi.ng/checks": "^2.6.1", - "@thi.ng/compose": "^1.4.1", + "@thi.ng/compose": "^1.4.2", "@thi.ng/equiv": "^1.0.18", "@thi.ng/errors": "^1.2.9", "tslib": "^1.11.1" diff --git a/packages/poisson/CHANGELOG.md b/packages/poisson/CHANGELOG.md index 05c02eb795..72511e45da 100644 --- a/packages/poisson/CHANGELOG.md +++ b/packages/poisson/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/poisson@1.0.8...@thi.ng/poisson@1.0.9) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/poisson + + + + + ## [1.0.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/poisson@1.0.7...@thi.ng/poisson@1.0.8) (2020-04-05) **Note:** Version bump only for package @thi.ng/poisson diff --git a/packages/poisson/package.json b/packages/poisson/package.json index e4e11cc871..7349216c18 100644 --- a/packages/poisson/package.json +++ b/packages/poisson/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/poisson", - "version": "1.0.8", + "version": "1.0.9", "description": "nD Poisson-disc sampling w/ support for spatial density functions and custom PRNGs", "module": "./index.js", "main": "./lib/index.js", @@ -39,9 +39,9 @@ }, "dependencies": { "@thi.ng/checks": "^2.6.1", - "@thi.ng/geom-api": "^1.0.8", - "@thi.ng/random": "^1.4.3", - "@thi.ng/vectors": "^4.2.3", + "@thi.ng/geom-api": "^1.0.9", + "@thi.ng/random": "^1.4.4", + "@thi.ng/vectors": "^4.2.4", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/porter-duff/CHANGELOG.md b/packages/porter-duff/CHANGELOG.md index ded7235140..ca8a6dbbaa 100644 --- a/packages/porter-duff/CHANGELOG.md +++ b/packages/porter-duff/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.14](https://github.com/thi-ng/umbrella/compare/@thi.ng/porter-duff@0.1.13...@thi.ng/porter-duff@0.1.14) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/porter-duff + + + + + ## [0.1.13](https://github.com/thi-ng/umbrella/compare/@thi.ng/porter-duff@0.1.12...@thi.ng/porter-duff@0.1.13) (2020-04-05) **Note:** Version bump only for package @thi.ng/porter-duff diff --git a/packages/porter-duff/package.json b/packages/porter-duff/package.json index 18cf8c322b..233fa29503 100644 --- a/packages/porter-duff/package.json +++ b/packages/porter-duff/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/porter-duff", - "version": "0.1.13", + "version": "0.1.14", "description": "Porter-Duff operators for packed ints & float-array alpha compositing", "module": "./index.js", "main": "./lib/index.js", @@ -38,7 +38,7 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", + "@thi.ng/api": "^6.10.0", "@thi.ng/math": "^1.7.5", "tslib": "^1.11.1" }, diff --git a/packages/ramp/CHANGELOG.md b/packages/ramp/CHANGELOG.md index 15ec21300d..4420e5da45 100644 --- a/packages/ramp/CHANGELOG.md +++ b/packages/ramp/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/ramp@0.1.8...@thi.ng/ramp@0.1.9) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/ramp + + + + + ## [0.1.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/ramp@0.1.7...@thi.ng/ramp@0.1.8) (2020-04-05) **Note:** Version bump only for package @thi.ng/ramp diff --git a/packages/ramp/package.json b/packages/ramp/package.json index 53e79fa731..f6a7f72e76 100644 --- a/packages/ramp/package.json +++ b/packages/ramp/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/ramp", - "version": "0.1.8", + "version": "0.1.9", "description": "Parametric interpolated 1D lookup tables for remapping values", "module": "./index.js", "main": "./lib/index.js", @@ -38,12 +38,12 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", - "@thi.ng/arrays": "^0.6.1", - "@thi.ng/compare": "^1.3.0", + "@thi.ng/api": "^6.10.0", + "@thi.ng/arrays": "^0.6.2", + "@thi.ng/compare": "^1.3.1", "@thi.ng/math": "^1.7.5", - "@thi.ng/transducers": "^6.4.3", - "@thi.ng/vectors": "^4.2.3", + "@thi.ng/transducers": "^6.4.4", + "@thi.ng/vectors": "^4.2.4", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/random/CHANGELOG.md b/packages/random/CHANGELOG.md index 2efccc7e6a..7b8de6d4b7 100644 --- a/packages/random/CHANGELOG.md +++ b/packages/random/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.4.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/random@1.4.3...@thi.ng/random@1.4.4) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/random + + + + + ## [1.4.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/random@1.4.2...@thi.ng/random@1.4.3) (2020-04-05) **Note:** Version bump only for package @thi.ng/random diff --git a/packages/random/package.json b/packages/random/package.json index 8bd3f80ece..361c5032b9 100644 --- a/packages/random/package.json +++ b/packages/random/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/random", - "version": "1.4.3", + "version": "1.4.4", "description": "Pseudo-random number generators w/ unified API", "module": "./index.js", "main": "./lib/index.js", @@ -38,7 +38,7 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", + "@thi.ng/api": "^6.10.0", "@thi.ng/checks": "^2.6.1", "tslib": "^1.11.1" }, diff --git a/packages/range-coder/CHANGELOG.md b/packages/range-coder/CHANGELOG.md index 83c08fae0f..3844ae833e 100644 --- a/packages/range-coder/CHANGELOG.md +++ b/packages/range-coder/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.37](https://github.com/thi-ng/umbrella/compare/@thi.ng/range-coder@1.0.36...@thi.ng/range-coder@1.0.37) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/range-coder + + + + + ## [1.0.36](https://github.com/thi-ng/umbrella/compare/@thi.ng/range-coder@1.0.35...@thi.ng/range-coder@1.0.36) (2020-04-05) **Note:** Version bump only for package @thi.ng/range-coder diff --git a/packages/range-coder/package.json b/packages/range-coder/package.json index c5c6f9ca6a..5e5a71a1b0 100644 --- a/packages/range-coder/package.json +++ b/packages/range-coder/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/range-coder", - "version": "1.0.36", + "version": "1.0.37", "description": "Binary data range encoder / decoder", "module": "./index.js", "main": "./lib/index.js", @@ -29,7 +29,7 @@ "devDependencies": { "@istanbuljs/nyc-config-typescript": "^1.0.1", "@microsoft/api-extractor": "^7.7.8", - "@thi.ng/transducers": "^6.4.3", + "@thi.ng/transducers": "^6.4.4", "@types/mocha": "^7.0.1", "@types/node": "^13.7.4", "mocha": "^7.1.1", diff --git a/packages/resolve-map/CHANGELOG.md b/packages/resolve-map/CHANGELOG.md index b0b2939e77..2992c1dfd4 100644 --- a/packages/resolve-map/CHANGELOG.md +++ b/packages/resolve-map/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.1.18](https://github.com/thi-ng/umbrella/compare/@thi.ng/resolve-map@4.1.17...@thi.ng/resolve-map@4.1.18) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/resolve-map + + + + + ## [4.1.17](https://github.com/thi-ng/umbrella/compare/@thi.ng/resolve-map@4.1.16...@thi.ng/resolve-map@4.1.17) (2020-04-05) **Note:** Version bump only for package @thi.ng/resolve-map diff --git a/packages/resolve-map/package.json b/packages/resolve-map/package.json index bc08766be7..83cade5f7a 100644 --- a/packages/resolve-map/package.json +++ b/packages/resolve-map/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/resolve-map", - "version": "4.1.17", + "version": "4.1.18", "description": "DAG resolution of vanilla objects & arrays with internally linked values", "module": "./index.js", "main": "./lib/index.js", @@ -37,7 +37,7 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", + "@thi.ng/api": "^6.10.0", "@thi.ng/checks": "^2.6.1", "@thi.ng/errors": "^1.2.9", "@thi.ng/paths": "^4.0.1", diff --git a/packages/router/CHANGELOG.md b/packages/router/CHANGELOG.md index 8534b83e4e..eced18202e 100644 --- a/packages/router/CHANGELOG.md +++ b/packages/router/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.0.16](https://github.com/thi-ng/umbrella/compare/@thi.ng/router@2.0.15...@thi.ng/router@2.0.16) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/router + + + + + ## [2.0.15](https://github.com/thi-ng/umbrella/compare/@thi.ng/router@2.0.14...@thi.ng/router@2.0.15) (2020-04-05) **Note:** Version bump only for package @thi.ng/router diff --git a/packages/router/package.json b/packages/router/package.json index c1de856362..1a039f5e24 100644 --- a/packages/router/package.json +++ b/packages/router/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/router", - "version": "2.0.15", + "version": "2.0.16", "description": "Generic router for browser & non-browser based applications", "module": "./index.js", "main": "./lib/index.js", @@ -38,7 +38,7 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", + "@thi.ng/api": "^6.10.0", "@thi.ng/checks": "^2.6.1", "@thi.ng/equiv": "^1.0.18", "@thi.ng/errors": "^1.2.9", diff --git a/packages/rstream-csp/CHANGELOG.md b/packages/rstream-csp/CHANGELOG.md index 8521035eaa..eb368854cd 100644 --- a/packages/rstream-csp/CHANGELOG.md +++ b/packages/rstream-csp/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.0.11](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-csp@2.0.10...@thi.ng/rstream-csp@2.0.11) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/rstream-csp + + + + + ## [2.0.10](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-csp@2.0.9...@thi.ng/rstream-csp@2.0.10) (2020-04-05) **Note:** Version bump only for package @thi.ng/rstream-csp diff --git a/packages/rstream-csp/package.json b/packages/rstream-csp/package.json index cb9a1212b8..a3277944f7 100644 --- a/packages/rstream-csp/package.json +++ b/packages/rstream-csp/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-csp", - "version": "2.0.10", + "version": "2.0.11", "description": "@thi.ng/csp bridge module for @thi.ng/rstream", "module": "./index.js", "main": "./lib/index.js", @@ -38,8 +38,8 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/csp": "^1.1.16", - "@thi.ng/rstream": "^4.0.2", + "@thi.ng/csp": "^1.1.17", + "@thi.ng/rstream": "^4.0.3", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/rstream-dot/CHANGELOG.md b/packages/rstream-dot/CHANGELOG.md index e8da9767ff..ced509167a 100644 --- a/packages/rstream-dot/CHANGELOG.md +++ b/packages/rstream-dot/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.1.18](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-dot@1.1.17...@thi.ng/rstream-dot@1.1.18) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/rstream-dot + + + + + ## [1.1.17](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-dot@1.1.16...@thi.ng/rstream-dot@1.1.17) (2020-04-05) **Note:** Version bump only for package @thi.ng/rstream-dot diff --git a/packages/rstream-dot/package.json b/packages/rstream-dot/package.json index d37c5d051f..bcfaa66adc 100644 --- a/packages/rstream-dot/package.json +++ b/packages/rstream-dot/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-dot", - "version": "1.1.17", + "version": "1.1.18", "description": "Graphviz DOT conversion of @thi.ng/rstream dataflow graph topologies", "module": "./index.js", "main": "./lib/index.js", @@ -38,7 +38,7 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/rstream": "^4.0.2", + "@thi.ng/rstream": "^4.0.3", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/rstream-gestures/CHANGELOG.md b/packages/rstream-gestures/CHANGELOG.md index b8bf285798..847e1b7864 100644 --- a/packages/rstream-gestures/CHANGELOG.md +++ b/packages/rstream-gestures/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.0.10](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-gestures@2.0.9...@thi.ng/rstream-gestures@2.0.10) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/rstream-gestures + + + + + ## [2.0.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-gestures@2.0.8...@thi.ng/rstream-gestures@2.0.9) (2020-04-05) **Note:** Version bump only for package @thi.ng/rstream-gestures diff --git a/packages/rstream-gestures/package.json b/packages/rstream-gestures/package.json index d234875bac..e5d803978a 100644 --- a/packages/rstream-gestures/package.json +++ b/packages/rstream-gestures/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-gestures", - "version": "2.0.9", + "version": "2.0.10", "description": "Unified mouse, mouse wheel & multi-touch event stream abstraction", "module": "./index.js", "main": "./lib/index.js", @@ -38,11 +38,11 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", + "@thi.ng/api": "^6.10.0", "@thi.ng/checks": "^2.6.1", "@thi.ng/math": "^1.7.5", - "@thi.ng/rstream": "^4.0.2", - "@thi.ng/transducers": "^6.4.3", + "@thi.ng/rstream": "^4.0.3", + "@thi.ng/transducers": "^6.4.4", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/rstream-graph/CHANGELOG.md b/packages/rstream-graph/CHANGELOG.md index 8b976dc528..192541d29e 100644 --- a/packages/rstream-graph/CHANGELOG.md +++ b/packages/rstream-graph/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.2.11](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-graph@3.2.10...@thi.ng/rstream-graph@3.2.11) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/rstream-graph + + + + + ## [3.2.10](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-graph@3.2.9...@thi.ng/rstream-graph@3.2.10) (2020-04-05) **Note:** Version bump only for package @thi.ng/rstream-graph diff --git a/packages/rstream-graph/package.json b/packages/rstream-graph/package.json index f28b37fb2f..16411db163 100644 --- a/packages/rstream-graph/package.json +++ b/packages/rstream-graph/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-graph", - "version": "3.2.10", + "version": "3.2.11", "description": "Declarative dataflow graph construction for @thi.ng/rstream", "module": "./index.js", "main": "./lib/index.js", @@ -38,13 +38,13 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", + "@thi.ng/api": "^6.10.0", "@thi.ng/checks": "^2.6.1", "@thi.ng/errors": "^1.2.9", "@thi.ng/paths": "^4.0.1", - "@thi.ng/resolve-map": "^4.1.17", - "@thi.ng/rstream": "^4.0.2", - "@thi.ng/transducers": "^6.4.3", + "@thi.ng/resolve-map": "^4.1.18", + "@thi.ng/rstream": "^4.0.3", + "@thi.ng/transducers": "^6.4.4", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/rstream-log-file/CHANGELOG.md b/packages/rstream-log-file/CHANGELOG.md index 9c6cddd709..a78d4ef4c1 100644 --- a/packages/rstream-log-file/CHANGELOG.md +++ b/packages/rstream-log-file/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.33](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log-file@0.1.32...@thi.ng/rstream-log-file@0.1.33) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/rstream-log-file + + + + + ## [0.1.32](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log-file@0.1.31...@thi.ng/rstream-log-file@0.1.32) (2020-04-05) **Note:** Version bump only for package @thi.ng/rstream-log-file diff --git a/packages/rstream-log-file/package.json b/packages/rstream-log-file/package.json index a6d0e04581..47c98d73ec 100644 --- a/packages/rstream-log-file/package.json +++ b/packages/rstream-log-file/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-log-file", - "version": "0.1.32", + "version": "0.1.33", "description": "File output handler for structured, multilevel & hierarchical loggers based on @thi.ng/rstream", "module": "./index.js", "main": "./lib/index.js", @@ -38,7 +38,7 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/rstream": "^4.0.2", + "@thi.ng/rstream": "^4.0.3", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/rstream-log/CHANGELOG.md b/packages/rstream-log/CHANGELOG.md index a2d445ecac..ff5ae757bc 100644 --- a/packages/rstream-log/CHANGELOG.md +++ b/packages/rstream-log/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.1.18](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log@3.1.17...@thi.ng/rstream-log@3.1.18) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/rstream-log + + + + + ## [3.1.17](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log@3.1.16...@thi.ng/rstream-log@3.1.17) (2020-04-05) **Note:** Version bump only for package @thi.ng/rstream-log diff --git a/packages/rstream-log/package.json b/packages/rstream-log/package.json index 6dfc30b3f0..5588a8c950 100644 --- a/packages/rstream-log/package.json +++ b/packages/rstream-log/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-log", - "version": "3.1.17", + "version": "3.1.18", "description": "Structured, multilevel & hierarchical loggers based on @thi.ng/rstream", "module": "./index.js", "main": "./lib/index.js", @@ -38,11 +38,11 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", + "@thi.ng/api": "^6.10.0", "@thi.ng/checks": "^2.6.1", "@thi.ng/errors": "^1.2.9", - "@thi.ng/rstream": "^4.0.2", - "@thi.ng/transducers": "^6.4.3", + "@thi.ng/rstream": "^4.0.3", + "@thi.ng/transducers": "^6.4.4", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/rstream-query/CHANGELOG.md b/packages/rstream-query/CHANGELOG.md index 45629d8618..a1378d40c9 100644 --- a/packages/rstream-query/CHANGELOG.md +++ b/packages/rstream-query/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.1.18](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-query@1.1.17...@thi.ng/rstream-query@1.1.18) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/rstream-query + + + + + ## [1.1.17](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-query@1.1.16...@thi.ng/rstream-query@1.1.17) (2020-04-05) **Note:** Version bump only for package @thi.ng/rstream-query diff --git a/packages/rstream-query/package.json b/packages/rstream-query/package.json index ade828ec2c..c17bad23db 100644 --- a/packages/rstream-query/package.json +++ b/packages/rstream-query/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-query", - "version": "1.1.17", + "version": "1.1.18", "description": "@thi.ng/rstream based triple store & reactive query engine", "module": "./index.js", "main": "./lib/index.js", @@ -38,15 +38,15 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", - "@thi.ng/associative": "^4.0.1", + "@thi.ng/api": "^6.10.0", + "@thi.ng/associative": "^4.0.2", "@thi.ng/checks": "^2.6.1", "@thi.ng/equiv": "^1.0.18", "@thi.ng/errors": "^1.2.9", "@thi.ng/math": "^1.7.5", - "@thi.ng/rstream": "^4.0.2", - "@thi.ng/rstream-dot": "^1.1.17", - "@thi.ng/transducers": "^6.4.3", + "@thi.ng/rstream": "^4.0.3", + "@thi.ng/rstream-dot": "^1.1.18", + "@thi.ng/transducers": "^6.4.4", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/rstream/CHANGELOG.md b/packages/rstream/CHANGELOG.md index 118ab4e76f..038e278eff 100644 --- a/packages/rstream/CHANGELOG.md +++ b/packages/rstream/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream@4.0.2...@thi.ng/rstream@4.0.3) (2020-04-06) + + +### Bug Fixes + +* **rstream:** fix Subscription.subscribe() ([2a7f6ad](https://github.com/thi-ng/umbrella/commit/2a7f6ad01f6b239e46eb59d4b12f30356dbf078a)) + + + + + ## [4.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream@4.0.1...@thi.ng/rstream@4.0.2) (2020-04-05) **Note:** Version bump only for package @thi.ng/rstream diff --git a/packages/rstream/README.md b/packages/rstream/README.md index 55ee54c7c5..9da7e79f54 100644 --- a/packages/rstream/README.md +++ b/packages/rstream/README.md @@ -128,7 +128,7 @@ options](#common-configuration-options) for further details. yarn add @thi.ng/rstream ``` -Package sizes (gzipped, pre-treeshake): ESM: 5.09 KB / CJS: 5.27 KB / UMD: 5.21 KB +Package sizes (gzipped, pre-treeshake): ESM: 5.10 KB / CJS: 5.28 KB / UMD: 5.21 KB ## Dependencies diff --git a/packages/rstream/package.json b/packages/rstream/package.json index 87c6668c7c..423c5e549a 100644 --- a/packages/rstream/package.json +++ b/packages/rstream/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream", - "version": "4.0.2", + "version": "4.0.3", "description": "Reactive streams & subscription primitives for constructing dataflow graphs / pipelines", "module": "./index.js", "main": "./lib/index.js", @@ -38,13 +38,13 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", - "@thi.ng/associative": "^4.0.1", - "@thi.ng/atom": "^4.1.1", + "@thi.ng/api": "^6.10.0", + "@thi.ng/associative": "^4.0.2", + "@thi.ng/atom": "^4.1.2", "@thi.ng/checks": "^2.6.1", "@thi.ng/errors": "^1.2.9", "@thi.ng/paths": "^4.0.1", - "@thi.ng/transducers": "^6.4.3", + "@thi.ng/transducers": "^6.4.4", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/rstream/src/pubsub.ts b/packages/rstream/src/pubsub.ts index 020706e40d..f712bcc326 100644 --- a/packages/rstream/src/pubsub.ts +++ b/packages/rstream/src/pubsub.ts @@ -1,15 +1,10 @@ +import type { Fn, Predicate2 } from "@thi.ng/api"; import { EquivMap } from "@thi.ng/associative"; import { unsupported } from "@thi.ng/errors"; -import { - CommonOpts, - ISubscriber, - LOGGER, - SubscriptionOpts -} from "./api"; +import type { Transducer } from "@thi.ng/transducers"; +import { CommonOpts, ISubscriber, LOGGER, SubscriptionOpts } from "./api"; import { Subscription, subscription } from "./subscription"; import { optsWithID } from "./utils/idgen"; -import type { Fn, Predicate2 } from "@thi.ng/api"; -import type { Transducer } from "@thi.ng/transducers"; export interface PubSubOpts { /** @@ -72,12 +67,12 @@ export class PubSub extends Subscription { super( undefined, optsWithID("pubsub", >>{ - xform: opts.xform + xform: opts.xform, }) ); this.topicfn = opts.topic; this.topics = new EquivMap>(undefined, { - equiv: opts.equiv + equiv: opts.equiv, }); } diff --git a/packages/rstream/src/subscription.ts b/packages/rstream/src/subscription.ts index 9b7b75bb70..875471f8f1 100644 --- a/packages/rstream/src/subscription.ts +++ b/packages/rstream/src/subscription.ts @@ -8,7 +8,7 @@ import { push, Reducer, Transducer, - unreduced + unreduced, } from "@thi.ng/transducers"; import { CloseMode, @@ -18,7 +18,7 @@ import { ITransformable, LOGGER, State, - SubscriptionOpts + SubscriptionOpts, } from "./api"; import { nextID } from "./utils/idgen"; @@ -136,6 +136,7 @@ export class Subscription subscribe(...args: any[]): any { this.ensureState(); let sub: Subscription | undefined; + !peek(args) && args.pop(); let opts: SubscriptionOpts = args.length > 1 && isPlainObject(peek(args)) ? { ...args.pop() } diff --git a/packages/rstream/test/pubsub.ts b/packages/rstream/test/pubsub.ts index 91f6893a72..57d1f5aaa6 100644 --- a/packages/rstream/test/pubsub.ts +++ b/packages/rstream/test/pubsub.ts @@ -1,12 +1,12 @@ import { EquivMap } from "@thi.ng/associative"; -import { mapIndexed } from "@thi.ng/transducers"; +import { mapIndexed, map } from "@thi.ng/transducers"; import * as assert from "assert"; import { fromIterable, fromIterableSync, PubSub, pubsub, - State + State, } from "../src/index"; import { TIMEOUT } from "./config"; @@ -32,7 +32,7 @@ describe("PubSub", () => { next: (x: any) => { let v = acc.get(x); v ? v.push(x) : acc.set(x, [x]); - } + }, }; pub = pubsub({ topic: (x) => x }); pub.subscribeTopic(["a", 0], collect); @@ -43,7 +43,7 @@ describe("PubSub", () => { ["a", 1], ["b", 2], ["a", 0], - ["c", 3] + ["c", 3], ]).subscribe(pub); assert.deepEqual( [...acc], @@ -52,11 +52,11 @@ describe("PubSub", () => { ["a", 0], [ ["a", 0], - ["a", 0] - ] + ["a", 0], + ], ], [["a", 1], [["a", 1]]], - [["b", 2], [["b", 2]]] + [["b", 2], [["b", 2]]], ] ); assert.equal(pub.getState(), State.DONE); @@ -67,7 +67,7 @@ describe("PubSub", () => { const collect = { next: (x: any) => acc[x[0]].push(x) }; pub = pubsub({ topic: (x) => x[0], - xform: mapIndexed((i, x) => [x, i]) + xform: mapIndexed((i, x) => [x, i]), }); pub.subscribeTopic("a", collect); pub.subscribeTopic("b", collect); @@ -76,21 +76,21 @@ describe("PubSub", () => { a: [["a", 0]], b: [ ["b", 1], - ["b", 3] + ["b", 3], ], c: [], - d: [] + d: [], }); assert.equal(pub.getState(), State.DONE); }); - it("unsubTopic", function(done) { + it("unsubTopic", function (done) { this.timeout(TIMEOUT * 8); const acc: any = { a: [], b: [] }; const collect = { next: (x: any) => { acc[x].push(x); - } + }, }; pub = pubsub({ topic: (x) => x }); pub.subscribeTopic("a", collect); @@ -105,4 +105,33 @@ describe("PubSub", () => { done(); }, TIMEOUT * 7.5); }); + + it("subTopic xform", () => { + const acc: any = []; + const collect = { + next(x: any) { + acc.push(x); + }, + }; + pub = pubsub({ topic: (x) => x }); + pub.subscribeTopic( + "a", + map((x) => x.toUpperCase()) + ).subscribe(collect); + pub.next("a"); + assert.deepEqual(acc, ["A"]); + }); + + it("subTopic only", () => { + const acc: any[] = []; + pub = pubsub({ topic: (x) => x }); + const topic = pub.subscribeTopic("a"); + topic.subscribe({ + next(x) { + acc.push(x); + }, + }); + pub.next("a"); + assert.deepEqual(acc, ["a"]); + }); }); diff --git a/packages/rstream/test/subscription.ts b/packages/rstream/test/subscription.ts index aead03ba7f..34a96c524a 100644 --- a/packages/rstream/test/subscription.ts +++ b/packages/rstream/test/subscription.ts @@ -1,6 +1,12 @@ -import { partition } from "@thi.ng/transducers"; +import { partition, map } from "@thi.ng/transducers"; import * as assert from "assert"; -import { fromIterable, State, Stream } from "../src/index"; +import { + fromIterable, + State, + Stream, + fromIterableSync, + CloseMode, +} from "../src/index"; import { TIMEOUT } from "./config"; describe("Subscription", () => { @@ -8,14 +14,14 @@ describe("Subscription", () => { beforeEach(() => {}); - it("new sub receives last", function(done) { + it("new sub receives last", function (done) { this.timeout(TIMEOUT * 5); let buf: any[] = []; src = fromIterable([1, 2, 3], { delay: TIMEOUT }); src.subscribe({ next(x) { buf.push(x); - } + }, }); setTimeout( () => @@ -26,13 +32,13 @@ describe("Subscription", () => { done() { assert.deepEqual(buf, [1, 2, 2, 3, 3]); done(); - } + }, }), TIMEOUT * 2.5 ); }); - it("unsub does not trigger Subscription.done()", function(done) { + it("unsub does not trigger Subscription.done()", function (done) { this.timeout(TIMEOUT * 5); let buf: any[] = []; let called = false; @@ -43,7 +49,7 @@ describe("Subscription", () => { }, done() { called = true; - } + }, }); setTimeout(() => sub.unsubscribe(), TIMEOUT * 1.5); setTimeout(() => { @@ -55,7 +61,7 @@ describe("Subscription", () => { }, TIMEOUT * 4); }); - it("no new values after unsub", function(done) { + it("no new values after unsub", function (done) { this.timeout(TIMEOUT * 5); let buf: any[] = []; @@ -68,7 +74,7 @@ describe("Subscription", () => { }, done() { called = true; - } + }, }, partition(2, true) ); @@ -93,9 +99,38 @@ describe("Subscription", () => { assert.deepEqual(buf, [[1, 2], [3]]); assert.equal(src.getState(), State.DONE); done(); - } + }, }, partition(2, true) ); }); + + it("sub xform only", () => { + let buf: any[] = []; + fromIterableSync([1], { closeIn: CloseMode.NEVER }) + .subscribe( + map((x: number) => x + 10), + undefined + ) + .subscribe({ + next(x) { + buf.push(x); + }, + }); + assert.deepEqual(buf, [11]); + }); + + it("sub w/ xform", () => { + let buf: any[] = []; + fromIterableSync([1], { closeIn: CloseMode.NEVER }).subscribe( + { + next(x) { + buf.push(x); + }, + }, + map((x: number) => x + 10), + undefined + ); + assert.deepEqual(buf, [11]); + }); }); diff --git a/packages/sax/CHANGELOG.md b/packages/sax/CHANGELOG.md index 419350f602..2527a11d5e 100644 --- a/packages/sax/CHANGELOG.md +++ b/packages/sax/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.1.17](https://github.com/thi-ng/umbrella/compare/@thi.ng/sax@1.1.16...@thi.ng/sax@1.1.17) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/sax + + + + + ## [1.1.16](https://github.com/thi-ng/umbrella/compare/@thi.ng/sax@1.1.15...@thi.ng/sax@1.1.16) (2020-04-05) **Note:** Version bump only for package @thi.ng/sax diff --git a/packages/sax/package.json b/packages/sax/package.json index 926469c370..17e887981e 100644 --- a/packages/sax/package.json +++ b/packages/sax/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/sax", - "version": "1.1.16", + "version": "1.1.17", "description": "Transducer-based, SAX-like, non-validating, speedy & tiny XML parser", "module": "./index.js", "main": "./lib/index.js", @@ -38,9 +38,9 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", - "@thi.ng/transducers": "^6.4.3", - "@thi.ng/transducers-fsm": "^1.1.16", + "@thi.ng/api": "^6.10.0", + "@thi.ng/transducers": "^6.4.4", + "@thi.ng/transducers-fsm": "^1.1.17", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/scenegraph/CHANGELOG.md b/packages/scenegraph/CHANGELOG.md index 690e4bdeba..e899c73543 100644 --- a/packages/scenegraph/CHANGELOG.md +++ b/packages/scenegraph/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.10](https://github.com/thi-ng/umbrella/compare/@thi.ng/scenegraph@0.1.9...@thi.ng/scenegraph@0.1.10) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/scenegraph + + + + + ## [0.1.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/scenegraph@0.1.8...@thi.ng/scenegraph@0.1.9) (2020-04-05) **Note:** Version bump only for package @thi.ng/scenegraph diff --git a/packages/scenegraph/package.json b/packages/scenegraph/package.json index b43980cfd6..e06f6888a3 100644 --- a/packages/scenegraph/package.json +++ b/packages/scenegraph/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/scenegraph", - "version": "0.1.9", + "version": "0.1.10", "description": "Extensible 2D/3D scene graph with @thi.ng/hdom-canvas support", "module": "./index.js", "main": "./lib/index.js", @@ -38,10 +38,10 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", + "@thi.ng/api": "^6.10.0", "@thi.ng/checks": "^2.6.1", - "@thi.ng/matrices": "^0.6.6", - "@thi.ng/vectors": "^4.2.3", + "@thi.ng/matrices": "^0.6.7", + "@thi.ng/vectors": "^4.2.4", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/seq/CHANGELOG.md b/packages/seq/CHANGELOG.md index c8a0be5d1e..9706a9a92e 100644 --- a/packages/seq/CHANGELOG.md +++ b/packages/seq/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.2.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/seq@0.2.7...@thi.ng/seq@0.2.8) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/seq + + + + + ## [0.2.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/seq@0.2.6...@thi.ng/seq@0.2.7) (2020-04-05) **Note:** Version bump only for package @thi.ng/seq diff --git a/packages/seq/package.json b/packages/seq/package.json index 83501a044f..4a3b5f2d11 100644 --- a/packages/seq/package.json +++ b/packages/seq/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/seq", - "version": "0.2.7", + "version": "0.2.8", "description": "Various implementations of the @thi.ng/api `ISeq` interface / sequence abstraction", "module": "./index.js", "main": "./lib/index.js", @@ -38,7 +38,7 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", + "@thi.ng/api": "^6.10.0", "@thi.ng/checks": "^2.6.1", "tslib": "^1.11.1" }, diff --git a/packages/sexpr/CHANGELOG.md b/packages/sexpr/CHANGELOG.md index 2bbfa7779b..4365812a15 100644 --- a/packages/sexpr/CHANGELOG.md +++ b/packages/sexpr/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.2.11](https://github.com/thi-ng/umbrella/compare/@thi.ng/sexpr@0.2.10...@thi.ng/sexpr@0.2.11) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/sexpr + + + + + ## [0.2.10](https://github.com/thi-ng/umbrella/compare/@thi.ng/sexpr@0.2.9...@thi.ng/sexpr@0.2.10) (2020-04-05) **Note:** Version bump only for package @thi.ng/sexpr diff --git a/packages/sexpr/package.json b/packages/sexpr/package.json index 98e526b62e..6c323e531d 100644 --- a/packages/sexpr/package.json +++ b/packages/sexpr/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/sexpr", - "version": "0.2.10", + "version": "0.2.11", "description": "Extensible S-Expression parser & runtime infrastructure", "module": "./index.js", "main": "./lib/index.js", @@ -38,9 +38,9 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", + "@thi.ng/api": "^6.10.0", "@thi.ng/checks": "^2.6.1", - "@thi.ng/defmulti": "^1.2.9", + "@thi.ng/defmulti": "^1.2.10", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/shader-ast-glsl/CHANGELOG.md b/packages/shader-ast-glsl/CHANGELOG.md index ba8a072374..61e0e96abe 100644 --- a/packages/shader-ast-glsl/CHANGELOG.md +++ b/packages/shader-ast-glsl/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.20](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-glsl@0.1.19...@thi.ng/shader-ast-glsl@0.1.20) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/shader-ast-glsl + + + + + ## [0.1.19](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-glsl@0.1.18...@thi.ng/shader-ast-glsl@0.1.19) (2020-04-05) **Note:** Version bump only for package @thi.ng/shader-ast-glsl diff --git a/packages/shader-ast-glsl/package.json b/packages/shader-ast-glsl/package.json index 60ea4bcf55..b94f37292a 100644 --- a/packages/shader-ast-glsl/package.json +++ b/packages/shader-ast-glsl/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/shader-ast-glsl", - "version": "0.1.19", + "version": "0.1.20", "description": "Customizable GLSL code generator for @thi.ng/shader-ast", "module": "./index.js", "main": "./lib/index.js", @@ -38,10 +38,10 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", + "@thi.ng/api": "^6.10.0", "@thi.ng/checks": "^2.6.1", "@thi.ng/errors": "^1.2.9", - "@thi.ng/shader-ast": "^0.3.13", + "@thi.ng/shader-ast": "^0.3.14", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/shader-ast-js/CHANGELOG.md b/packages/shader-ast-js/CHANGELOG.md index 3b86f5bad3..191ab90112 100644 --- a/packages/shader-ast-js/CHANGELOG.md +++ b/packages/shader-ast-js/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.4.13](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-js@0.4.12...@thi.ng/shader-ast-js@0.4.13) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/shader-ast-js + + + + + ## [0.4.12](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-js@0.4.11...@thi.ng/shader-ast-js@0.4.12) (2020-04-05) **Note:** Version bump only for package @thi.ng/shader-ast-js diff --git a/packages/shader-ast-js/package.json b/packages/shader-ast-js/package.json index bfe69c1890..72113541de 100644 --- a/packages/shader-ast-js/package.json +++ b/packages/shader-ast-js/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/shader-ast-js", - "version": "0.4.12", + "version": "0.4.13", "description": "Customizable JS code generator, compiler & runtime for @thi.ng/shader-ast", "module": "./index.js", "main": "./lib/index.js", @@ -38,14 +38,14 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", + "@thi.ng/api": "^6.10.0", "@thi.ng/checks": "^2.6.1", "@thi.ng/errors": "^1.2.9", "@thi.ng/math": "^1.7.5", - "@thi.ng/matrices": "^0.6.6", - "@thi.ng/pixel": "^0.1.14", - "@thi.ng/shader-ast": "^0.3.13", - "@thi.ng/vectors": "^4.2.3", + "@thi.ng/matrices": "^0.6.7", + "@thi.ng/pixel": "^0.1.15", + "@thi.ng/shader-ast": "^0.3.14", + "@thi.ng/vectors": "^4.2.4", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/shader-ast-stdlib/CHANGELOG.md b/packages/shader-ast-stdlib/CHANGELOG.md index 2e1da2c996..524c537c48 100644 --- a/packages/shader-ast-stdlib/CHANGELOG.md +++ b/packages/shader-ast-stdlib/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.3.13](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-stdlib@0.3.12...@thi.ng/shader-ast-stdlib@0.3.13) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/shader-ast-stdlib + + + + + ## [0.3.12](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast-stdlib@0.3.11...@thi.ng/shader-ast-stdlib@0.3.12) (2020-04-05) **Note:** Version bump only for package @thi.ng/shader-ast-stdlib diff --git a/packages/shader-ast-stdlib/package.json b/packages/shader-ast-stdlib/package.json index bfcfcf9106..157bd8e0c0 100644 --- a/packages/shader-ast-stdlib/package.json +++ b/packages/shader-ast-stdlib/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/shader-ast-stdlib", - "version": "0.3.12", + "version": "0.3.13", "description": "Function collection for modular GPGPU / shader programming with @thi.ng/shader-ast", "module": "./index.js", "main": "./lib/index.js", @@ -38,7 +38,7 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/shader-ast": "^0.3.13", + "@thi.ng/shader-ast": "^0.3.14", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/shader-ast/CHANGELOG.md b/packages/shader-ast/CHANGELOG.md index 87972315d1..e34352f1c4 100644 --- a/packages/shader-ast/CHANGELOG.md +++ b/packages/shader-ast/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.3.14](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast@0.3.13...@thi.ng/shader-ast@0.3.14) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/shader-ast + + + + + ## [0.3.13](https://github.com/thi-ng/umbrella/compare/@thi.ng/shader-ast@0.3.12...@thi.ng/shader-ast@0.3.13) (2020-04-05) **Note:** Version bump only for package @thi.ng/shader-ast diff --git a/packages/shader-ast/package.json b/packages/shader-ast/package.json index 8d554cb581..ec7a022124 100644 --- a/packages/shader-ast/package.json +++ b/packages/shader-ast/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/shader-ast", - "version": "0.3.13", + "version": "0.3.14", "description": "DSL to define shader code in TypeScript and cross-compile to GLSL, JS and other targets", "module": "./index.js", "main": "./lib/index.js", @@ -38,10 +38,10 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", + "@thi.ng/api": "^6.10.0", "@thi.ng/checks": "^2.6.1", - "@thi.ng/defmulti": "^1.2.9", - "@thi.ng/dgraph": "^1.2.1", + "@thi.ng/defmulti": "^1.2.10", + "@thi.ng/dgraph": "^1.2.2", "@thi.ng/errors": "^1.2.9", "tslib": "^1.11.1" }, diff --git a/packages/simd/CHANGELOG.md b/packages/simd/CHANGELOG.md index f23396dcb4..25204d2a4e 100644 --- a/packages/simd/CHANGELOG.md +++ b/packages/simd/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.11](https://github.com/thi-ng/umbrella/compare/@thi.ng/simd@0.1.10...@thi.ng/simd@0.1.11) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/simd + + + + + ## [0.1.10](https://github.com/thi-ng/umbrella/compare/@thi.ng/simd@0.1.9...@thi.ng/simd@0.1.10) (2020-04-05) **Note:** Version bump only for package @thi.ng/simd diff --git a/packages/simd/package.json b/packages/simd/package.json index acb86c21ac..8ac61f63bb 100644 --- a/packages/simd/package.json +++ b/packages/simd/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/simd", - "version": "0.1.10", + "version": "0.1.11", "description": "WASM based SIMD vector operations for batch processing", "module": "./index.js", "main": "./lib/index.js", @@ -42,8 +42,8 @@ }, "dependencies": { "@thi.ng/checks": "^2.6.1", - "@thi.ng/transducers": "^6.4.3", - "@thi.ng/transducers-binary": "^0.5.6", + "@thi.ng/transducers": "^6.4.4", + "@thi.ng/transducers-binary": "^0.5.7", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/soa/CHANGELOG.md b/packages/soa/CHANGELOG.md index 83c5117466..7bcb0ae9e8 100644 --- a/packages/soa/CHANGELOG.md +++ b/packages/soa/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.11](https://github.com/thi-ng/umbrella/compare/@thi.ng/soa@0.1.10...@thi.ng/soa@0.1.11) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/soa + + + + + ## [0.1.10](https://github.com/thi-ng/umbrella/compare/@thi.ng/soa@0.1.9...@thi.ng/soa@0.1.10) (2020-04-05) **Note:** Version bump only for package @thi.ng/soa diff --git a/packages/soa/package.json b/packages/soa/package.json index 352ba582b4..bfaeab55d1 100644 --- a/packages/soa/package.json +++ b/packages/soa/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/soa", - "version": "0.1.10", + "version": "0.1.11", "description": "SOA & AOS memory mapped structured views with optional & extensible serialization", "module": "./index.js", "main": "./lib/index.js", @@ -39,10 +39,10 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", + "@thi.ng/api": "^6.10.0", "@thi.ng/binary": "^2.0.2", - "@thi.ng/transducers-binary": "^0.5.6", - "@thi.ng/vectors": "^4.2.3", + "@thi.ng/transducers-binary": "^0.5.7", + "@thi.ng/vectors": "^4.2.4", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/sparse/CHANGELOG.md b/packages/sparse/CHANGELOG.md index a57d599fa7..272358e507 100644 --- a/packages/sparse/CHANGELOG.md +++ b/packages/sparse/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.33](https://github.com/thi-ng/umbrella/compare/@thi.ng/sparse@0.1.32...@thi.ng/sparse@0.1.33) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/sparse + + + + + ## [0.1.32](https://github.com/thi-ng/umbrella/compare/@thi.ng/sparse@0.1.31...@thi.ng/sparse@0.1.32) (2020-04-05) **Note:** Version bump only for package @thi.ng/sparse diff --git a/packages/sparse/package.json b/packages/sparse/package.json index fd3ebaaf94..302779a130 100644 --- a/packages/sparse/package.json +++ b/packages/sparse/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/sparse", - "version": "0.1.32", + "version": "0.1.33", "description": "Sparse vector & matrix implementations", "module": "./index.js", "main": "./lib/index.js", @@ -38,8 +38,8 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", - "@thi.ng/transducers": "^6.4.3", + "@thi.ng/api": "^6.10.0", + "@thi.ng/transducers": "^6.4.4", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/strings/CHANGELOG.md b/packages/strings/CHANGELOG.md index b6c9bc82b7..8e5beccdc9 100644 --- a/packages/strings/CHANGELOG.md +++ b/packages/strings/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.8.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/strings@1.8.1...@thi.ng/strings@1.8.2) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/strings + + + + + ## [1.8.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/strings@1.8.0...@thi.ng/strings@1.8.1) (2020-04-05) **Note:** Version bump only for package @thi.ng/strings diff --git a/packages/strings/package.json b/packages/strings/package.json index fb7f21d1d5..626e89293e 100644 --- a/packages/strings/package.json +++ b/packages/strings/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/strings", - "version": "1.8.1", + "version": "1.8.2", "description": "Various string formatting & utility functions", "module": "./index.js", "main": "./lib/index.js", @@ -38,9 +38,9 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", + "@thi.ng/api": "^6.10.0", "@thi.ng/errors": "^1.2.9", - "@thi.ng/memoize": "^2.0.5", + "@thi.ng/memoize": "^2.0.6", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/system/CHANGELOG.md b/packages/system/CHANGELOG.md index 20e1083efb..5508ce7a00 100644 --- a/packages/system/CHANGELOG.md +++ b/packages/system/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.2.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/system@0.2.1...@thi.ng/system@0.2.2) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/system + + + + + ## [0.2.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/system@0.2.0...@thi.ng/system@0.2.1) (2020-04-05) **Note:** Version bump only for package @thi.ng/system diff --git a/packages/system/package.json b/packages/system/package.json index 3afcd47d7a..000ac887a8 100644 --- a/packages/system/package.json +++ b/packages/system/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/system", - "version": "0.2.1", + "version": "0.2.2", "description": "Minimal DI / life cycle container for stateful app components", "module": "./index.js", "main": "./lib/index.js", @@ -38,8 +38,8 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", - "@thi.ng/dgraph": "^1.2.1", + "@thi.ng/api": "^6.10.0", + "@thi.ng/dgraph": "^1.2.2", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/text-canvas/CHANGELOG.md b/packages/text-canvas/CHANGELOG.md index 717e2e797f..dc04fe1259 100644 --- a/packages/text-canvas/CHANGELOG.md +++ b/packages/text-canvas/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.2.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/text-canvas@0.2.3...@thi.ng/text-canvas@0.2.4) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/text-canvas + + + + + ## [0.2.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/text-canvas@0.2.2...@thi.ng/text-canvas@0.2.3) (2020-04-05) **Note:** Version bump only for package @thi.ng/text-canvas diff --git a/packages/text-canvas/package.json b/packages/text-canvas/package.json index a0e7d716d5..b2b2633847 100644 --- a/packages/text-canvas/package.json +++ b/packages/text-canvas/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/text-canvas", - "version": "0.2.3", + "version": "0.2.4", "description": "Text based canvas, drawing, tables with arbitrary formatting (incl. ANSI/HTML)", "module": "./index.js", "main": "./lib/index.js", @@ -39,12 +39,12 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", - "@thi.ng/arrays": "^0.6.1", - "@thi.ng/geom-clip-line": "^1.0.6", + "@thi.ng/api": "^6.10.0", + "@thi.ng/arrays": "^0.6.2", + "@thi.ng/geom-clip-line": "^1.0.7", "@thi.ng/math": "^1.7.5", - "@thi.ng/memoize": "^2.0.5", - "@thi.ng/transducers": "^6.4.3", + "@thi.ng/memoize": "^2.0.6", + "@thi.ng/transducers": "^6.4.4", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/transducers-binary/CHANGELOG.md b/packages/transducers-binary/CHANGELOG.md index 7ab712d51d..72e5676a13 100644 --- a/packages/transducers-binary/CHANGELOG.md +++ b/packages/transducers-binary/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.5.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-binary@0.5.6...@thi.ng/transducers-binary@0.5.7) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/transducers-binary + + + + + ## [0.5.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-binary@0.5.5...@thi.ng/transducers-binary@0.5.6) (2020-04-05) **Note:** Version bump only for package @thi.ng/transducers-binary diff --git a/packages/transducers-binary/package.json b/packages/transducers-binary/package.json index f2108d3479..8d0d8d15f1 100644 --- a/packages/transducers-binary/package.json +++ b/packages/transducers-binary/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/transducers-binary", - "version": "0.5.6", + "version": "0.5.7", "description": "Binary data related transducers & reducers", "module": "./index.js", "main": "./lib/index.js", @@ -38,10 +38,10 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/compose": "^1.4.1", - "@thi.ng/random": "^1.4.3", - "@thi.ng/strings": "^1.8.1", - "@thi.ng/transducers": "^6.4.3", + "@thi.ng/compose": "^1.4.2", + "@thi.ng/random": "^1.4.4", + "@thi.ng/strings": "^1.8.2", + "@thi.ng/transducers": "^6.4.4", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/transducers-fsm/CHANGELOG.md b/packages/transducers-fsm/CHANGELOG.md index 0c08ecd63e..78fa209adb 100644 --- a/packages/transducers-fsm/CHANGELOG.md +++ b/packages/transducers-fsm/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.1.17](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-fsm@1.1.16...@thi.ng/transducers-fsm@1.1.17) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/transducers-fsm + + + + + ## [1.1.16](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-fsm@1.1.15...@thi.ng/transducers-fsm@1.1.16) (2020-04-05) **Note:** Version bump only for package @thi.ng/transducers-fsm diff --git a/packages/transducers-fsm/package.json b/packages/transducers-fsm/package.json index 0190949b3e..4a48fee58f 100644 --- a/packages/transducers-fsm/package.json +++ b/packages/transducers-fsm/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/transducers-fsm", - "version": "1.1.16", + "version": "1.1.17", "description": "Transducer-based Finite State Machine transformer", "module": "./index.js", "main": "./lib/index.js", @@ -38,8 +38,8 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", - "@thi.ng/transducers": "^6.4.3", + "@thi.ng/api": "^6.10.0", + "@thi.ng/transducers": "^6.4.4", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/transducers-hdom/CHANGELOG.md b/packages/transducers-hdom/CHANGELOG.md index 33771c79a3..372a980e02 100644 --- a/packages/transducers-hdom/CHANGELOG.md +++ b/packages/transducers-hdom/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.0.44](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-hdom@2.0.43...@thi.ng/transducers-hdom@2.0.44) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/transducers-hdom + + + + + +## [2.0.43](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-hdom@2.0.42...@thi.ng/transducers-hdom@2.0.43) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/transducers-hdom + + + + + ## [2.0.42](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-hdom@2.0.41...@thi.ng/transducers-hdom@2.0.42) (2020-04-05) **Note:** Version bump only for package @thi.ng/transducers-hdom diff --git a/packages/transducers-hdom/package.json b/packages/transducers-hdom/package.json index 75ab5bb19d..3add6fc366 100644 --- a/packages/transducers-hdom/package.json +++ b/packages/transducers-hdom/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/transducers-hdom", - "version": "2.0.42", + "version": "2.0.44", "description": "Transducer based UI updater for @thi.ng/hdom", "module": "./index.js", "main": "./lib/index.js", @@ -38,9 +38,9 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/hdom": "^8.0.17", - "@thi.ng/hiccup": "^3.2.16", - "@thi.ng/transducers": "^6.4.3", + "@thi.ng/hdom": "^8.0.19", + "@thi.ng/hiccup": "^3.2.17", + "@thi.ng/transducers": "^6.4.4", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/transducers-patch/CHANGELOG.md b/packages/transducers-patch/CHANGELOG.md index d4f3cae02e..ab3604d01a 100644 --- a/packages/transducers-patch/CHANGELOG.md +++ b/packages/transducers-patch/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-patch@0.1.6...@thi.ng/transducers-patch@0.1.7) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/transducers-patch + + + + + ## [0.1.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-patch@0.1.5...@thi.ng/transducers-patch@0.1.6) (2020-04-05) **Note:** Version bump only for package @thi.ng/transducers-patch diff --git a/packages/transducers-patch/package.json b/packages/transducers-patch/package.json index 712e0eac5d..1d53308985 100644 --- a/packages/transducers-patch/package.json +++ b/packages/transducers-patch/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/transducers-patch", - "version": "0.1.6", + "version": "0.1.7", "description": "Reducers for patch-based, immutable-by-default array & object editing", "module": "./index.js", "main": "./lib/index.js", @@ -38,11 +38,11 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", + "@thi.ng/api": "^6.10.0", "@thi.ng/checks": "^2.6.1", "@thi.ng/errors": "^1.2.9", "@thi.ng/paths": "^4.0.1", - "@thi.ng/transducers": "^6.4.3", + "@thi.ng/transducers": "^6.4.4", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/transducers-stats/CHANGELOG.md b/packages/transducers-stats/CHANGELOG.md index 91f5a2bbf2..8b9e079b77 100644 --- a/packages/transducers-stats/CHANGELOG.md +++ b/packages/transducers-stats/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.1.17](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-stats@1.1.16...@thi.ng/transducers-stats@1.1.17) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/transducers-stats + + + + + ## [1.1.16](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-stats@1.1.15...@thi.ng/transducers-stats@1.1.16) (2020-04-05) **Note:** Version bump only for package @thi.ng/transducers-stats diff --git a/packages/transducers-stats/package.json b/packages/transducers-stats/package.json index d0a280c7f9..0caa020ef3 100644 --- a/packages/transducers-stats/package.json +++ b/packages/transducers-stats/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/transducers-stats", - "version": "1.1.16", + "version": "1.1.17", "description": "Transducers for statistical / technical analysis", "module": "./index.js", "main": "./lib/index.js", @@ -39,9 +39,9 @@ }, "dependencies": { "@thi.ng/checks": "^2.6.1", - "@thi.ng/dcons": "^2.2.9", + "@thi.ng/dcons": "^2.2.10", "@thi.ng/errors": "^1.2.9", - "@thi.ng/transducers": "^6.4.3", + "@thi.ng/transducers": "^6.4.4", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/transducers/CHANGELOG.md b/packages/transducers/CHANGELOG.md index c326a48769..5f569f4c2f 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. +## [6.4.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers@6.4.3...@thi.ng/transducers@6.4.4) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/transducers + + + + + ## [6.4.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers@6.4.2...@thi.ng/transducers@6.4.3) (2020-04-05) **Note:** Version bump only for package @thi.ng/transducers diff --git a/packages/transducers/package.json b/packages/transducers/package.json index e4d20c3277..c8f6ebc137 100644 --- a/packages/transducers/package.json +++ b/packages/transducers/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/transducers", - "version": "6.4.3", + "version": "6.4.4", "description": "Lightweight transducer implementations for ES6 / TypeScript", "module": "./index.js", "main": "./lib/index.js", @@ -38,16 +38,16 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", - "@thi.ng/arrays": "^0.6.1", + "@thi.ng/api": "^6.10.0", + "@thi.ng/arrays": "^0.6.2", "@thi.ng/checks": "^2.6.1", - "@thi.ng/compare": "^1.3.0", - "@thi.ng/compose": "^1.4.1", + "@thi.ng/compare": "^1.3.1", + "@thi.ng/compose": "^1.4.2", "@thi.ng/equiv": "^1.0.18", "@thi.ng/errors": "^1.2.9", "@thi.ng/math": "^1.7.5", - "@thi.ng/random": "^1.4.3", - "@thi.ng/strings": "^1.8.1", + "@thi.ng/random": "^1.4.4", + "@thi.ng/strings": "^1.8.2", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/vector-pools/CHANGELOG.md b/packages/vector-pools/CHANGELOG.md index 81ae65c568..98b308cd45 100644 --- a/packages/vector-pools/CHANGELOG.md +++ b/packages/vector-pools/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.20](https://github.com/thi-ng/umbrella/compare/@thi.ng/vector-pools@1.0.19...@thi.ng/vector-pools@1.0.20) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/vector-pools + + + + + ## [1.0.19](https://github.com/thi-ng/umbrella/compare/@thi.ng/vector-pools@1.0.18...@thi.ng/vector-pools@1.0.19) (2020-04-05) **Note:** Version bump only for package @thi.ng/vector-pools diff --git a/packages/vector-pools/package.json b/packages/vector-pools/package.json index b850c4e120..ce89783d29 100644 --- a/packages/vector-pools/package.json +++ b/packages/vector-pools/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/vector-pools", - "version": "1.0.19", + "version": "1.0.20", "description": "Data structures for managing & working with strided, memory mapped vectors", "module": "./index.js", "main": "./lib/index.js", @@ -38,12 +38,12 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", + "@thi.ng/api": "^6.10.0", "@thi.ng/binary": "^2.0.2", "@thi.ng/checks": "^2.6.1", - "@thi.ng/malloc": "^4.1.9", - "@thi.ng/transducers": "^6.4.3", - "@thi.ng/vectors": "^4.2.3", + "@thi.ng/malloc": "^4.1.10", + "@thi.ng/transducers": "^6.4.4", + "@thi.ng/vectors": "^4.2.4", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/vectors/CHANGELOG.md b/packages/vectors/CHANGELOG.md index 4feeb00e64..b836df4a61 100644 --- a/packages/vectors/CHANGELOG.md +++ b/packages/vectors/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/vectors@4.2.3...@thi.ng/vectors@4.2.4) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/vectors + + + + + ## [4.2.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/vectors@4.2.2...@thi.ng/vectors@4.2.3) (2020-04-05) **Note:** Version bump only for package @thi.ng/vectors diff --git a/packages/vectors/package.json b/packages/vectors/package.json index 35711f11ac..d20c27b4ac 100644 --- a/packages/vectors/package.json +++ b/packages/vectors/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/vectors", - "version": "4.2.3", + "version": "4.2.4", "description": "Optimized 2d/3d/4d and arbitrary length vector operations", "module": "./index.js", "main": "./lib/index.js", @@ -38,15 +38,15 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", + "@thi.ng/api": "^6.10.0", "@thi.ng/binary": "^2.0.2", "@thi.ng/checks": "^2.6.1", "@thi.ng/equiv": "^1.0.18", "@thi.ng/errors": "^1.2.9", "@thi.ng/math": "^1.7.5", - "@thi.ng/memoize": "^2.0.5", - "@thi.ng/random": "^1.4.3", - "@thi.ng/transducers": "^6.4.3", + "@thi.ng/memoize": "^2.0.6", + "@thi.ng/random": "^1.4.4", + "@thi.ng/transducers": "^6.4.4", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/webgl-msdf/CHANGELOG.md b/packages/webgl-msdf/CHANGELOG.md index bd2a6cd537..a4e2060b0d 100644 --- a/packages/webgl-msdf/CHANGELOG.md +++ b/packages/webgl-msdf/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.21](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl-msdf@0.1.20...@thi.ng/webgl-msdf@0.1.21) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/webgl-msdf + + + + + ## [0.1.20](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl-msdf@0.1.19...@thi.ng/webgl-msdf@0.1.20) (2020-04-05) **Note:** Version bump only for package @thi.ng/webgl-msdf diff --git a/packages/webgl-msdf/package.json b/packages/webgl-msdf/package.json index 2126572bc5..eb7cee520f 100644 --- a/packages/webgl-msdf/package.json +++ b/packages/webgl-msdf/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/webgl-msdf", - "version": "0.1.20", + "version": "0.1.21", "description": "Multi-channel SDF font rendering & basic text layout for WebGL", "module": "./index.js", "main": "./lib/index.js", @@ -38,12 +38,12 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", - "@thi.ng/shader-ast": "^0.3.13", - "@thi.ng/transducers": "^6.4.3", - "@thi.ng/vector-pools": "^1.0.19", - "@thi.ng/vectors": "^4.2.3", - "@thi.ng/webgl": "^1.0.2", + "@thi.ng/api": "^6.10.0", + "@thi.ng/shader-ast": "^0.3.14", + "@thi.ng/transducers": "^6.4.4", + "@thi.ng/vector-pools": "^1.0.20", + "@thi.ng/vectors": "^4.2.4", + "@thi.ng/webgl": "^1.0.3", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/webgl-shadertoy/CHANGELOG.md b/packages/webgl-shadertoy/CHANGELOG.md index 6a01fe90ca..d89a43f97f 100644 --- a/packages/webgl-shadertoy/CHANGELOG.md +++ b/packages/webgl-shadertoy/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.2.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl-shadertoy@0.2.7...@thi.ng/webgl-shadertoy@0.2.8) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/webgl-shadertoy + + + + + ## [0.2.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl-shadertoy@0.2.6...@thi.ng/webgl-shadertoy@0.2.7) (2020-04-05) **Note:** Version bump only for package @thi.ng/webgl-shadertoy diff --git a/packages/webgl-shadertoy/package.json b/packages/webgl-shadertoy/package.json index ed86669be4..0917e91a6d 100644 --- a/packages/webgl-shadertoy/package.json +++ b/packages/webgl-shadertoy/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/webgl-shadertoy", - "version": "0.2.7", + "version": "0.2.8", "description": "Basic WebGL scaffolding for running interactive fragment shaders via @thi.ng/shader-ast", "module": "./index.js", "main": "./lib/index.js", @@ -38,11 +38,11 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", - "@thi.ng/shader-ast": "^0.3.13", - "@thi.ng/shader-ast-glsl": "^0.1.19", - "@thi.ng/transducers": "^6.4.3", - "@thi.ng/webgl": "^1.0.2", + "@thi.ng/api": "^6.10.0", + "@thi.ng/shader-ast": "^0.3.14", + "@thi.ng/shader-ast-glsl": "^0.1.20", + "@thi.ng/transducers": "^6.4.4", + "@thi.ng/webgl": "^1.0.3", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/webgl/CHANGELOG.md b/packages/webgl/CHANGELOG.md index d52f9d709e..fe319681a2 100644 --- a/packages/webgl/CHANGELOG.md +++ b/packages/webgl/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl@1.0.2...@thi.ng/webgl@1.0.3) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/webgl + + + + + ## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/webgl@1.0.1...@thi.ng/webgl@1.0.2) (2020-04-05) **Note:** Version bump only for package @thi.ng/webgl diff --git a/packages/webgl/package.json b/packages/webgl/package.json index 3fc81f9136..82d39151ed 100644 --- a/packages/webgl/package.json +++ b/packages/webgl/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/webgl", - "version": "1.0.2", + "version": "1.0.3", "description": "WebGL & GLSL abstraction layer", "module": "./index.js", "main": "./lib/index.js", @@ -38,20 +38,20 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", - "@thi.ng/associative": "^4.0.1", + "@thi.ng/api": "^6.10.0", + "@thi.ng/associative": "^4.0.2", "@thi.ng/binary": "^2.0.2", "@thi.ng/checks": "^2.6.1", "@thi.ng/equiv": "^1.0.18", "@thi.ng/errors": "^1.2.9", - "@thi.ng/matrices": "^0.6.6", - "@thi.ng/pixel": "^0.1.14", - "@thi.ng/shader-ast": "^0.3.13", - "@thi.ng/shader-ast-glsl": "^0.1.19", - "@thi.ng/shader-ast-stdlib": "^0.3.12", - "@thi.ng/transducers": "^6.4.3", - "@thi.ng/vector-pools": "^1.0.19", - "@thi.ng/vectors": "^4.2.3", + "@thi.ng/matrices": "^0.6.7", + "@thi.ng/pixel": "^0.1.15", + "@thi.ng/shader-ast": "^0.3.14", + "@thi.ng/shader-ast-glsl": "^0.1.20", + "@thi.ng/shader-ast-stdlib": "^0.3.13", + "@thi.ng/transducers": "^6.4.4", + "@thi.ng/vector-pools": "^1.0.20", + "@thi.ng/vectors": "^4.2.4", "tslib": "^1.11.1" }, "keywords": [ diff --git a/packages/zipper/CHANGELOG.md b/packages/zipper/CHANGELOG.md index e7159706f9..99bf98fe57 100644 --- a/packages/zipper/CHANGELOG.md +++ b/packages/zipper/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.10](https://github.com/thi-ng/umbrella/compare/@thi.ng/zipper@0.1.9...@thi.ng/zipper@0.1.10) (2020-04-06) + +**Note:** Version bump only for package @thi.ng/zipper + + + + + ## [0.1.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/zipper@0.1.8...@thi.ng/zipper@0.1.9) (2020-04-05) **Note:** Version bump only for package @thi.ng/zipper diff --git a/packages/zipper/package.json b/packages/zipper/package.json index a22107fa37..ed1535979b 100644 --- a/packages/zipper/package.json +++ b/packages/zipper/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/zipper", - "version": "0.1.9", + "version": "0.1.10", "description": "Functional tree editing, manipulation & navigation", "module": "./index.js", "main": "./lib/index.js", @@ -38,8 +38,8 @@ "typescript": "^3.8.3" }, "dependencies": { - "@thi.ng/api": "^6.9.1", - "@thi.ng/arrays": "^0.6.1", + "@thi.ng/api": "^6.10.0", + "@thi.ng/arrays": "^0.6.2", "@thi.ng/checks": "^2.6.1", "tslib": "^1.11.1" },