Skip to content
This repository has been archived by the owner on Jul 26, 2023. It is now read-only.

Commit

Permalink
chore(release): publish 0.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
markmcdowell committed Jun 19, 2020
1 parent 3da5696 commit 439a075
Show file tree
Hide file tree
Showing 16 changed files with 133 additions and 8 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"packages": [
"packages/*"
],
"version": "0.12.0",
"version": "0.13.0",
"command": {
"bootstrap": {
"hoist": true
Expand Down
12 changes: 12 additions & 0 deletions packages/desktop-about/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))
2 changes: 1 addition & 1 deletion packages/desktop-about/package.json
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
8 changes: 8 additions & 0 deletions packages/desktop-api/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/desktop-api/package.json
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
21 changes: 21 additions & 0 deletions packages/desktop-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down
2 changes: 1 addition & 1 deletion packages/desktop-core/package.json
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
17 changes: 17 additions & 0 deletions packages/desktop-dock/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/desktop-dock/package.json
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
12 changes: 12 additions & 0 deletions packages/desktop-sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/desktop-sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@reactivemarkets/desktop-sdk",
"version": "0.12.0",
"version": "0.13.0",
"description": "SDK for desktop.",
"publishConfig": {
"access": "public"
Expand Down
13 changes: 13 additions & 0 deletions packages/desktop-types/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down
2 changes: 1 addition & 1 deletion packages/desktop-types/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@reactivemarkets/desktop-types",
"version": "0.12.0",
"version": "0.13.0",
"description": "Common types for desktop.",
"publishConfig": {
"access": "public"
Expand Down
17 changes: 17 additions & 0 deletions packages/desktop/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down
2 changes: 1 addition & 1 deletion packages/desktop/package.json
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit 439a075

Please sign in to comment.