Skip to content

Commit

Permalink
[ci] release (#19)
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 Feb 26, 2024
1 parent 643f9b8 commit 90f0aae
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 26 deletions.
25 changes: 0 additions & 25 deletions .changeset/shiny-dingos-remember.md

This file was deleted.

25 changes: 25 additions & 0 deletions packages/astro-remote/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
# astro-remote

## 0.3.0

### Minor Changes

- 643f9b8: This release updates all dependencies and resolves some typing issues.

**New Features**

- [Marked](https://marked.js.org/using_pro) extensions are now supported via the `marked` prop.

```astro
---
import markedAlert from 'marked-alert'
const readme = await fetch("https://raw.githubusercontent.com/natemoo-re/astro-remote/main/packages/astro-remote/README.md").then((res) => res.text());
---
<Markdown
content={readme}
marked={{ extensions: [markedAlert()] }}
/>
```
**Breaking Changes**
- The minimum required Node version is now `v18.14.1` to align with Astro's [current requirements](https://docs.astro.build/en/tutorial/1-setup/1/#nodejs). This is enforced via an `engines` constraint.
## 0.2.4
### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/astro-remote/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "astro-remote",
"description": "Render remote HTML or Markdown content in Astro with full control over the output.",
"type": "module",
"version": "0.2.4",
"version": "0.3.0",
"repository": {
"type": "git",
"url": "https://github.com/natemoo-re/astro-remote"
Expand Down

0 comments on commit 90f0aae

Please sign in to comment.