Skip to content

Commit

Permalink
0.1.48 (#3131)
Browse files Browse the repository at this point in the history
  • Loading branch information
Janpot authored Jan 26, 2024
1 parent b2185c9 commit 9e1ab47
Show file tree
Hide file tree
Showing 11 changed files with 24 additions and 16 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.1.48

<!-- generated comparing v0.1.47..master -->

_Jan 26, 2024_

Fixing a failed release

## 0.1.47

<!-- generated comparing v0.1.46..master -->
Expand Down
14 changes: 7 additions & 7 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
1. Generate a new version using:

```bash
yarn release:version
pnpm release:version
```

This command will bump the version in every package of the project.

1. Generate the changelog using:

```bash
yarn release:changelog
pnpm release:changelog
```

Running this command requires a [GitHub personal access token](https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token) with the `public_repo` scope.
Expand All @@ -38,10 +38,10 @@
1. Run

```bash
npx https://pkg.csb.dev/mui/mui-toolpad/commit/<build>/create-toolpad-app smoke
npx https://pkg.csb.dev/mui/mui-toolpad/commit/<build>/create-toolpad-app smoke --use-pnpm
cd smoke
yarn add https://pkg.csb.dev/mui/mui-toolpad/commit/<build>/@mui/toolpad -S
yarn && yarn dev
pnpm add https://pkg.csb.dev/mui/mui-toolpad/commit/<build>/@mui/toolpad -S
pnpm dedupe && pnpm dev
```

And verify the editor works
Expand All @@ -59,13 +59,13 @@
1. Publish to `npm`

```bash
yarn release:publish
pnpm release:publish
```

If you've created a prerelease, then instead use
```bash
yarn release:publish-canary
pnpm release:publish-canary
```
1. Publish the documentation. The documentation must be updated on the `docs-latest` branch.
Expand Down
2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "docs",
"version": "0.1.47",
"version": "0.1.48",
"private": true,
"author": "MUI Toolpad",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
"version": "0.1.47",
"version": "0.1.48",
"npmClient": "pnpm"
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"jsonlint": "node ./scripts/jsonlint.mjs",
"release:build": "lerna run --ignore docs --stream build",
"release:version": "lerna version --exact --no-changelog --no-push --no-git-tag-version",
"release:publish": "pnpm publish --recursive --tag latest",
"release:publish": "pnpm dedupe && pnpm release:build && pnpm publish --recursive --tag latest",
"release:changelog": "dotenv -- node ./scripts/releaseChangelog.mjs --repo mui-toolpad",
"test:build": "lerna run build --scope @mui/toolpad-core --scope @mui/toolpad-components --stream",
"test:integration": "rimraf ./node_modules/.vite && playwright test --config ./test/playwright.config.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/create-toolpad-app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-toolpad-app",
"version": "0.1.47",
"version": "0.1.48",
"keywords": [
"react",
"toolpad",
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-plugin-material-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-plugin-material-ui",
"version": "0.1.47",
"version": "0.1.48",
"private": true,
"description": "Custom eslint rules for MUI.",
"main": "src/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/toolpad-app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mui/toolpad",
"version": "0.1.47",
"version": "0.1.48",
"license": "MIT",
"bin": {
"toolpad": "./cli.mjs"
Expand Down
2 changes: 1 addition & 1 deletion packages/toolpad-components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mui/toolpad-components",
"version": "0.1.47",
"version": "0.1.48",
"description": "Build MUI apps quickly",
"author": "MUI Toolpad team",
"homepage": "https://github.com/mui/mui-toolpad#readme",
Expand Down
2 changes: 1 addition & 1 deletion packages/toolpad-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mui/toolpad-core",
"version": "0.1.47",
"version": "0.1.48",
"description": "Build MUI apps quickly",
"author": "MUI Toolpad team",
"homepage": "https://github.com/mui/mui-toolpad#readme",
Expand Down
2 changes: 1 addition & 1 deletion packages/toolpad-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mui/toolpad-utils",
"version": "0.1.47",
"version": "0.1.48",
"description": "Build MUI apps quickly",
"author": "MUI Toolpad team",
"homepage": "https://github.com/mui/mui-toolpad#readme",
Expand Down

0 comments on commit 9e1ab47

Please sign in to comment.