From e475d03265f7ff375f2bd65417c7dddc5e393f9c Mon Sep 17 00:00:00 2001 From: Mikkel Laursen Date: Mon, 4 Mar 2024 19:00:36 -0500 Subject: [PATCH] build(version): version packages --- .changeset/pink-yaks-tickle.md | 9 +++++++++ .changeset/pre.json | 1 + apps/docs/CHANGELOG.md | 8 ++++++++ apps/docs/package.json | 2 +- packages/core/CHANGELOG.md | 9 +++++++++ packages/core/package.json | 2 +- packages/material-icons/CHANGELOG.md | 11 +++++++++++ packages/material-icons/package.json | 2 +- scripts/release.ts | 4 ++-- 9 files changed, 43 insertions(+), 5 deletions(-) create mode 100644 .changeset/pink-yaks-tickle.md diff --git a/.changeset/pink-yaks-tickle.md b/.changeset/pink-yaks-tickle.md new file mode 100644 index 0000000000..ffecfdcc7c --- /dev/null +++ b/.changeset/pink-yaks-tickle.md @@ -0,0 +1,9 @@ +--- +"@react-md/material-icons": patch +"@react-md/core": patch +--- + +Added a RootHtml component for Next.js apps and a lot of changes to the Select +component. The Select _should_ be able to be autofilled by the browser and +password managers now if I remember correctly. There's also a lot of work into +getting started with the new Autocomplete API. diff --git a/.changeset/pre.json b/.changeset/pre.json index 2a1887bd99..a6fc0e10d7 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -12,6 +12,7 @@ "gentle-gifts-arrive", "hip-poems-relate", "orange-toes-share", + "pink-yaks-tickle", "sharp-months-draw", "silent-chefs-invent", "tasty-trainers-beg", diff --git a/apps/docs/CHANGELOG.md b/apps/docs/CHANGELOG.md index d81405f6bb..4b6e613083 100644 --- a/apps/docs/CHANGELOG.md +++ b/apps/docs/CHANGELOG.md @@ -1,5 +1,13 @@ # docs +## 6.0.0-next.9 + +### Patch Changes + +- Updated dependencies + - @react-md/material-icons@6.0.0-next.9 + - @react-md/core@1.0.0-next.9 + ## 6.0.0-next.8 ### Patch Changes diff --git a/apps/docs/package.json b/apps/docs/package.json index 4db4ec0e84..08053466e8 100644 --- a/apps/docs/package.json +++ b/apps/docs/package.json @@ -2,7 +2,7 @@ "name": "docs", "type": "module", "private": true, - "version": "6.0.0-next.8", + "version": "6.0.0-next.9", "description": "The documentation site for react-md", "scripts": { "run-script": "ts-node -P scripts/tsconfig.json", diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index e0f824b0a1..dfcaf48c00 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,14 @@ # @react-md/core +## 1.0.0-next.9 + +### Patch Changes + +- Added a RootHtml component for Next.js apps and a lot of changes to the Select + component. The Select _should_ be able to be autofilled by the browser and + password managers now if I remember correctly. There's also a lot of work into + getting started with the new Autocomplete API. + ## 1.0.0-next.8 ### Patch Changes diff --git a/packages/core/package.json b/packages/core/package.json index 39660c30f9..9710f21609 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@react-md/core", - "version": "1.0.0-next.8", + "version": "1.0.0-next.9", "description": "The core components and functionality for react-md.", "type": "module", "sass": "./dist/_core.scss", diff --git a/packages/material-icons/CHANGELOG.md b/packages/material-icons/CHANGELOG.md index 8d8bcfa6b8..a77a344035 100644 --- a/packages/material-icons/CHANGELOG.md +++ b/packages/material-icons/CHANGELOG.md @@ -1,5 +1,16 @@ # @react-md/material-icons +## 6.0.0-next.9 + +### Patch Changes + +- Added a RootHtml component for Next.js apps and a lot of changes to the Select + component. The Select _should_ be able to be autofilled by the browser and + password managers now if I remember correctly. There's also a lot of work into + getting started with the new Autocomplete API. +- Updated dependencies + - @react-md/core@1.0.0-next.9 + ## 6.0.0-next.8 ### Patch Changes diff --git a/packages/material-icons/package.json b/packages/material-icons/package.json index 26472da1c2..66dd622b47 100644 --- a/packages/material-icons/package.json +++ b/packages/material-icons/package.json @@ -1,6 +1,6 @@ { "name": "@react-md/material-icons", - "version": "6.0.0-next.8", + "version": "6.0.0-next.9", "description": "Material Design Icon components for react-md", "type": "module", "exports": { diff --git a/scripts/release.ts b/scripts/release.ts index 81bae9f7f5..e4aafe2fd2 100644 --- a/scripts/release.ts +++ b/scripts/release.ts @@ -96,14 +96,14 @@ async function getReleaseVersion(): Promise { if ( await confirm({ - message: `Is "${version}" the current github release version?`, + message: `Is "${version}" the next github release version?`, }) ) { return version; } return await input({ - message: "Input the current release version for Github", + message: "Input the next release version for Github", }); }