Skip to content

Commit

Permalink
Release v1.4.12
Browse files Browse the repository at this point in the history
- Update to react/react-dom v15.0.1, react-router v2.1.1 and react-timago v3 beta
  • Loading branch information
insin committed Apr 13, 2016
1 parent 58d8349 commit 96c8851
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# [react-hn](http://insin.github.io/react-hn)
# [react-hn](https://insin.github.io/react-hn)

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

[![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)
[![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)

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

Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-hn",
"version": "1.4.11",
"version": "1.4.12",
"description": "React-powered frontend for Hacker News using its Firebase API",
"author": "Jonny Buchanan",
"license": "MIT",
Expand All @@ -19,10 +19,10 @@
"events": "1.1.0",
"firebase": "2.4.2",
"history": "2.0.1",
"react": "15.0.0",
"react-dom": "15.0.0",
"react-router": "2.0.1",
"react-timeago": "2.2.1",
"react": "15.0.1",
"react-dom": "15.0.1",
"react-router": "2.1.1",
"react-timeago": "3.0.0-beta.3",
"reactfire": "0.6.0",
"scroll-behavior": "0.3.4",
"setimmediate": "1.0.4"
Expand Down
2 changes: 1 addition & 1 deletion src/Item.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
var React = require('react')
var ReactFireMixin = require('reactfire')
var TimeAgo = require('react-timeago')
var TimeAgo = require('react-timeago').default

var HNService = require('./services/HNService')
var StoryCommentThreadStore = require('./stores/StoryCommentThreadStore')
Expand Down
2 changes: 1 addition & 1 deletion src/UserProfile.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
var React = require('react')
var ReactFireMixin = require('reactfire')
var TimeAgo = require('react-timeago')
var TimeAgo = require('react-timeago').default

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

Expand Down
2 changes: 1 addition & 1 deletion src/mixins/CommentMixin.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
var React = require('react')
var Link = require('react-router/lib/Link')
var TimeAgo = require('react-timeago')
var TimeAgo = require('react-timeago').default

var ItemStore = require('../stores/ItemStore')
var SettingsStore = require('../stores/SettingsStore')
Expand Down
2 changes: 1 addition & 1 deletion src/mixins/ItemMixin.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
var React = require('react')
var Link = require('react-router/lib/Link')
var TimeAgo = require('react-timeago')
var TimeAgo = require('react-timeago').default

var SettingsStore = require('../stores/SettingsStore')
var pluralise = require('../utils/pluralise')
Expand Down

0 comments on commit 96c8851

Please sign in to comment.