Skip to content

Commit

Permalink
build(version): version packages
Browse files Browse the repository at this point in the history
  • Loading branch information
mlaursen committed Mar 5, 2024
1 parent 4330c6a commit e475d03
Show file tree
Hide file tree
Showing 9 changed files with 43 additions and 5 deletions.
9 changes: 9 additions & 0 deletions .changeset/pink-yaks-tickle.md
Original file line number Diff line number Diff line change
@@ -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.
1 change: 1 addition & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
8 changes: 8 additions & 0 deletions apps/docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
9 changes: 9 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
11 changes: 11 additions & 0 deletions packages/material-icons/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/material-icons/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
4 changes: 2 additions & 2 deletions scripts/release.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,14 +96,14 @@ async function getReleaseVersion(): Promise<string> {

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",
});
}

Expand Down

0 comments on commit e475d03

Please sign in to comment.