diff --git a/CHANGELOG.md b/CHANGELOG.md index eea4f549..91b31768 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.26.0](https://github.com/markmcdowell/desktop/compare/v0.25.0...v0.26.0) (2020-08-11) + + +### Bug Fixes + +* **core:** displaying version information of the server ([a52b283](https://github.com/markmcdowell/desktop/commit/a52b283819ad86fd82919b3a630ba40f953b0515)) +* **core:** global shortcut methods now returns promises ([b981df5](https://github.com/markmcdowell/desktop/commit/b981df556d3055a124f1527fc4779ba274913cd4)) +* **core:** missing update to nanoid ([347d407](https://github.com/markmcdowell/desktop/commit/347d4073d636313efc072a4bad24d3f7abc5ead1)) +* **core:** updating configuration kind for update ([410ca08](https://github.com/markmcdowell/desktop/commit/410ca08d9debcdb9f58df1b13cdeb067e64cd8dc)) + + +### Features + +* replacing uuid with nanoid ([34ef7f6](https://github.com/markmcdowell/desktop/commit/34ef7f69e96295b4c8faebed27f3b8320eebb4de)) +* **core:** adding info command ([42abd9d](https://github.com/markmcdowell/desktop/commit/42abd9d6fa883e5b40837960aece09f9c6703b1b)) +* **core:** adding rm as an alias to stop ([d2594e5](https://github.com/markmcdowell/desktop/commit/d2594e529478954d961fe3b880c43aaf7e452ed5)) +* **core:** allowing access to update settings ([8153c5e](https://github.com/markmcdowell/desktop/commit/8153c5e84d36b855aac8ebcf87cc11a7452d56ac)) +* **core:** configuration kind is now a string ([4470819](https://github.com/markmcdowell/desktop/commit/44708192f871ea4f5f8071edaf1e72005de3b606)) +* **core:** renamed update to updatePolicy ([4bb7d65](https://github.com/markmcdowell/desktop/commit/4bb7d650b580a7f03b30bf464ef4ce37a40e309f)) +* **sdk:** adding unmaximize to window ([819e4dd](https://github.com/markmcdowell/desktop/commit/819e4ddb614405c07664ab9d8f8afd50904d683e)) + + + + + # [0.25.0](https://github.com/markmcdowell/desktop/compare/v0.24.0...v0.25.0) (2020-07-02) diff --git a/lerna.json b/lerna.json index 5d13556c..db990781 100644 --- a/lerna.json +++ b/lerna.json @@ -5,7 +5,7 @@ "packages": [ "packages/*" ], - "version": "0.25.0", + "version": "0.26.0", "command": { "bootstrap": { "hoist": true diff --git a/packages/desktop-about/CHANGELOG.md b/packages/desktop-about/CHANGELOG.md index 450fba75..fedde853 100644 --- a/packages/desktop-about/CHANGELOG.md +++ b/packages/desktop-about/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.26.0](https://github.com/reactivemarkets/desktop/compare/v0.25.0...v0.26.0) (2020-08-11) + +**Note:** Version bump only for package @reactivemarkets/desktop-about + + + + + # [0.25.0](https://github.com/reactivemarkets/desktop/compare/v0.24.0...v0.25.0) (2020-07-02) **Note:** Version bump only for package @reactivemarkets/desktop-about diff --git a/packages/desktop-about/package.json b/packages/desktop-about/package.json index 98bfb399..25b47877 100644 --- a/packages/desktop-about/package.json +++ b/packages/desktop-about/package.json @@ -1,6 +1,6 @@ { "name": "@reactivemarkets/desktop-about", - "version": "0.25.0", + "version": "0.26.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 ea4690df..a13c43bc 100644 --- a/packages/desktop-api/CHANGELOG.md +++ b/packages/desktop-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. +# [0.26.0](https://github.com/reactivemarkets/desktop/compare/v0.25.0...v0.26.0) (2020-08-11) + + +### Features + +* replacing uuid with nanoid ([34ef7f6](https://github.com/reactivemarkets/desktop/commit/34ef7f69e96295b4c8faebed27f3b8320eebb4de)) + + + + + # [0.25.0](https://github.com/reactivemarkets/desktop/compare/v0.24.0...v0.25.0) (2020-07-02) **Note:** Version bump only for package @reactivemarkets/desktop-api diff --git a/packages/desktop-api/package.json b/packages/desktop-api/package.json index b6d4db89..6dff5b52 100644 --- a/packages/desktop-api/package.json +++ b/packages/desktop-api/package.json @@ -1,6 +1,6 @@ { "name": "@reactivemarkets/desktop-api", - "version": "0.25.0", + "version": "0.26.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 22efc89c..e55dae51 100644 --- a/packages/desktop-core/CHANGELOG.md +++ b/packages/desktop-core/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.26.0](https://github.com/reactivemarkets/desktop/compare/v0.25.0...v0.26.0) (2020-08-11) + + +### Bug Fixes + +* **core:** displaying version information of the server ([a52b283](https://github.com/reactivemarkets/desktop/commit/a52b283819ad86fd82919b3a630ba40f953b0515)) +* **core:** global shortcut methods now returns promises ([b981df5](https://github.com/reactivemarkets/desktop/commit/b981df556d3055a124f1527fc4779ba274913cd4)) +* **core:** missing update to nanoid ([347d407](https://github.com/reactivemarkets/desktop/commit/347d4073d636313efc072a4bad24d3f7abc5ead1)) +* **core:** updating configuration kind for update ([410ca08](https://github.com/reactivemarkets/desktop/commit/410ca08d9debcdb9f58df1b13cdeb067e64cd8dc)) + + +### Features + +* replacing uuid with nanoid ([34ef7f6](https://github.com/reactivemarkets/desktop/commit/34ef7f69e96295b4c8faebed27f3b8320eebb4de)) +* **core:** adding info command ([42abd9d](https://github.com/reactivemarkets/desktop/commit/42abd9d6fa883e5b40837960aece09f9c6703b1b)) +* **core:** adding rm as an alias to stop ([d2594e5](https://github.com/reactivemarkets/desktop/commit/d2594e529478954d961fe3b880c43aaf7e452ed5)) +* **core:** allowing access to update settings ([8153c5e](https://github.com/reactivemarkets/desktop/commit/8153c5e84d36b855aac8ebcf87cc11a7452d56ac)) +* **core:** configuration kind is now a string ([4470819](https://github.com/reactivemarkets/desktop/commit/44708192f871ea4f5f8071edaf1e72005de3b606)) +* **core:** renamed update to updatePolicy ([4bb7d65](https://github.com/reactivemarkets/desktop/commit/4bb7d650b580a7f03b30bf464ef4ce37a40e309f)) +* **sdk:** adding unmaximize to window ([819e4dd](https://github.com/reactivemarkets/desktop/commit/819e4ddb614405c07664ab9d8f8afd50904d683e)) + + + + + # [0.25.0](https://github.com/reactivemarkets/desktop/compare/v0.24.0...v0.25.0) (2020-07-02) diff --git a/packages/desktop-core/package.json b/packages/desktop-core/package.json index bc6b12cc..c56be167 100644 --- a/packages/desktop-core/package.json +++ b/packages/desktop-core/package.json @@ -1,6 +1,6 @@ { "name": "@reactivemarkets/desktop-core", - "version": "0.25.0", + "version": "0.26.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 428e204a..c8653838 100644 --- a/packages/desktop-dock/CHANGELOG.md +++ b/packages/desktop-dock/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. +# [0.26.0](https://github.com/reactivemarkets/desktop/compare/v0.25.0...v0.26.0) (2020-08-11) + + +### Features + +* **core:** configuration kind is now a string ([4470819](https://github.com/reactivemarkets/desktop/commit/44708192f871ea4f5f8071edaf1e72005de3b606)) + + + + + # [0.25.0](https://github.com/reactivemarkets/desktop/compare/v0.24.0...v0.25.0) (2020-07-02) **Note:** Version bump only for package @reactivemarkets/desktop-dock diff --git a/packages/desktop-dock/package.json b/packages/desktop-dock/package.json index d0b4e820..767c715d 100644 --- a/packages/desktop-dock/package.json +++ b/packages/desktop-dock/package.json @@ -1,6 +1,6 @@ { "name": "@reactivemarkets/desktop-dock", - "version": "0.25.0", + "version": "0.26.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 7d0d6e2f..847592c6 100644 --- a/packages/desktop-sdk/CHANGELOG.md +++ b/packages/desktop-sdk/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. +# [0.26.0](https://github.com/reactivemarkets/desktop/compare/v0.25.0...v0.26.0) (2020-08-11) + + +### Bug Fixes + +* **core:** global shortcut methods now returns promises ([b981df5](https://github.com/reactivemarkets/desktop/commit/b981df556d3055a124f1527fc4779ba274913cd4)) + + +### Features + +* **sdk:** adding unmaximize to window ([819e4dd](https://github.com/reactivemarkets/desktop/commit/819e4ddb614405c07664ab9d8f8afd50904d683e)) + + + + + # [0.25.0](https://github.com/reactivemarkets/desktop/compare/v0.24.0...v0.25.0) (2020-07-02) **Note:** Version bump only for package @reactivemarkets/desktop-sdk diff --git a/packages/desktop-sdk/package.json b/packages/desktop-sdk/package.json index 8c6dc20e..1844b31b 100644 --- a/packages/desktop-sdk/package.json +++ b/packages/desktop-sdk/package.json @@ -1,6 +1,6 @@ { "name": "@reactivemarkets/desktop-sdk", - "version": "0.25.0", + "version": "0.26.0", "description": "SDK for desktop.", "publishConfig": { "access": "public" diff --git a/packages/desktop-types/CHANGELOG.md b/packages/desktop-types/CHANGELOG.md index 043f381d..a2e2f838 100644 --- a/packages/desktop-types/CHANGELOG.md +++ b/packages/desktop-types/CHANGELOG.md @@ -3,6 +3,24 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.26.0](https://github.com/reactivemarkets/desktop/compare/v0.25.0...v0.26.0) (2020-08-11) + + +### Bug Fixes + +* **core:** updating configuration kind for update ([410ca08](https://github.com/reactivemarkets/desktop/commit/410ca08d9debcdb9f58df1b13cdeb067e64cd8dc)) + + +### Features + +* **core:** allowing access to update settings ([8153c5e](https://github.com/reactivemarkets/desktop/commit/8153c5e84d36b855aac8ebcf87cc11a7452d56ac)) +* **core:** configuration kind is now a string ([4470819](https://github.com/reactivemarkets/desktop/commit/44708192f871ea4f5f8071edaf1e72005de3b606)) +* **core:** renamed update to updatePolicy ([4bb7d65](https://github.com/reactivemarkets/desktop/commit/4bb7d650b580a7f03b30bf464ef4ce37a40e309f)) + + + + + # [0.25.0](https://github.com/reactivemarkets/desktop/compare/v0.24.0...v0.25.0) (2020-07-02) **Note:** Version bump only for package @reactivemarkets/desktop-types diff --git a/packages/desktop-types/package.json b/packages/desktop-types/package.json index b1e0b0e7..411e23fc 100644 --- a/packages/desktop-types/package.json +++ b/packages/desktop-types/package.json @@ -1,6 +1,6 @@ { "name": "@reactivemarkets/desktop-types", - "version": "0.25.0", + "version": "0.26.0", "description": "Common types for desktop.", "publishConfig": { "access": "public" diff --git a/packages/desktop/CHANGELOG.md b/packages/desktop/CHANGELOG.md index d678addd..e282133e 100644 --- a/packages/desktop/CHANGELOG.md +++ b/packages/desktop/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. +# [0.26.0](https://github.com/reactivemarkets/desktop/compare/v0.25.0...v0.26.0) (2020-08-11) + + +### Bug Fixes + +* **core:** updating configuration kind for update ([410ca08](https://github.com/reactivemarkets/desktop/commit/410ca08d9debcdb9f58df1b13cdeb067e64cd8dc)) + + +### Features + +* **core:** renamed update to updatePolicy ([4bb7d65](https://github.com/reactivemarkets/desktop/commit/4bb7d650b580a7f03b30bf464ef4ce37a40e309f)) + + + + + # [0.25.0](https://github.com/reactivemarkets/desktop/compare/v0.24.0...v0.25.0) (2020-07-02) diff --git a/packages/desktop/package.json b/packages/desktop/package.json index d0a4de87..3ae70922 100644 --- a/packages/desktop/package.json +++ b/packages/desktop/package.json @@ -1,7 +1,7 @@ { "name": "@reactivemarkets/desktop", "productName": "Desktop", - "version": "0.25.0", + "version": "0.26.0", "description": "Multi-window, cross-platform desktop applications.", "homepage": "https://desktop.reactivemarkets.com", "bin": {