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 Apr 22, 2024
1 parent 2eba9ec commit 4b8b394
Show file tree
Hide file tree
Showing 15 changed files with 140 additions and 394 deletions.
6 changes: 5 additions & 1 deletion .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@
"docs": "6.0.0-next.0",
"@react-md/codemod": "6.0.0-next.0",
"@react-md/core": "1.0.0-next.0",
"@react-md/material-icons": "6.0.0-next.0"
"@react-md/material-icons": "6.0.0-next.0",
"@react-md/code": "0.0.1-next.0",
"docs-generator": "0.0.1-next.0",
"react-md": "6.0.0-next.0"
},
"changesets": [
"famous-pens-perform",
Expand All @@ -17,6 +20,7 @@
"orange-toes-share",
"pink-yaks-tickle",
"sharp-months-draw",
"short-lies-decide",
"silent-chefs-invent",
"tasty-trainers-beg",
"ten-poems-film",
Expand Down
30 changes: 30 additions & 0 deletions .changeset/short-lies-decide.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
---
"@react-md/code": patch
"@react-md/core": patch
---

Breaking Changes:

- `@react-md/core` no longer supports a single entrypoint and is ESM only

Features:

- `react-md` package is now a convenience package for the `@react-md/core` single entrypoint
- New `@react-md/code` package for most of the code functionality within the documentation stie
- `Box` now sets the `--rmd-box-columns` variable to the `columns` prop when it is a number
- New `Navigation` components
- The `useExpandableLayout` and `useResizableLayout` hooks support `"static"` full height navigation
- The `useExpandableLayout` and `useResizableLayout` hooks support conditionally rendering the `"static"` layouts while being SSR safe
- New `useActiveHeadingId` hook to help re-create the Table of Contents behavior in the documentation stie

Bug fixes:

- The `box-custom-grid` mixin should no longer error
- The `LayoutAppBar` no longer causes layout shifts after rehydrating
- The `ToastManager` handles repeated pause and resumes correctly

Other changes

- Documentation site overhaul to allow editing SCSS modules and showing the generated output
- Simplified the @since tags in tsdoc
- Simplified tsdoc examples
10 changes: 10 additions & 0 deletions apps/docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# docs

## 0.0.2-next.0

### Patch Changes

- Updated dependencies
- @react-md/code@0.0.1-next.1
- @react-md/core@1.0.0-next.13
- docs-generator@0.0.1-next.1
- @react-md/material-icons@6.0.0-next.14

## 6.0.0-next.11

### 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": "0.0.1",
"version": "0.0.2-next.0",
"description": "The documentation site for react-md",
"scripts": {
"run-script": "tsx --tsconfig scripts/tsconfig.json",
Expand Down
35 changes: 35 additions & 0 deletions packages/code/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# @react-md/code

## 0.0.1-next.1

### Patch Changes

- Breaking Changes:

- `@react-md/core` no longer supports a single entrypoint and is ESM only

Features:

- `react-md` package is now a convenience package for the `@react-md/core` single entrypoint
- New `@react-md/code` package for most of the code functionality within the documentation stie
- `Box` now sets the `--rmd-box-columns` variable to the `columns` prop when it is a number
- New `Navigation` components
- The `useExpandableLayout` and `useResizableLayout` hooks support `"static"` full height navigation
- The `useExpandableLayout` and `useResizableLayout` hooks support conditionally rendering the `"static"` layouts while being SSR safe
- New `useActiveHeadingId` hook to help re-create the Table of Contents behavior in the documentation stie

Bug fixes:

- The `box-custom-grid` mixin should no longer error
- The `LayoutAppBar` no longer causes layout shifts after rehydrating
- The `ToastManager` handles repeated pause and resumes correctly

Other changes

- Documentation site overhaul to allow editing SCSS modules and showing the generated output
- Simplified the @since tags in tsdoc
- Simplified tsdoc examples

- Updated dependencies
- @react-md/core@1.0.0-next.13
- @react-md/material-icons@6.0.0-next.14
2 changes: 1 addition & 1 deletion packages/code/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@react-md/code",
"private": true,
"version": "0.0.1-next.0",
"version": "0.0.1-next.1",
"description": "The core components and functionality for react-md.",
"type": "module",
"sass": "./dist/_code.scss",
Expand Down
30 changes: 30 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,35 @@
# @react-md/core

## 1.0.0-next.13

### Patch Changes

- Breaking Changes:

- `@react-md/core` no longer supports a single entrypoint and is ESM only

Features:

- `react-md` package is now a convenience package for the `@react-md/core` single entrypoint
- New `@react-md/code` package for most of the code functionality within the documentation stie
- `Box` now sets the `--rmd-box-columns` variable to the `columns` prop when it is a number
- New `Navigation` components
- The `useExpandableLayout` and `useResizableLayout` hooks support `"static"` full height navigation
- The `useExpandableLayout` and `useResizableLayout` hooks support conditionally rendering the `"static"` layouts while being SSR safe
- New `useActiveHeadingId` hook to help re-create the Table of Contents behavior in the documentation stie

Bug fixes:

- The `box-custom-grid` mixin should no longer error
- The `LayoutAppBar` no longer causes layout shifts after rehydrating
- The `ToastManager` handles repeated pause and resumes correctly

Other changes

- Documentation site overhaul to allow editing SCSS modules and showing the generated output
- Simplified the @since tags in tsdoc
- Simplified tsdoc examples

## 1.0.0-next.12

### 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.12",
"version": "1.0.0-next.13",
"description": "The core components and functionality for react-md.",
"type": "module",
"sass": "./dist/_core.scss",
Expand Down
Loading

0 comments on commit 4b8b394

Please sign in to comment.