Skip to content

Commit

Permalink
chore: release v0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Mollweide committed Jan 24, 2020
1 parent bbe50f9 commit 611ecd3
Show file tree
Hide file tree
Showing 16 changed files with 80 additions and 61 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
## 0.8.0 (2020-01-24)

* fix: fresh install ([bbe50f9](https://github.com/smollweide/dash4/commit/bbe50f9))
* fix: support jest 25 lcov-report html file ([faf1eb3](https://github.com/smollweide/dash4/commit/faf1eb3))
* fix: update dependencies ([1965866](https://github.com/smollweide/dash4/commit/1965866))
* fix: update dependencies ([39482b5](https://github.com/smollweide/dash4/commit/39482b5))
* fix(client): auto reload after connection lost ([91d4f43](https://github.com/smollweide/dash4/commit/91d4f43))
* chore: switch tslint to eslint and add license-checker ([7e25bbe](https://github.com/smollweide/dash4/commit/7e25bbe))
* chore: update to node 12.14.1 ([1caf858](https://github.com/smollweide/dash4/commit/1caf858))
* test: skip broken test on ci ([1ebe070](https://github.com/smollweide/dash4/commit/1ebe070))
* test: skip broken test on ci ([8e6d322](https://github.com/smollweide/dash4/commit/8e6d322))
* feat: switch to emotion ([8e6038e](https://github.com/smollweide/dash4/commit/8e6038e))
* feat: switch to emotion ([f3ff223](https://github.com/smollweide/dash4/commit/f3ff223))
* Merge branch 'master' into feature/emotion ([4bb892b](https://github.com/smollweide/dash4/commit/4bb892b))





## <small>0.7.1 (2019-12-20)</small>

* fix: skip broken ci test and update lerna ([0c57a0b](https://github.com/smollweide/dash4/commit/0c57a0b))
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dash4",
"version": "0.7.1",
"version": "0.8.0",
"private": false,
"description": "The dashboard for developers",
"keywords": [
Expand Down
6 changes: 3 additions & 3 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dash4/cli",
"version": "0.7.1",
"version": "0.8.0",
"private": false,
"description": "dash4 cli",
"repository": "https://github.com/smollweide/dash4",
Expand Down Expand Up @@ -32,7 +32,7 @@
"not ie <= 10"
],
"dependencies": {
"@dash4/log": "0.7.1",
"@dash4/log": "0.8.0",
"@namics/prettier-config": "0.4.3",
"chalk": "3.0.0",
"commander": "4.1.0",
Expand All @@ -46,7 +46,7 @@
"write-pkg": "4.0.0"
},
"devDependencies": {
"@dash4/config": "0.7.1",
"@dash4/config": "0.8.0",
"@namics/ts-config": "0.4.4",
"@types/glob": "7.1.1",
"@types/jest": "24.9.1",
Expand Down
8 changes: 4 additions & 4 deletions packages/client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dash4/client",
"version": "0.7.1",
"version": "0.8.0",
"private": false,
"description": "Dash4 webapp client application",
"repository": "https://github.com/smollweide/dash4",
Expand Down Expand Up @@ -30,9 +30,9 @@
"not ie <= 10"
],
"dependencies": {
"@dash4/log": "0.7.1",
"@dash4/react-xterm": "0.7.1",
"@dash4/ui": "0.7.1",
"@dash4/log": "0.8.0",
"@dash4/react-xterm": "0.8.0",
"@dash4/ui": "0.8.0",
"@emotion/core": "10.0.27",
"bootstrap": "4.4.1",
"core-js": "3.6.4",
Expand Down
2 changes: 1 addition & 1 deletion packages/config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dash4/config",
"version": "0.7.1",
"version": "0.8.0",
"private": false,
"description": "dash4 config",
"repository": "https://github.com/smollweide/dash4",
Expand Down
4 changes: 2 additions & 2 deletions packages/log/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dash4/log",
"version": "0.7.1",
"version": "0.8.0",
"private": false,
"description": "dash4 log helper",
"repository": "https://github.com/smollweide/dash4",
Expand Down Expand Up @@ -28,7 +28,7 @@
"tslib": "1.10.0"
},
"devDependencies": {
"@dash4/config": "0.7.1",
"@dash4/config": "0.8.0",
"jest": "25.1.0",
"ts-jest": "25.0.0",
"typescript": "3.7.5"
Expand Down
4 changes: 2 additions & 2 deletions packages/react-xterm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dash4/react-xterm",
"version": "0.7.1",
"version": "0.8.0",
"private": false,
"description": "react xterm component",
"repository": "https://github.com/smollweide/dash4",
Expand Down Expand Up @@ -31,7 +31,7 @@
"xterm": "3.12.2"
},
"devDependencies": {
"@dash4/config": "0.7.1",
"@dash4/config": "0.8.0",
"@namics/ts-config": "0.4.4",
"@types/core-js": "2.5.2",
"@types/react": "16.9.19",
Expand Down
6 changes: 3 additions & 3 deletions packages/server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dash4/server",
"version": "0.7.1",
"version": "0.8.0",
"private": false,
"description": "dash4 server",
"repository": "https://github.com/smollweide/dash4",
Expand Down Expand Up @@ -28,8 +28,8 @@
"not ie <= 10"
],
"dependencies": {
"@dash4/client": "0.7.1",
"@dash4/log": "0.7.1",
"@dash4/client": "0.8.0",
"@dash4/log": "0.8.0",
"commander": "4.1.0",
"mime-types": "2.1.26",
"open": "7.0.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/terminal-emulator/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dash4/terminal-emulator",
"version": "0.7.1",
"version": "0.8.0",
"private": false,
"description": "dash4 terminal emulator using node-pty",
"repository": "https://github.com/smollweide/dash4",
Expand All @@ -27,7 +27,7 @@
"tslib": "1.10.0"
},
"devDependencies": {
"@dash4/config": "0.7.1",
"@dash4/config": "0.8.0",
"jest": "25.1.0",
"ts-jest": "25.0.0",
"typescript": "3.7.5"
Expand Down
4 changes: 2 additions & 2 deletions packages/ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dash4/ui",
"version": "0.7.1",
"version": "0.8.0",
"private": false,
"description": "dash4 react ui component",
"repository": "https://github.com/smollweide/dash4",
Expand Down Expand Up @@ -37,7 +37,7 @@
"@rooks/use-key": "3.6.0"
},
"devDependencies": {
"@dash4/config": "0.7.1",
"@dash4/config": "0.8.0",
"@emotion/core": "10.0.27",
"@storybook/addon-actions": "5.3.9",
"@storybook/addon-info": "5.3.9",
Expand Down
12 changes: 6 additions & 6 deletions plugins/plugin-actions/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dash4/plugin-actions",
"version": "0.7.1",
"version": "0.8.0",
"private": false,
"description": "Create actions like form based executions or simple links",
"repository": "https://github.com/smollweide/dash4",
Expand Down Expand Up @@ -38,15 +38,15 @@
"not ie <= 10"
],
"dependencies": {
"@dash4/log": "0.7.1",
"@dash4/server": "0.7.1",
"@dash4/log": "0.8.0",
"@dash4/server": "0.8.0",
"fs-extra": "8.1.0",
"uuid": "3.4.0"
},
"devDependencies": {
"@dash4/client": "0.7.1",
"@dash4/config": "0.7.1",
"@dash4/ui": "0.7.1",
"@dash4/client": "0.8.0",
"@dash4/config": "0.8.0",
"@dash4/ui": "0.8.0",
"@emotion/core": "10.0.27",
"@testing-library/react": "9.4.0",
"@testing-library/react-hooks": "3.2.1",
Expand Down
12 changes: 6 additions & 6 deletions plugins/plugin-code-coverage/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dash4/plugin-code-coverage",
"version": "0.7.1",
"version": "0.8.0",
"private": false,
"description": "Displays current code coverage",
"repository": "https://github.com/smollweide/dash4",
Expand Down Expand Up @@ -37,8 +37,8 @@
"not ie <= 10"
],
"dependencies": {
"@dash4/log": "0.7.1",
"@dash4/server": "0.7.1",
"@dash4/log": "0.8.0",
"@dash4/server": "0.8.0",
"fs-extra": "8.1.0",
"htmlparser2": "3.10.1",
"make-dir": "3.0.0",
Expand All @@ -47,9 +47,9 @@
"watch": "1.0.2"
},
"devDependencies": {
"@dash4/client": "0.7.1",
"@dash4/config": "0.7.1",
"@dash4/ui": "0.7.1",
"@dash4/client": "0.8.0",
"@dash4/config": "0.8.0",
"@dash4/ui": "0.8.0",
"@emotion/core": "10.0.27",
"@testing-library/react": "9.4.0",
"@types/fs-extra": "8.0.1",
Expand Down
14 changes: 7 additions & 7 deletions plugins/plugin-dependencies/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dash4/plugin-dependencies",
"version": "0.7.1",
"version": "0.8.0",
"private": false,
"description": "List of all dependencies and their version",
"repository": "https://github.com/smollweide/dash4",
Expand Down Expand Up @@ -38,19 +38,19 @@
"not ie <= 10"
],
"dependencies": {
"@dash4/log": "0.7.1",
"@dash4/plugin-npm-scripts": "0.7.1",
"@dash4/server": "0.7.1",
"@dash4/log": "0.8.0",
"@dash4/plugin-npm-scripts": "0.8.0",
"@dash4/server": "0.8.0",
"fs-extra": "8.1.0",
"globby": "11.0.0",
"latest-version": "5.1.0",
"read-pkg": "5.2.0",
"tslib": "1.10.0"
},
"devDependencies": {
"@dash4/client": "0.7.1",
"@dash4/config": "0.7.1",
"@dash4/ui": "0.7.1",
"@dash4/client": "0.8.0",
"@dash4/config": "0.8.0",
"@dash4/ui": "0.8.0",
"@emotion/core": "10.0.27",
"@testing-library/react": "9.4.0",
"@testing-library/react-hooks": "3.2.1",
Expand Down
16 changes: 8 additions & 8 deletions plugins/plugin-npm-scripts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dash4/plugin-npm-scripts",
"version": "0.7.1",
"version": "0.8.0",
"private": false,
"description": "dash4 plugin npm scripts",
"repository": "https://github.com/smollweide/dash4",
Expand Down Expand Up @@ -38,15 +38,15 @@
"not ie <= 10"
],
"dependencies": {
"@dash4/log": "0.7.1",
"@dash4/server": "0.7.1",
"@dash4/terminal-emulator": "0.7.1"
"@dash4/log": "0.8.0",
"@dash4/server": "0.8.0",
"@dash4/terminal-emulator": "0.8.0"
},
"devDependencies": {
"@dash4/client": "0.7.1",
"@dash4/config": "0.7.1",
"@dash4/react-xterm": "0.7.1",
"@dash4/ui": "0.7.1",
"@dash4/client": "0.8.0",
"@dash4/config": "0.8.0",
"@dash4/react-xterm": "0.8.0",
"@dash4/ui": "0.8.0",
"@emotion/core": "10.0.27",
"@testing-library/react": "9.4.0",
"@testing-library/react-hooks": "3.2.1",
Expand Down
12 changes: 6 additions & 6 deletions plugins/plugin-readme/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dash4/plugin-readme",
"version": "0.7.1",
"version": "0.8.0",
"private": false,
"description": "dash4 plugin readme",
"repository": "https://github.com/smollweide/dash4",
Expand Down Expand Up @@ -38,18 +38,18 @@
"not ie <= 10"
],
"dependencies": {
"@dash4/log": "0.7.1",
"@dash4/server": "0.7.1",
"@dash4/log": "0.8.0",
"@dash4/server": "0.8.0",
"fs-extra": "8.1.0",
"highlight.js": "9.18.0",
"markdown-to-jsx": "6.10.3",
"mime-types": "2.1.26",
"node-emoji": "1.10.0"
},
"devDependencies": {
"@dash4/client": "0.7.1",
"@dash4/config": "0.7.1",
"@dash4/ui": "0.7.1",
"@dash4/client": "0.8.0",
"@dash4/config": "0.8.0",
"@dash4/ui": "0.8.0",
"@emotion/core": "10.0.27",
"@testing-library/react": "9.4.0",
"@testing-library/react-hooks": "3.2.1",
Expand Down
16 changes: 8 additions & 8 deletions plugins/plugin-terminal/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dash4/plugin-terminal",
"version": "0.7.1",
"version": "0.8.0",
"private": false,
"description": "dash4 plugin terminal",
"repository": "https://github.com/smollweide/dash4",
Expand Down Expand Up @@ -37,17 +37,17 @@
"not ie <= 10"
],
"dependencies": {
"@dash4/log": "0.7.1",
"@dash4/server": "0.7.1",
"@dash4/terminal-emulator": "0.7.1",
"@dash4/log": "0.8.0",
"@dash4/server": "0.8.0",
"@dash4/terminal-emulator": "0.8.0",
"@rooks/use-key": "3.6.0",
"uuid": "3.4.0"
},
"devDependencies": {
"@dash4/client": "0.7.1",
"@dash4/config": "0.7.1",
"@dash4/react-xterm": "0.7.1",
"@dash4/ui": "0.7.1",
"@dash4/client": "0.8.0",
"@dash4/config": "0.8.0",
"@dash4/react-xterm": "0.8.0",
"@dash4/ui": "0.8.0",
"@testing-library/react": "9.4.0",
"@types/core-js": "2.5.2",
"@types/jest": "24.9.1",
Expand Down

0 comments on commit 611ecd3

Please sign in to comment.