Skip to content

Commit faf6854

Browse files
committed
Merge branch 'release/0.2.4'
2 parents 2aba9cb + e75c23f commit faf6854

File tree

4 files changed

+29
-17
lines changed

4 files changed

+29
-17
lines changed

CHANGELOG.md

+13-7
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,18 @@
11
# CHANGELOG
22

3+
## 0.2.4 - Oct 12, 2015
4+
5+
**Implemented enhancements:**
6+
7+
* Added React and ReactDOM as peerDependencies and devDependencies to help on component development.
8+
39
## 0.2.3 - Oct 11, 2015
410

511
**Implemented enhancements:**
612

713
* Possibility to remove notification by uid.
814
* Added onAdd property to notification object.
9-
* Improved styles
15+
* Improved styles.
1016

1117
## 0.2.2 - Oct 10, 2015
1218

@@ -18,8 +24,8 @@
1824

1925
**Implemented enhancements:**
2026

21-
* Improved function to get specific style based on element
22-
* Improved notification styles
27+
* Improved function to get specific style based on element.
28+
* Improved notification styles.
2329
* Added ESLint and linted all src files.
2430

2531
## 0.2.0 - Oct 9, 2015
@@ -32,12 +38,12 @@
3238

3339
**Implemented enhancements, merged pull requrests:**
3440

35-
* Fix dismissible false to not require an action
36-
* Added CHANGELOG and LICENSE files
41+
* Fix dismissible false to not require an action.
42+
* Added CHANGELOG and LICENSE files.
3743

3844
## 0.1.15 - Oct 1, 2015
3945

4046
**Implemented enhancements:**
4147

42-
* `addNotification()` method now returns the notification object
43-
* Added method `removeNotification()` to remove a notification programmatically based on returned notification object
48+
* `addNotification()` method now returns the notification object.
49+
* Added method `removeNotification()` to remove a notification programmatically based on returned notification object.

example/build/app.js

+8-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

example/src/app.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
var React = require('react');
22
var ReactDOM = require('react-dom');
3-
4-
var NotificationSystem = require('react-notification-system');
3+
var NotificationSystem = require('../../dist/notification-system.js');
54

65
var NotificationSystemExample = React.createClass({
76

package.json

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-notification-system",
3-
"version": "0.2.3",
3+
"version": "0.2.4",
44
"description": "A React Notification System fully customized",
55
"main": "dist/notification-system.js",
66
"scripts": {
@@ -31,10 +31,16 @@
3131
"dependencies": {
3232
"object-assign": "^4.0.1"
3333
},
34+
"peerDependencies": {
35+
"react": "^0.14.0",
36+
"react-dom": "^0.14.0"
37+
},
3438
"devDependencies": {
3539
"eslint": "^1.6.0",
3640
"eslint-config-airbnb": "^0.1.0",
3741
"eslint-plugin-react": "^3.5.1",
42+
"react": "^0.14.0",
43+
"react-dom": "^0.14.0",
3844
"react-tools": "^0.13.2",
3945
"watch": "^0.16.0"
4046
}

0 commit comments

Comments
 (0)