Skip to content

Commit

Permalink
Version Packages (#215)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Nov 18, 2024
1 parent 46249c8 commit 8f463b2
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 31 deletions.
15 changes: 0 additions & 15 deletions .changeset/khaki-rice-tickle.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/ninety-schools-dance.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/strong-moons-rule.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/warm-colts-invent.md

This file was deleted.

23 changes: 23 additions & 0 deletions packages/renoun/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
# renoun

## 7.4.0

### Minor Changes

- e71de2f: Adds `shouldFormat` prop to `CodeBlock` component to allow disabling code formatting. This is useful for MDX code blocks that are already formatted by an IDE or CI environment.

```tsx
export function useMDXComponents() {
return {
pre: (props) => {
return <CodeBlock shouldFormat={false} {...restProps} />
},
}
}
```

- f44b9c5: Adds support for passing an array to `isFileWithExtension` and `<File>.hasExtension`.

### Patch Changes

- bf0c510: Fixes File System `recursive` options not calculating the appropriate relative paths.
- eab583f: Explicitly sets the prettier `parser` option instead of relying on inference from `filepath` to avoid false-positive errors when parsing code blocks without a provided `filename`.

## 7.3.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/renoun/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "renoun",
"version": "7.3.0",
"version": "7.4.0",
"description": "The Technical Content Toolkit for React",
"author": "Travis Arnold",
"license": "AGPL-3.0-or-later",
Expand Down

0 comments on commit 8f463b2

Please sign in to comment.