Skip to content

Commit 02bac83

Browse files
committed
7.0.0
1 parent c613efd commit 02bac83

File tree

3 files changed

+32
-2
lines changed

3 files changed

+32
-2
lines changed

changelog.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,36 @@
22

33
All notable changes will be documented in this file.
44

5+
## 7.0.0 - 2021-08-13
6+
7+
Welcome to version 7.
8+
This a major release and therefore contains breaking changes.
9+
10+
### Breaking changes
11+
12+
* [`01b11fe`](https://github.com/remarkjs/react-markdown/commit/01b11fe)
13+
[`c613efd`](https://github.com/remarkjs/react-markdown/commit/c613efd)
14+
[`a1e1c3f`](https://github.com/remarkjs/react-markdown/commit/a1e1c3f)
15+
[`aeee9ac`](https://github.com/remarkjs/react-markdown/commit/aeee9ac)
16+
Use ESM
17+
(please [read this](https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c))
18+
* [`3dffd6a`](https://github.com/remarkjs/react-markdown/commit/3dffd6a)
19+
Update dependencies
20+
(upgrade all your plugins and this should go fine)
21+
22+
### Internals
23+
24+
* [`8b5481c`](https://github.com/remarkjs/react-markdown/commit/8b5481c)
25+
[`fb1b512`](https://github.com/remarkjs/react-markdown/commit/fb1b512)
26+
[`144af79`](https://github.com/remarkjs/react-markdown/commit/144af79)
27+
Replace `jest` with `uvu`
28+
* [`8c572df`](https://github.com/remarkjs/react-markdown/commit/8c572df)
29+
Replace `rollup` with `esbuild`
30+
* [`8737eac`](https://github.com/remarkjs/react-markdown/commit/8737eac)
31+
[`28d4c75`](https://github.com/remarkjs/react-markdown/commit/28d4c75)
32+
[`b2dd046`](https://github.com/remarkjs/react-markdown/commit/b2dd046)
33+
Refactor code-style
34+
535
## 6.0.3 - 2021-07-30
636

737
* [`13367ed`](https://github.com/remarkjs/react-markdown/commit/13367ed)

lib/react-markdown.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ export function ReactMarkdown(options) {
8383

8484
const processor = unified()
8585
.use(remarkParse)
86-
// TODO: deprecate `plugins` in v7.0.0.
86+
// TODO: deprecate `plugins` in v8.0.0.
8787
.use(options.remarkPlugins || options.plugins || [])
8888
.use(remarkRehype, {allowDangerousHtml: true})
8989
.use(options.rehypePlugins || [])

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-markdown",
3-
"version": "6.0.3",
3+
"version": "7.0.0",
44
"description": "Render Markdown as React components",
55
"license": "MIT",
66
"keywords": [

0 commit comments

Comments
 (0)