diff --git a/CHANGELOG.md b/CHANGELOG.md index 477803a7acf..022904f52d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,26 @@ # Changelog +## v0.0.12 + + + +_Aug 3, 2022_ + +A big thanks to the 4 contributors who made this release possible. Here are some highlights ✨: + +Allow vertically resizing components, add configuration options to Fetch datasource. + +- ​Allow scrolling the page when over the monaco editor (#719) @Janpot +- ​Make DataTable vertically resizeable (#700) @apedroferreira +- ​Fix typo (#715) @oliviertassinari +- ​Make fetch method configurable (#708) @Janpot +- ​Remove some unnecessary component sizing (#710) @Janpot +- ​[core] `NodeReference` type for references to nodes (#720) @bharatkashyap +- ​[core] Remove duplicated file (#714) @oliviertassinari +- ​[core] Prepare automation for support (#612) @oliviertassinari + +All contributors of this release in alphabetical order: @apedroferreira, @bharatkashyap, @Janpot, @oliviertassinari + ## v0.0.11 diff --git a/docs/package.json b/docs/package.json index 8d7dbc6b29c..998d17fdbd4 100644 --- a/docs/package.json +++ b/docs/package.json @@ -1,6 +1,6 @@ { "name": "docs", - "version": "0.0.11", + "version": "0.0.12", "private": true, "author": "MUI Toolpad", "license": "MIT", diff --git a/lerna.json b/lerna.json index 60d32903ee8..36eccb4be89 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "0.0.11", + "version": "0.0.12", "npmClient": "yarn", "useWorkspaces": true } diff --git a/packages/eslint-plugin-material-ui/package.json b/packages/eslint-plugin-material-ui/package.json index 41afe499920..f6e9db293d2 100644 --- a/packages/eslint-plugin-material-ui/package.json +++ b/packages/eslint-plugin-material-ui/package.json @@ -1,6 +1,6 @@ { "name": "eslint-plugin-material-ui", - "version": "0.0.11", + "version": "0.0.12", "private": true, "description": "Custom eslint rules for MUI.", "main": "src/index.js", diff --git a/packages/toolpad-app/package.json b/packages/toolpad-app/package.json index 3ff5caf6fba..745baa50242 100644 --- a/packages/toolpad-app/package.json +++ b/packages/toolpad-app/package.json @@ -1,6 +1,6 @@ { "name": "@mui/toolpad-app", - "version": "0.0.11", + "version": "0.0.12", "license": "MIT", "scripts": { "build": "yarn prisma generate && concurrently \"yarn:build:*\" && rimraf ./.next/cache", @@ -40,8 +40,8 @@ "@mui/lab": "^5.0.0-alpha.88", "@mui/material": "^5.8.6", "@mui/system": "^5.8.6", - "@mui/toolpad-components": "^0.0.11", - "@mui/toolpad-core": "^0.0.11", + "@mui/toolpad-components": "^0.0.12", + "@mui/toolpad-core": "^0.0.12", "@mui/utils": "^5.8.6", "@mui/x-data-grid-pro": "^5.12.3", "@prisma/client": "^4.0.0", diff --git a/packages/toolpad-components/package.json b/packages/toolpad-components/package.json index d781cefb8ab..69c375e4276 100644 --- a/packages/toolpad-components/package.json +++ b/packages/toolpad-components/package.json @@ -1,6 +1,6 @@ { "name": "@mui/toolpad-components", - "version": "0.0.11", + "version": "0.0.12", "description": "Build MUI apps quickly", "author": "MUI Toolpad team", "homepage": "https://github.com/mui/mui-toolpad#readme", @@ -30,7 +30,7 @@ }, "dependencies": { "@mui/material": "^5.8.6", - "@mui/toolpad-core": "^0.0.11", + "@mui/toolpad-core": "^0.0.12", "@mui/x-data-grid-pro": "^5.12.3" }, "devDependencies": { diff --git a/packages/toolpad-core/package.json b/packages/toolpad-core/package.json index 5680a45115c..8f2bcd9b8f7 100644 --- a/packages/toolpad-core/package.json +++ b/packages/toolpad-core/package.json @@ -1,6 +1,6 @@ { "name": "@mui/toolpad-core", - "version": "0.0.11", + "version": "0.0.12", "description": "Build MUI apps quickly", "author": "MUI Toolpad team", "homepage": "https://github.com/mui/mui-toolpad#readme",