Skip to content
This repository was archived by the owner on Oct 26, 2018. It is now read-only.

Commit 146e455

Browse files
committed
Update some URLs.
1 parent 817e19a commit 146e455

File tree

3 files changed

+11
-14
lines changed

3 files changed

+11
-14
lines changed

CHANGELOG.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11

2-
## [2.0.3](https://github.com/jlongster/redux-simple-router/compare/2.0.2...2.0.3)
3-
2+
## [2.0.3](https://github.com/rackt/redux-simple-router/compare/2.0.2...2.0.3)
3+
44
This version is just 2.0.2 re-published with a more recent version of npm to fix an issue where the `history` module was being published with the tarball. See [#133](https://github.com/rackt/redux-simple-router/issues/133).
55

6-
## [2.0.2](https://github.com/jlongster/redux-simple-router/compare/1.0.2...2.0.2)
6+
## [2.0.2](https://github.com/rackt/redux-simple-router/compare/1.0.2...2.0.2)
77

88
Versions 2.0.0 and 2.0.1 were test releases for the 2.* series. 2.0.2 is the first public release.
99

@@ -17,16 +17,16 @@ Versions 2.0.0 and 2.0.1 were test releases for the 2.* series. 2.0.2 is the fir
1717

1818
[View the new docs](https://github.com/rackt/redux-simple-router#api)
1919

20-
## [1.0.2](https://github.com/jlongster/redux-simple-router/compare/1.0.1...1.0.2)
20+
## [1.0.2](https://github.com/rackt/redux-simple-router/compare/1.0.1...1.0.2)
2121

2222
* Only publish relevant files to npm
2323

24-
## [1.0.1](https://github.com/jlongster/redux-simple-router/compare/1.0.0...1.0.1)
24+
## [1.0.1](https://github.com/rackt/redux-simple-router/compare/1.0.0...1.0.1)
2525

2626
* Solve problem with `basename` causing infinite redirects (#103)
2727
* Switched to ES6 imports/exports internally, but should not affect outside users
2828

29-
## [1.0.0](https://github.com/jlongster/redux-simple-router/compare/0.0.10...1.0.0)
29+
## [1.0.0](https://github.com/rackt/redux-simple-router/compare/0.0.10...1.0.0)
3030
> 2015-12-09
3131
3232
This release changes quite a bit so you'll have to update your code.

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ npm install redux-simple-router
1616

1717
If you want to install the next major version, use `redux-simple-router@next`. Run `npm dist-tag ls redux-simple-router` to see what `next` is aliased to.
1818

19-
View the [CHANGELOG](https://github.com/jlongster/redux-simple-router/blob/master/CHANGELOG.md) for recent changes.
19+
View the [CHANGELOG](https://github.com/rackt/redux-simple-router/blob/master/CHANGELOG.md) for recent changes.
2020

2121
Read the [API docs](#api) farther down this page.
2222

2323
##### _What about redux-router?_
2424

25-
[redux-router](https://github.com/rackt/redux-router) is another project which solves the same problem. However, it's far more complex. Take a quick look at [the code for this library](https://github.com/jlongster/redux-simple-router/blob/master/src/index.js)—it's extremely minimal. redux-router is much bigger and more complex.
25+
[redux-router](https://github.com/rackt/redux-router) is another project which solves the same problem. However, it's far more complex. Take a quick look at [the code for this library](https://github.com/rackt/redux-simple-router/blob/master/src/index.js)—it's extremely minimal. redux-router is much bigger and more complex.
2626

2727
That said, redux-router is a fine project and has features this doesn't provide. Use it if you like it better.
2828

@@ -36,7 +36,7 @@ That said, redux-router is a fine project and has features this doesn't provide.
3636

3737
The idea of this library is to use react-router's functionality exactly like its documentation tells you to. You can access all of its APIs in routing components. Additionally, you can use redux like you normally would, with a single app state.
3838

39-
[redux](https://github.com/rackt/redux) (`store.routing`)  ↔  [**redux-simple-router**](https://github.com/jlongster/redux-simple-router)  ↔  [history](https://github.com/rackt/history) (`history.location`)  ↔  [react-router](https://github.com/rackt/react-router)
39+
[redux](https://github.com/rackt/redux) (`store.routing`)  ↔  [**redux-simple-router**](https://github.com/rackt/redux-simple-router)  ↔  [history](https://github.com/rackt/history) (`history.location`)  ↔  [react-router](https://github.com/rackt/react-router)
4040

4141
We only store current URL and state, whereas redux-router stores the entire location object from react-router. You can read it, and also change it with an action.
4242

@@ -104,7 +104,7 @@ function update(state, action) {
104104

105105
### Examples
106106

107-
* [examples/basic](https://github.com/jlongster/redux-simple-router/blob/master/examples/basic) - basic reference implementation
107+
* [examples/basic](https://github.com/rackt/redux-simple-router/blob/master/examples/basic) - basic reference implementation
108108

109109
Examples from the community:
110110

package.json

+1-4
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,7 @@
99
"lib",
1010
"src"
1111
],
12-
"repository": {
13-
"type": "git",
14-
"url": "https://github.com/jlongster/redux-simple-router.git"
15-
},
12+
"repository": "rackt/redux-simple-router",
1613
"authors": [
1714
"James Long"
1815
],

0 commit comments

Comments
 (0)