We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6386f85 commit db5cf06Copy full SHA for db5cf06
UPGRADE_GUIDE.md
@@ -2,8 +2,23 @@ Upgrade Guide
2
=============
3
4
To see discussion around these API changes, please refer to the
5
-[changelog](/CHANGELOG.md) and git log the commits to find the issues
6
-they refer to.
+[changelog](/CHANGELOG.md) and visit the commits and issues they
+reference.
7
+
8
+0.6.x -> 0.7.x
9
+--------------
10
11
+The package root modules were removed. Please import modules from the
12
+`Router` default export.
13
14
+```js
15
+// 0.6.x
16
+var Link = require('react-router/Link');
17
18
+// 0.7.x
19
+var Router = require('react-router');
20
+var Link = Router.Link;
21
+```
22
23
0.5.x -> 0.6.x
24
--------------
0 commit comments