Skip to content

Commit 96c8851

Browse files
committed
Release v1.4.12
- Update to react/react-dom v15.0.1, react-router v2.1.1 and react-timago v3 beta
1 parent 58d8349 commit 96c8851

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# [react-hn](http://insin.github.io/react-hn)
1+
# [react-hn](https://insin.github.io/react-hn)
22

33
A [React](http://facebook.github.io/react) &
44
[react-router](https://github.com/rackt/react-router)-powered implementation of
55
[Hacker News](https://news.ycombinator.com) using its
66
[Firebase API](https://github.com/HackerNews/API).
77

8-
[![react-hn screenshot](https://github.com/insin/react-hn/raw/master/screenshot.png "New comment highlighting in react-hn")](http://insin.github.io/react-hn)
8+
[![react-hn screenshot](https://github.com/insin/react-hn/raw/master/screenshot.png "New comment highlighting in react-hn")](https://insin.github.io/react-hn)
99

1010
Live version: http://insin.github.io/react-hn
1111

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-hn",
3-
"version": "1.4.11",
3+
"version": "1.4.12",
44
"description": "React-powered frontend for Hacker News using its Firebase API",
55
"author": "Jonny Buchanan",
66
"license": "MIT",
@@ -19,10 +19,10 @@
1919
"events": "1.1.0",
2020
"firebase": "2.4.2",
2121
"history": "2.0.1",
22-
"react": "15.0.0",
23-
"react-dom": "15.0.0",
24-
"react-router": "2.0.1",
25-
"react-timeago": "2.2.1",
22+
"react": "15.0.1",
23+
"react-dom": "15.0.1",
24+
"react-router": "2.1.1",
25+
"react-timeago": "3.0.0-beta.3",
2626
"reactfire": "0.6.0",
2727
"scroll-behavior": "0.3.4",
2828
"setimmediate": "1.0.4"

src/Item.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
var React = require('react')
22
var ReactFireMixin = require('reactfire')
3-
var TimeAgo = require('react-timeago')
3+
var TimeAgo = require('react-timeago').default
44

55
var HNService = require('./services/HNService')
66
var StoryCommentThreadStore = require('./stores/StoryCommentThreadStore')

src/UserProfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
var React = require('react')
22
var ReactFireMixin = require('reactfire')
3-
var TimeAgo = require('react-timeago')
3+
var TimeAgo = require('react-timeago').default
44

55
var HNService = require('./services/HNService')
66

src/mixins/CommentMixin.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
var React = require('react')
22
var Link = require('react-router/lib/Link')
3-
var TimeAgo = require('react-timeago')
3+
var TimeAgo = require('react-timeago').default
44

55
var ItemStore = require('../stores/ItemStore')
66
var SettingsStore = require('../stores/SettingsStore')

src/mixins/ItemMixin.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
var React = require('react')
22
var Link = require('react-router/lib/Link')
3-
var TimeAgo = require('react-timeago')
3+
var TimeAgo = require('react-timeago').default
44

55
var SettingsStore = require('../stores/SettingsStore')
66
var pluralise = require('../utils/pluralise')

0 commit comments

Comments
 (0)