From d183d7c66569e20892b33b23641c0ed35bb74bb3 Mon Sep 17 00:00:00 2001 From: Evan Jacobs Date: Tue, 28 Jun 2016 00:49:13 -0400 Subject: [PATCH] 3.0.0 See CHANGELOG --- CHANGELOG.md | 30 ++++++++++++++++++++++++++++++ README.md | 3 --- package.json | 2 +- 3 files changed, 31 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b21705e..0a89f261 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,33 @@ +### 3.0.0 (June 28, 2016) + +- __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. + +- __Automatically remove the root `
` wrapper for singular children__ (e5b1453) The root `
` 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. + +- __Fix a test made brittle by the React `` -> comment change__ (841c56e) +- __Automatically test all supported major React versions__ (517ea64) +- __chore(package): update babel-preset-react to version 6.11.1__ (b4363ee) +- __chore(package): update babel-preset-stage-2 to version 6.11.0__ (0adac9a) +- __chore(package): update jest-cli to version 13.0.0__ (36f7a71) +- __chore(package): update babel-jest to version 13.0.0__ (859a31c) +- __chore(package): update remark to version 4.2.2__ (d70df94) +- __chore(package): update babel-cli to version 6.10.1__ (e8e4920) +- __chore(package): update babel-jest to version 12.1.0__ (92be820) +- __chore(package): update jest-cli to version 12.1.1__ (c65ebbd) +- __Update package.json__ (84c7f80) +- __chore(package): update react-dom to version 15.1.0__ (ce6b53e) +- __chore(package): update babel-preset-es2015 to version 6.9.0__ (a9b34c9) +- __chore(package): update babel-cli to version 6.9.0__ (b1606ec) +- __More rigorous CI testing__ (ffd8209) Enforce an engine version >= node 0.12 +- __chore(package): update react to version 15.0.2__ (07785e4) +- __chore(package): update babel-cli to version 6.8.0__ (85e0aa5) +- __chore(package): update react-dom to version 15.0.1__ (9e4bfc7) +- __chore(package): update react to version 15.0.1__ (f0569a2) +- __2.0.1__ (7b9d495) Updated internals, no user-facing changes. Now testing against React 15.x +- __Update dev deps & fix test for React v15__ (b9c56ca) + +--- + ### 2.0.1 (April 28, 2016) - Update dev deps & fix test for React v15 (b9c56caf5d4bb4c5de6d7228e2886b55e30ff63a) diff --git a/README.md b/README.md index 7270d9bb..4e208cc9 100644 --- a/README.md +++ b/README.md @@ -59,9 +59,6 @@ Any conflicts between passed `props` and the specific properties above will be r ## Known Issues -- remark's handling of lists will sometimes add a child paragraph tag inside the - `
  • ` where it shouldn't exist - [Bug Ticket](https://github.com/wooorm/remark/issues/104) - - 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) MIT diff --git a/package.json b/package.json index fec2cf02..3d36bb9d 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "markdown-to-jsx", "description": "Interprets markdown text and outputs a JSX equivalent.", "license": "MIT", - "version": "2.0.1", + "version": "3.0.0", "engines": { "node": ">= 4" },