From 894bb03b230336490d20e38cf1f44e9d4d4b78cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20O=E2=80=99Shannessy?= Date: Wed, 17 Jul 2013 10:01:16 -0700 Subject: [PATCH] Add CHANGELOG at the root, remove from downloads page --- CHANGELOG.md | 38 ++++++++++++++++++++++++++++++++++++++ docs/downloads.md | 13 ------------- 2 files changed, 38 insertions(+), 13 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000000..43990763a5 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,38 @@ +## 0.3.3 (June 20, 2013) + +### react-tools + +* Upgrade Commoner so `require` statements are no longer relativized when passing through the transformer. This was a feature needed when building React, but doesn't translate well for other consumers of `bin/jsx`. +* Upgraded our dependencies on Commoner and Recast so they use a different directory for their cache. +* Freeze our esprima dependency. + +### React + +* Allow reusing the same DOM node to render different components. e.g. `React.renderComponent(
, domNode); React.renderComponent(, domNode);` will work now. + +### JSX + +* Improved the in-browser transformer so that transformed scripts will execute in the expected scope. The allows components to be defined and used from separate files. + + +## 0.3.2 (May 31, 2013) + +### react-tools + +* Switch from using the browserified build to shipping individual modules. This allows react-tools to be used with [browserify](https://github.com/substack/node-browserify). + +### JSX + +* Improved compatability with other coding styles (specifically, multiple assignments with a single `var`). + + +## 0.3.1 (May 30, 2013) + +### react-tools + +* Fix bug in packaging resulting in broken module. + + +## 0.3.0 (May 29, 2013) + +* Initial public release diff --git a/docs/downloads.md b/docs/downloads.md index 2b2a9ad556..36430c39b8 100644 --- a/docs/downloads.md +++ b/docs/downloads.md @@ -47,16 +47,3 @@ $ bower install --save react $ npm install -g react-tools ``` -## Release Notes - -**0.3.3** Upgrade `react-tools` dependencies, improve in-browser JSX transformer, make `React.renderComponent` more versatile. [Details...](blog/2013/06/20/react-v0-3-3.html) - -**0.3.2** Improve compatibility of JSX Transformer; make `react-tools` compatible with [browserify](https://github.com/substack/node-browserify) - -**0.3.1** Fix `react-tools` module - -**0.3** Initial public release. - -**0.2** Standardize API & refactor component lifecycle. Normalize DOM interactions. - -**0.1** Initial release.