Skip to content

Commit

Permalink
5.0.0
Browse files Browse the repository at this point in the history
See CHANGELOG
  • Loading branch information
Evan Jacobs committed Jan 12, 2017
1 parent a31f506 commit db0d2fd
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 1 deletion.
33 changes: 33 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,36 @@
### 5.0.0 (January 12, 2017)

See the README for updated usage instructions, here's a quick preview:

```jsx
import Markdown from 'markdown-to-jsx';
import React from 'react';
import {render} from 'react-dom';

render((
<Markdown>
# Hello world!
</Markdown>
), document.body);

/*
renders:
<h1>Hello world!</h1>
*/
```

38efb41 [Breaking Change] Default export is now a React HOC
573021c Update Jest
bf31694 chore(package): update autoprefixer-stylus to version 0.13.0
aef6471 chore(package): update jest-cli to version 17.0.0
b1088c0 chore(package): update babel-jest to version 17.0.0
8c0b7a5 chore(package): update autoprefixer-stylus to version 0.11.0
883d728 chore(package): update jest-cli to version 16.0.0
a504cc2 chore(package): update babel-jest to version 16.0.0

---

### 4.0.3 (September 29, 2016)

First release of 4.x :tada:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Interprets markdown text and outputs a JSX equivalent.",
"homepage": "http://yaycmyk.com/markdown-to-jsx/",
"license": "MIT",
"version": "4.0.3",
"version": "5.0.0",
"engines": {
"node": ">= 4"
},
Expand Down

0 comments on commit db0d2fd

Please sign in to comment.