From 439a075fa274756fed269b68e541cbef895762bd Mon Sep 17 00:00:00 2001 From: Mark McDowell Date: Fri, 19 Jun 2020 17:47:04 +0100 Subject: [PATCH] chore(release): publish 0.13.0 --- CHANGELOG.md | 25 +++++++++++++++++++++++++ lerna.json | 2 +- packages/desktop-about/CHANGELOG.md | 12 ++++++++++++ packages/desktop-about/package.json | 2 +- packages/desktop-api/CHANGELOG.md | 8 ++++++++ packages/desktop-api/package.json | 2 +- packages/desktop-core/CHANGELOG.md | 21 +++++++++++++++++++++ packages/desktop-core/package.json | 2 +- packages/desktop-dock/CHANGELOG.md | 17 +++++++++++++++++ packages/desktop-dock/package.json | 2 +- packages/desktop-sdk/CHANGELOG.md | 12 ++++++++++++ packages/desktop-sdk/package.json | 2 +- packages/desktop-types/CHANGELOG.md | 13 +++++++++++++ packages/desktop-types/package.json | 2 +- packages/desktop/CHANGELOG.md | 17 +++++++++++++++++ packages/desktop/package.json | 2 +- 16 files changed, 133 insertions(+), 8 deletions(-) create mode 100644 packages/desktop-about/CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 24ceea33..0c64bfe6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,31 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.13.0](https://github.com/markmcdowell/desktop/compare/v0.12.0...v0.13.0) (2020-06-19) + + +### Bug Fixes + +* **core:** correcting loading of config ([eb5977b](https://github.com/markmcdowell/desktop/commit/eb5977b223affbbb271185b5a12f3a35d494b163)) +* **core:** correcting typo's in defaults.yaml ([381bbed](https://github.com/markmcdowell/desktop/commit/381bbede2e3ab996156c89daa3f7f7b2b3f01416)) +* **core:** expecting desktop protcol on the command line ([f88f319](https://github.com/markmcdowell/desktop/commit/f88f3199c5e8c004b9ff6a55acae4467521e6e92)) +* **core:** using electron version instead of yargs ([5da91fd](https://github.com/markmcdowell/desktop/commit/5da91fd94fd8b37ff0a9c4a7424140cf3ba97494)) + + +### Features + +* **about:** adding custom about window ([7396ddd](https://github.com/markmcdowell/desktop/commit/7396ddd4b047c035d4f3c0d1a974bcde619f39c0)) +* **core:** adding versions to api ([b788746](https://github.com/markmcdowell/desktop/commit/b788746e034f9205ac43cb554fae1fdde8d4fa2b)) +* **core:** display desktop applications in tray ([4c4fea2](https://github.com/markmcdowell/desktop/commit/4c4fea27f8303bcac0ec76f9b0f29c504767610d)) +* **core:** migrated to console.table ([3da5696](https://github.com/markmcdowell/desktop/commit/3da569622543d1a3e8708b26933ed619dbccefc8)) +* **dock:** adding drag handle ([bda1833](https://github.com/markmcdowell/desktop/commit/bda1833c74e92c154ffa1145cb057d21fda7e02d)) +* **types:** adding annotations to configuration ([b6bd076](https://github.com/markmcdowell/desktop/commit/b6bd0763e834eaa787811babb5bbeb0b689fd686)) +* **types:** adding launchOnStart to application spec ([dc13814](https://github.com/markmcdowell/desktop/commit/dc138141e367aec19b9b2176dc8c70e8a04cea0a)) + + + + + # [0.12.0](https://github.com/markmcdowell/desktop/compare/v0.11.0...v0.12.0) (2020-06-18) diff --git a/lerna.json b/lerna.json index 85a87f52..59c17d0e 100644 --- a/lerna.json +++ b/lerna.json @@ -5,7 +5,7 @@ "packages": [ "packages/*" ], - "version": "0.12.0", + "version": "0.13.0", "command": { "bootstrap": { "hoist": true diff --git a/packages/desktop-about/CHANGELOG.md b/packages/desktop-about/CHANGELOG.md new file mode 100644 index 00000000..7fd8e188 --- /dev/null +++ b/packages/desktop-about/CHANGELOG.md @@ -0,0 +1,12 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [0.13.0](https://github.com/reactivemarkets/desktop/compare/v0.12.0...v0.13.0) (2020-06-19) + + +### Features + +* **about:** adding custom about window ([7396ddd](https://github.com/reactivemarkets/desktop/commit/7396ddd4b047c035d4f3c0d1a974bcde619f39c0)) +* **types:** adding launchOnStart to application spec ([dc13814](https://github.com/reactivemarkets/desktop/commit/dc138141e367aec19b9b2176dc8c70e8a04cea0a)) diff --git a/packages/desktop-about/package.json b/packages/desktop-about/package.json index 5d0034f9..c994a6ff 100644 --- a/packages/desktop-about/package.json +++ b/packages/desktop-about/package.json @@ -1,6 +1,6 @@ { "name": "@reactivemarkets/desktop-about", - "version": "0.12.0", + "version": "0.13.0", "description": "The about window for desktop.", "publishConfig": { "access": "public" diff --git a/packages/desktop-api/CHANGELOG.md b/packages/desktop-api/CHANGELOG.md index 649ac6bc..f3419823 100644 --- a/packages/desktop-api/CHANGELOG.md +++ b/packages/desktop-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. +# [0.13.0](https://github.com/reactivemarkets/desktop/compare/v0.12.0...v0.13.0) (2020-06-19) + +**Note:** Version bump only for package @reactivemarkets/desktop-api + + + + + # [0.12.0](https://github.com/reactivemarkets/desktop/compare/v0.11.0...v0.12.0) (2020-06-18) **Note:** Version bump only for package @reactivemarkets/desktop-api diff --git a/packages/desktop-api/package.json b/packages/desktop-api/package.json index 5ebf4ea4..3b594e49 100644 --- a/packages/desktop-api/package.json +++ b/packages/desktop-api/package.json @@ -1,6 +1,6 @@ { "name": "@reactivemarkets/desktop-api", - "version": "0.12.0", + "version": "0.13.0", "description": "Exposes a REST api and websocket endpoint for Desktop", "publishConfig": { "access": "public" diff --git a/packages/desktop-core/CHANGELOG.md b/packages/desktop-core/CHANGELOG.md index 5715a083..50324d70 100644 --- a/packages/desktop-core/CHANGELOG.md +++ b/packages/desktop-core/CHANGELOG.md @@ -3,6 +3,27 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.13.0](https://github.com/reactivemarkets/desktop/compare/v0.12.0...v0.13.0) (2020-06-19) + + +### Bug Fixes + +* **core:** correcting loading of config ([eb5977b](https://github.com/reactivemarkets/desktop/commit/eb5977b223affbbb271185b5a12f3a35d494b163)) +* **core:** expecting desktop protcol on the command line ([f88f319](https://github.com/reactivemarkets/desktop/commit/f88f3199c5e8c004b9ff6a55acae4467521e6e92)) +* **core:** using electron version instead of yargs ([5da91fd](https://github.com/reactivemarkets/desktop/commit/5da91fd94fd8b37ff0a9c4a7424140cf3ba97494)) + + +### Features + +* **core:** adding versions to api ([b788746](https://github.com/reactivemarkets/desktop/commit/b788746e034f9205ac43cb554fae1fdde8d4fa2b)) +* **core:** display desktop applications in tray ([4c4fea2](https://github.com/reactivemarkets/desktop/commit/4c4fea27f8303bcac0ec76f9b0f29c504767610d)) +* **core:** migrated to console.table ([3da5696](https://github.com/reactivemarkets/desktop/commit/3da569622543d1a3e8708b26933ed619dbccefc8)) +* **types:** adding launchOnStart to application spec ([dc13814](https://github.com/reactivemarkets/desktop/commit/dc138141e367aec19b9b2176dc8c70e8a04cea0a)) + + + + + # [0.12.0](https://github.com/reactivemarkets/desktop/compare/v0.11.0...v0.12.0) (2020-06-18) diff --git a/packages/desktop-core/package.json b/packages/desktop-core/package.json index c725a159..388b26fa 100644 --- a/packages/desktop-core/package.json +++ b/packages/desktop-core/package.json @@ -1,6 +1,6 @@ { "name": "@reactivemarkets/desktop-core", - "version": "0.12.0", + "version": "0.13.0", "description": "A cross platform hosting environment for multi-window applications", "publishConfig": { "access": "public" diff --git a/packages/desktop-dock/CHANGELOG.md b/packages/desktop-dock/CHANGELOG.md index 84fe61d9..da9e8efc 100644 --- a/packages/desktop-dock/CHANGELOG.md +++ b/packages/desktop-dock/CHANGELOG.md @@ -3,6 +3,23 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.13.0](https://github.com/reactivemarkets/desktop/compare/v0.12.0...v0.13.0) (2020-06-19) + + +### Bug Fixes + +* **core:** correcting typo's in defaults.yaml ([381bbed](https://github.com/reactivemarkets/desktop/commit/381bbede2e3ab996156c89daa3f7f7b2b3f01416)) + + +### Features + +* **about:** adding custom about window ([7396ddd](https://github.com/reactivemarkets/desktop/commit/7396ddd4b047c035d4f3c0d1a974bcde619f39c0)) +* **dock:** adding drag handle ([bda1833](https://github.com/reactivemarkets/desktop/commit/bda1833c74e92c154ffa1145cb057d21fda7e02d)) + + + + + # [0.12.0](https://github.com/reactivemarkets/desktop/compare/v0.11.0...v0.12.0) (2020-06-18) **Note:** Version bump only for package @reactivemarkets/desktop-dock diff --git a/packages/desktop-dock/package.json b/packages/desktop-dock/package.json index ed2846ac..c4099ed5 100644 --- a/packages/desktop-dock/package.json +++ b/packages/desktop-dock/package.json @@ -1,6 +1,6 @@ { "name": "@reactivemarkets/desktop-dock", - "version": "0.12.0", + "version": "0.13.0", "description": "A common dock to launch windows from.", "publishConfig": { "access": "public" diff --git a/packages/desktop-sdk/CHANGELOG.md b/packages/desktop-sdk/CHANGELOG.md index 2c2b2350..0a78ee55 100644 --- a/packages/desktop-sdk/CHANGELOG.md +++ b/packages/desktop-sdk/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.13.0](https://github.com/reactivemarkets/desktop/compare/v0.12.0...v0.13.0) (2020-06-19) + + +### Features + +* **about:** adding custom about window ([7396ddd](https://github.com/reactivemarkets/desktop/commit/7396ddd4b047c035d4f3c0d1a974bcde619f39c0)) +* **core:** adding versions to api ([b788746](https://github.com/reactivemarkets/desktop/commit/b788746e034f9205ac43cb554fae1fdde8d4fa2b)) + + + + + # [0.12.0](https://github.com/reactivemarkets/desktop/compare/v0.11.0...v0.12.0) (2020-06-18) **Note:** Version bump only for package @reactivemarkets/desktop-sdk diff --git a/packages/desktop-sdk/package.json b/packages/desktop-sdk/package.json index 71c27045..1ebf22d1 100644 --- a/packages/desktop-sdk/package.json +++ b/packages/desktop-sdk/package.json @@ -1,6 +1,6 @@ { "name": "@reactivemarkets/desktop-sdk", - "version": "0.12.0", + "version": "0.13.0", "description": "SDK for desktop.", "publishConfig": { "access": "public" diff --git a/packages/desktop-types/CHANGELOG.md b/packages/desktop-types/CHANGELOG.md index f8c510ff..f739f75c 100644 --- a/packages/desktop-types/CHANGELOG.md +++ b/packages/desktop-types/CHANGELOG.md @@ -3,6 +3,19 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.13.0](https://github.com/reactivemarkets/desktop/compare/v0.12.0...v0.13.0) (2020-06-19) + + +### Features + +* **about:** adding custom about window ([7396ddd](https://github.com/reactivemarkets/desktop/commit/7396ddd4b047c035d4f3c0d1a974bcde619f39c0)) +* **types:** adding annotations to configuration ([b6bd076](https://github.com/reactivemarkets/desktop/commit/b6bd0763e834eaa787811babb5bbeb0b689fd686)) +* **types:** adding launchOnStart to application spec ([dc13814](https://github.com/reactivemarkets/desktop/commit/dc138141e367aec19b9b2176dc8c70e8a04cea0a)) + + + + + # [0.12.0](https://github.com/reactivemarkets/desktop/compare/v0.11.0...v0.12.0) (2020-06-18) diff --git a/packages/desktop-types/package.json b/packages/desktop-types/package.json index 5e736e8c..aefe4cb1 100644 --- a/packages/desktop-types/package.json +++ b/packages/desktop-types/package.json @@ -1,6 +1,6 @@ { "name": "@reactivemarkets/desktop-types", - "version": "0.12.0", + "version": "0.13.0", "description": "Common types for desktop.", "publishConfig": { "access": "public" diff --git a/packages/desktop/CHANGELOG.md b/packages/desktop/CHANGELOG.md index d906c89f..3ae33f7a 100644 --- a/packages/desktop/CHANGELOG.md +++ b/packages/desktop/CHANGELOG.md @@ -3,6 +3,23 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.13.0](https://github.com/reactivemarkets/desktop/compare/v0.12.0...v0.13.0) (2020-06-19) + + +### Bug Fixes + +* **core:** correcting typo's in defaults.yaml ([381bbed](https://github.com/reactivemarkets/desktop/commit/381bbede2e3ab996156c89daa3f7f7b2b3f01416)) + + +### Features + +* **about:** adding custom about window ([7396ddd](https://github.com/reactivemarkets/desktop/commit/7396ddd4b047c035d4f3c0d1a974bcde619f39c0)) +* **types:** adding launchOnStart to application spec ([dc13814](https://github.com/reactivemarkets/desktop/commit/dc138141e367aec19b9b2176dc8c70e8a04cea0a)) + + + + + # [0.12.0](https://github.com/reactivemarkets/desktop/compare/v0.11.0...v0.12.0) (2020-06-18) diff --git a/packages/desktop/package.json b/packages/desktop/package.json index 0f7a03e4..3cda06e5 100644 --- a/packages/desktop/package.json +++ b/packages/desktop/package.json @@ -1,7 +1,7 @@ { "name": "@reactivemarkets/desktop", "productName": "Desktop", - "version": "0.12.0", + "version": "0.13.0", "description": "Multi-window, cross-platform desktop applications.", "bin": { "desktop": "cli.js"