Skip to content

Commit d09b227

Browse files
authored
V0.1.0 (#1761)
1 parent efd6638 commit d09b227

File tree

11 files changed

+44
-31
lines changed

11 files changed

+44
-31
lines changed

CHANGELOG.md

+21
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
# Changelog
22

3+
## 0.1.0
4+
5+
<!-- generated comparing v0.0.41..master -->
6+
7+
_Mar 20, 2023_
8+
9+
A big thanks to the 3 contributors who made this release possible. Here are some highlights ✨:
10+
11+
Today we're taking a big step. We're making Toolpad focus much more on integrating with your IDE, while providing the ease of building UI fast with a drag and drop. Read more [here](https://github.com/mui/mui-toolpad/discussions/1748).
12+
13+
- &#8203;<!-- 8 -->Add create-toolpad-app CLI (#1700) @bharatkashyap
14+
- &#8203;<!-- 7 -->Direction 13 (#1651) @Janpot
15+
- &#8203;<!-- 6 -->Fix dragged element corners (#1750) @Janpot
16+
- &#8203;<!-- 5 -->Turn off preview environments (#1697) @Janpot
17+
- &#8203;<!-- 4 -->this don't work @Janpot
18+
- &#8203;<!-- 3 -->build to legacy master @Janpot
19+
- &#8203;<!-- 2 -->add ignore console to test @Janpot
20+
- &#8203;<!-- 1 -->Disable bindings for properties that can be controlled in canvas (#1696) @apedroferreira
21+
22+
All contributors of this release in alphabetical order: @apedroferreira, @bharatkashyap, @Janpot
23+
324
## 0.0.41
425

526
<!-- generated comparing v0.0.40..master -->

RELEASE.md

-10
Original file line numberDiff line numberDiff line change
@@ -33,16 +33,6 @@
3333

3434
1. Open a PR with the proposed changes.
3535

36-
1. Review/merge the PR — once the PR is merged to `master` a Docker image is built for the commit, tagged with the commit SHA and then pushed to Docker Hub, just like for any other commit in `master`.
37-
38-
1. Wait for the Docker build to finish. (You can find the job in the [CircleCI pipelines](https://app.circleci.com/pipelines/github/mui/mui-toolpad?branch=master)). Note that you can always verify the built docker image by running it as
39-
40-
```sh
41-
TAG=<git-sha> docker-compose -f docker/compose/docker-compose.yml up
42-
```
43-
44-
Where `<git-sha>` is the commit on master that you want to test.
45-
4636
1. Release the Docker image using (requires GitHub authentication token):
4737

4838
```sh

docs/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "docs",
3-
"version": "0.0.42-alpha.6",
3+
"version": "0.1.0",
44
"private": true,
55
"author": "MUI Toolpad",
66
"license": "MIT",

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "0.0.42-alpha.6",
2+
"version": "0.1.0",
33
"npmClient": "yarn",
44
"useWorkspaces": true
55
}

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@
3535
"release:build": "lerna run --ignore docs --stream build",
3636
"release:version": "lerna version --no-changelog --no-push --no-git-tag-version",
3737
"release:docker": "dotenv -- node ./scripts/releaseDocker.mjs",
38-
"release:publish": "lerna publish --force-publish --no-git-tag-version --no-push --no-git-reset",
39-
"release:publish-canary": "lerna publish --force-publish --no-git-tag-version --no-push --no-git-reset --pre-dist-tag canary",
38+
"release:publish": "lerna publish from-package --force-publish --no-git-tag-version --no-push --no-git-reset",
39+
"release:publish-canary": "lerna publish from-package --force-publish --no-git-tag-version --no-push --no-git-reset --pre-dist-tag canary",
4040
"release:changelog": "dotenv -- node ./scripts/releaseChangelog.mjs --repo mui-toolpad",
4141
"test:build": "lerna run build --scope @mui/toolpad-core --scope @mui/toolpad-components --stream",
4242
"test:integration": "playwright test --config ./test/integration/playwright.config.ts",

packages/create-toolpad-app/package.json

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-toolpad-app",
3-
"version": "0.0.42-alpha.5",
3+
"version": "0.1.0",
44
"keywords": [
55
"react",
66
"toolpad",
@@ -30,9 +30,11 @@
3030
},
3131
"dependencies": {
3232
"chalk": "^5.2.0",
33-
"execa": "^7.1.1"
33+
"execa": "^7.1.1",
34+
"inquirer": "^9.1.5"
3435
},
3536
"devDependencies": {
3637
"@types/inquirer": "^9.0.3"
37-
}
38+
},
39+
"gitHead": "de68953329881ccd3aa40e82a7302c0baa38c3c5"
3840
}

packages/eslint-plugin-material-ui/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-plugin-material-ui",
3-
"version": "0.0.42-alpha.6",
3+
"version": "0.1.0",
44
"private": true,
55
"description": "Custom eslint rules for MUI.",
66
"main": "src/index.js",

packages/toolpad-app/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/toolpad-app",
3-
"version": "0.0.42-alpha.6",
3+
"version": "0.1.0",
44
"license": "MIT",
55
"scripts": {
66
"build": "yarn prisma generate && concurrently \"yarn:build:*\" && rimraf ./.next/cache",
@@ -50,8 +50,8 @@
5050
"@mui/lab": "^5.0.0-alpha.123",
5151
"@mui/material": "^5.11.13",
5252
"@mui/system": "^5.11.13",
53-
"@mui/toolpad-components": "^0.0.42-alpha.6",
54-
"@mui/toolpad-core": "^0.0.42-alpha.6",
53+
"@mui/toolpad-components": "^0.1.0",
54+
"@mui/toolpad-core": "^0.1.0",
5555
"@mui/types": "^7.2.3",
5656
"@mui/utils": "^5.11.13",
5757
"@mui/x-data-grid-generator": "^5.17.25",
@@ -162,5 +162,5 @@
162162
"publishConfig": {
163163
"access": "public"
164164
},
165-
"gitHead": "035964a9ef748b365e130b428c2cbba9663902cf"
165+
"gitHead": "de68953329881ccd3aa40e82a7302c0baa38c3c5"
166166
}

packages/toolpad-components/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/toolpad-components",
3-
"version": "0.0.42-alpha.6",
3+
"version": "0.1.0",
44
"description": "Build MUI apps quickly",
55
"author": "MUI Toolpad team",
66
"homepage": "https://github.com/mui/mui-toolpad#readme",
@@ -32,7 +32,7 @@
3232
},
3333
"dependencies": {
3434
"@mui/material": "^5.11.13",
35-
"@mui/toolpad-core": "^0.0.42-alpha.6",
35+
"@mui/toolpad-core": "^0.1.0",
3636
"@mui/x-data-grid-pro": "^5.17.25",
3737
"@mui/x-date-pickers": "^5.0.20",
3838
"dayjs": "^1.11.7",
@@ -47,5 +47,5 @@
4747
"publishConfig": {
4848
"access": "public"
4949
},
50-
"gitHead": "035964a9ef748b365e130b428c2cbba9663902cf"
50+
"gitHead": "de68953329881ccd3aa40e82a7302c0baa38c3c5"
5151
}

packages/toolpad-core/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/toolpad-core",
3-
"version": "0.0.42-alpha.6",
3+
"version": "0.1.0",
44
"description": "Build MUI apps quickly",
55
"author": "MUI Toolpad team",
66
"homepage": "https://github.com/mui/mui-toolpad#readme",
@@ -100,5 +100,5 @@
100100
"publishConfig": {
101101
"access": "public"
102102
},
103-
"gitHead": "035964a9ef748b365e130b428c2cbba9663902cf"
103+
"gitHead": "de68953329881ccd3aa40e82a7302c0baa38c3c5"
104104
}

packages/toolpad/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui/toolpad",
3-
"version": "0.0.42-alpha.6",
3+
"version": "0.1.0",
44
"license": "MIT",
55
"scripts": {
66
"cjsify": "mkdir -p ./dist/cjs && echo \"{ \\\"type\\\":\\\"commonjs\\\" }\" > ./dist/cjs/package.json",
@@ -33,12 +33,12 @@
3333
"toolpad": "./index.js"
3434
},
3535
"dependencies": {
36-
"@mui/toolpad-app": "^0.0.42-alpha.6",
37-
"@mui/toolpad-core": "^0.0.42-alpha.6",
36+
"@mui/toolpad-app": "^0.1.0",
37+
"@mui/toolpad-core": "^0.1.0",
3838
"arg": "^5.0.2",
3939
"concurrently": "^7.6.0",
4040
"dotenv": "^16.0.3",
4141
"execa": "^7.1.1"
4242
},
43-
"gitHead": "035964a9ef748b365e130b428c2cbba9663902cf"
43+
"gitHead": "de68953329881ccd3aa40e82a7302c0baa38c3c5"
4444
}

0 commit comments

Comments
 (0)