Skip to content

Commit

Permalink
Version Packages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Dec 9, 2024
1 parent 1f6603d commit cda8a63
Show file tree
Hide file tree
Showing 6 changed files with 36 additions and 29 deletions.
5 changes: 0 additions & 5 deletions .changeset/cuddly-news-kneel.md

This file was deleted.

22 changes: 0 additions & 22 deletions .changeset/loud-pans-sit.md

This file was deleted.

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

## 1.2.2

### Patch Changes

- ece3cc2: Fixes inline code language inference by considering language aliases.

## 1.2.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/mdx/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@renoun/mdx",
"version": "1.2.1",
"version": "1.2.2",
"description": "MDX plugins for renoun",
"author": "Travis Arnold",
"license": "MIT",
Expand Down
28 changes: 28 additions & 0 deletions packages/renoun/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,33 @@
# renoun

## 7.9.0

### Minor Changes

- 1f6603d: Removes `getEditPath` in favor of `getRepositoryUrl` and `getEditorUri` for a more explicit API. Prior, the `getEditPath` method switched between the editor and the git provider source based on the environment. This was confusing and not always the desired behavior. Now you can explicitly choose the behavior you want.

### Breaking Changes

The `getEditPath` method has been removed. Use `getRepositoryUrl` and `getEditorUri` instead.

To get the same behavior as `getEditPath` you can use both `getRepositoryUrl` and `getEditorUri` together:

```ts
import { Directory } from 'renoun/file-system'

const directory = new Directory('src/components')
const file = directory.getFileOrThrow('Button', 'tsx')
const editUrl =
process.env.NODE_ENV === 'development'
? file.getEditorUri()
: file.getRepositoryUrl({ type: 'edit' })
```

### Patch Changes

- Updated dependencies [ece3cc2]
- @renoun/mdx@1.2.2

## 7.8.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.8.0",
"version": "7.9.0",
"description": "The Technical Content Toolkit for React",
"author": "Travis Arnold",
"license": "AGPL-3.0-or-later",
Expand Down

0 comments on commit cda8a63

Please sign in to comment.