Skip to content

Commit

Permalink
chore: release v0.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Mollweide committed Dec 7, 2020
1 parent 4a41e32 commit 95ef0ca
Show file tree
Hide file tree
Showing 16 changed files with 70 additions and 61 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## <small>0.9.3 (2020-12-07)</small>

* fix: update dependencies ([4a41e32](https://github.com/smollweide/dash4/commit/4a41e32))
* chore: switch to node 14.15.1 ([93df8c3](https://github.com/smollweide/dash4/commit/93df8c3))





## <small>0.9.2 (2020-11-18)</small>

* fix: update react-bootstrap ([c4911ee](https://github.com/smollweide/dash4/commit/c4911ee))
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.9.2",
"version": "0.9.3",
"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.9.2",
"version": "0.9.3",
"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.9.2",
"@dash4/log": "0.9.3",
"@namics/prettier-config": "1.1.0",
"chalk": "4.1.0",
"commander": "6.2.0",
Expand All @@ -46,7 +46,7 @@
"write-pkg": "4.0.0"
},
"devDependencies": {
"@dash4/config": "0.9.2",
"@dash4/config": "0.9.3",
"@namics/ts-config": "1.0.1",
"@types/glob": "7.1.3",
"@types/jest": "26.0.16",
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.9.2",
"version": "0.9.3",
"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.9.2",
"@dash4/react-xterm": "0.9.2",
"@dash4/ui": "0.9.2",
"@dash4/log": "0.9.3",
"@dash4/react-xterm": "0.9.3",
"@dash4/ui": "0.9.3",
"@emotion/core": "10.0.35",
"bootstrap": "4.5.3",
"core-js": "3.8.1",
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.9.2",
"version": "0.9.3",
"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.9.2",
"version": "0.9.3",
"private": false,
"description": "dash4 log helper",
"repository": "https://github.com/smollweide/dash4",
Expand Down Expand Up @@ -28,7 +28,7 @@
"tslib": "2.0.3"
},
"devDependencies": {
"@dash4/config": "0.9.2",
"@dash4/config": "0.9.3",
"jest": "26.6.3",
"ts-jest": "26.4.4",
"typescript": "3.9.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.9.2",
"version": "0.9.3",
"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.9.2",
"@dash4/config": "0.9.3",
"@namics/ts-config": "1.0.1",
"@types/core-js": "2.5.4",
"@types/react": "16.9.56",
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.9.2",
"version": "0.9.3",
"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.9.2",
"@dash4/log": "0.9.2",
"@dash4/client": "0.9.3",
"@dash4/log": "0.9.3",
"commander": "6.2.0",
"mime-types": "2.1.27",
"open": "7.3.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.9.2",
"version": "0.9.3",
"private": false,
"description": "dash4 terminal emulator using node-pty",
"repository": "https://github.com/smollweide/dash4",
Expand All @@ -27,7 +27,7 @@
"tslib": "2.0.3"
},
"devDependencies": {
"@dash4/config": "0.9.2",
"@dash4/config": "0.9.3",
"jest": "26.6.3",
"ts-jest": "26.4.4",
"typescript": "3.9.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.9.2",
"version": "0.9.3",
"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.9.2",
"@dash4/config": "0.9.3",
"@emotion/core": "10.0.35",
"@storybook/react": "6.0.28",
"@testing-library/react": "10.4.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.9.2",
"version": "0.9.3",
"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.9.2",
"@dash4/server": "0.9.2",
"@dash4/log": "0.9.3",
"@dash4/server": "0.9.3",
"fs-extra": "9.0.1",
"uuid": "8.3.1"
},
"devDependencies": {
"@dash4/client": "0.9.2",
"@dash4/config": "0.9.2",
"@dash4/ui": "0.9.2",
"@dash4/client": "0.9.3",
"@dash4/config": "0.9.3",
"@dash4/ui": "0.9.3",
"@emotion/core": "10.0.35",
"@testing-library/react": "10.4.9",
"@testing-library/react-hooks": "3.4.2",
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.9.2",
"version": "0.9.3",
"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.9.2",
"@dash4/server": "0.9.2",
"@dash4/log": "0.9.3",
"@dash4/server": "0.9.3",
"fs-extra": "9.0.1",
"htmlparser2": "3.10.1",
"make-dir": "3.1.0",
Expand All @@ -47,9 +47,9 @@
"watch": "1.0.2"
},
"devDependencies": {
"@dash4/client": "0.9.2",
"@dash4/config": "0.9.2",
"@dash4/ui": "0.9.2",
"@dash4/client": "0.9.3",
"@dash4/config": "0.9.3",
"@dash4/ui": "0.9.3",
"@emotion/core": "10.0.35",
"@testing-library/react": "10.4.9",
"@types/fs-extra": "9.0.4",
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.9.2",
"version": "0.9.3",
"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.9.2",
"@dash4/plugin-npm-scripts": "0.9.2",
"@dash4/server": "0.9.2",
"@dash4/log": "0.9.3",
"@dash4/plugin-npm-scripts": "0.9.3",
"@dash4/server": "0.9.3",
"fs-extra": "9.0.1",
"globby": "11.0.1",
"latest-version": "5.1.0",
"read-pkg": "5.2.0",
"tslib": "2.0.3"
},
"devDependencies": {
"@dash4/client": "0.9.2",
"@dash4/config": "0.9.2",
"@dash4/ui": "0.9.2",
"@dash4/client": "0.9.3",
"@dash4/config": "0.9.3",
"@dash4/ui": "0.9.3",
"@emotion/core": "10.0.35",
"@testing-library/react": "10.4.9",
"@testing-library/react-hooks": "3.4.2",
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.9.2",
"version": "0.9.3",
"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.9.2",
"@dash4/server": "0.9.2",
"@dash4/terminal-emulator": "0.9.2"
"@dash4/log": "0.9.3",
"@dash4/server": "0.9.3",
"@dash4/terminal-emulator": "0.9.3"
},
"devDependencies": {
"@dash4/client": "0.9.2",
"@dash4/config": "0.9.2",
"@dash4/react-xterm": "0.9.2",
"@dash4/ui": "0.9.2",
"@dash4/client": "0.9.3",
"@dash4/config": "0.9.3",
"@dash4/react-xterm": "0.9.3",
"@dash4/ui": "0.9.3",
"@emotion/core": "10.0.35",
"@testing-library/react": "10.4.9",
"@testing-library/react-hooks": "3.4.2",
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.9.2",
"version": "0.9.3",
"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.9.2",
"@dash4/server": "0.9.2",
"@dash4/log": "0.9.3",
"@dash4/server": "0.9.3",
"fs-extra": "9.0.1",
"highlight.js": "10.4.1",
"markdown-to-jsx": "7.1.0",
"mime-types": "2.1.27",
"node-emoji": "1.10.0"
},
"devDependencies": {
"@dash4/client": "0.9.2",
"@dash4/config": "0.9.2",
"@dash4/ui": "0.9.2",
"@dash4/client": "0.9.3",
"@dash4/config": "0.9.3",
"@dash4/ui": "0.9.3",
"@emotion/core": "10.0.35",
"@testing-library/react": "10.4.9",
"@testing-library/react-hooks": "3.4.2",
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.9.2",
"version": "0.9.3",
"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.9.2",
"@dash4/server": "0.9.2",
"@dash4/terminal-emulator": "0.9.2",
"@dash4/log": "0.9.3",
"@dash4/server": "0.9.3",
"@dash4/terminal-emulator": "0.9.3",
"@rooks/use-key": "3.6.0",
"uuid": "8.3.1"
},
"devDependencies": {
"@dash4/client": "0.9.2",
"@dash4/config": "0.9.2",
"@dash4/react-xterm": "0.9.2",
"@dash4/ui": "0.9.2",
"@dash4/client": "0.9.3",
"@dash4/config": "0.9.3",
"@dash4/react-xterm": "0.9.3",
"@dash4/ui": "0.9.3",
"@testing-library/react": "10.4.9",
"@types/core-js": "2.5.4",
"@types/jest": "26.0.16",
Expand Down

0 comments on commit 95ef0ca

Please sign in to comment.