Skip to content

Commit d183d7c

Browse files
author
Evan Jacobs
committed
3.0.0
See CHANGELOG
1 parent c2660e4 commit d183d7c

File tree

3 files changed

+31
-4
lines changed

3 files changed

+31
-4
lines changed

CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
1+
### 3.0.0 (June 28, 2016)
2+
3+
- __Implement proper handling for "tight" lists__ (ccbfdf8) In the case of a "tight" list--meaning a markdown list with no padding newline between entries--the inner paragraph generated by the AST parser is now automatically stripped out as expected.
4+
5+
- __Automatically remove the root `<div>` wrapper for singular children__ (e5b1453) The root `<div>` is now discarded for all scenarios where there is only one top-level element. This prevents the need to add a class to all the wrappers to make them inline or change the block flow.
6+
7+
- __Fix a test made brittle by the React `<span>` -> comment change__ (841c56e)
8+
- __Automatically test all supported major React versions__ (517ea64)
9+
- __chore(package): update babel-preset-react to version 6.11.1__ (b4363ee)
10+
- __chore(package): update babel-preset-stage-2 to version 6.11.0__ (0adac9a)
11+
- __chore(package): update jest-cli to version 13.0.0__ (36f7a71)
12+
- __chore(package): update babel-jest to version 13.0.0__ (859a31c)
13+
- __chore(package): update remark to version 4.2.2__ (d70df94)
14+
- __chore(package): update babel-cli to version 6.10.1__ (e8e4920)
15+
- __chore(package): update babel-jest to version 12.1.0__ (92be820)
16+
- __chore(package): update jest-cli to version 12.1.1__ (c65ebbd)
17+
- __Update package.json__ (84c7f80)
18+
- __chore(package): update react-dom to version 15.1.0__ (ce6b53e)
19+
- __chore(package): update babel-preset-es2015 to version 6.9.0__ (a9b34c9)
20+
- __chore(package): update babel-cli to version 6.9.0__ (b1606ec)
21+
- __More rigorous CI testing__ (ffd8209) Enforce an engine version >= node 0.12
22+
- __chore(package): update react to version 15.0.2__ (07785e4)
23+
- __chore(package): update babel-cli to version 6.8.0__ (85e0aa5)
24+
- __chore(package): update react-dom to version 15.0.1__ (9e4bfc7)
25+
- __chore(package): update react to version 15.0.1__ (f0569a2)
26+
- __2.0.1__ (7b9d495) Updated internals, no user-facing changes. Now testing against React 15.x
27+
- __Update dev deps & fix test for React v15__ (b9c56ca)
28+
29+
---
30+
131
### 2.0.1 (April 28, 2016)
232

333
- Update dev deps & fix test for React v15 (b9c56caf5d4bb4c5de6d7228e2886b55e30ff63a)

README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,6 @@ Any conflicts between passed `props` and the specific properties above will be r
5959

6060
## Known Issues
6161

62-
- remark's handling of lists will sometimes add a child paragraph tag inside the
63-
`<li>` where it shouldn't exist - [Bug Ticket](https://github.com/wooorm/remark/issues/104)
64-
6562
- remark's handling of arbitrary HTML causes nodes to be split, which causes garbage and malformed HTML - [Bug Ticket](https://github.com/wooorm/remark/issues/124)
6663

6764
MIT

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "markdown-to-jsx",
33
"description": "Interprets markdown text and outputs a JSX equivalent.",
44
"license": "MIT",
5-
"version": "2.0.1",
5+
"version": "3.0.0",
66
"engines": {
77
"node": ">= 4"
88
},

0 commit comments

Comments
 (0)