Skip to content

Commit

Permalink
Merge branch 'release/0.2.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
igorprado committed Oct 12, 2015
2 parents 2aba9cb + e75c23f commit faf6854
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 17 deletions.
20 changes: 13 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
# CHANGELOG

## 0.2.4 - Oct 12, 2015

**Implemented enhancements:**

* Added React and ReactDOM as peerDependencies and devDependencies to help on component development.

## 0.2.3 - Oct 11, 2015

**Implemented enhancements:**

* Possibility to remove notification by uid.
* Added onAdd property to notification object.
* Improved styles
* Improved styles.

## 0.2.2 - Oct 10, 2015

Expand All @@ -18,8 +24,8 @@

**Implemented enhancements:**

* Improved function to get specific style based on element
* Improved notification styles
* Improved function to get specific style based on element.
* Improved notification styles.
* Added ESLint and linted all src files.

## 0.2.0 - Oct 9, 2015
Expand All @@ -32,12 +38,12 @@

**Implemented enhancements, merged pull requrests:**

* Fix dismissible false to not require an action
* Added CHANGELOG and LICENSE files
* Fix dismissible false to not require an action.
* Added CHANGELOG and LICENSE files.

## 0.1.15 - Oct 1, 2015

**Implemented enhancements:**

* `addNotification()` method now returns the notification object
* Added method `removeNotification()` to remove a notification programmatically based on returned notification object
* `addNotification()` method now returns the notification object.
* Added method `removeNotification()` to remove a notification programmatically based on returned notification object.
15 changes: 8 additions & 7 deletions example/build/app.js

Large diffs are not rendered by default.

3 changes: 1 addition & 2 deletions example/src/app.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
var React = require('react');
var ReactDOM = require('react-dom');

var NotificationSystem = require('react-notification-system');
var NotificationSystem = require('../../dist/notification-system.js');

var NotificationSystemExample = React.createClass({

Expand Down
8 changes: 7 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-notification-system",
"version": "0.2.3",
"version": "0.2.4",
"description": "A React Notification System fully customized",
"main": "dist/notification-system.js",
"scripts": {
Expand Down Expand Up @@ -31,10 +31,16 @@
"dependencies": {
"object-assign": "^4.0.1"
},
"peerDependencies": {
"react": "^0.14.0",
"react-dom": "^0.14.0"
},
"devDependencies": {
"eslint": "^1.6.0",
"eslint-config-airbnb": "^0.1.0",
"eslint-plugin-react": "^3.5.1",
"react": "^0.14.0",
"react-dom": "^0.14.0",
"react-tools": "^0.13.2",
"watch": "^0.16.0"
}
Expand Down

0 comments on commit faf6854

Please sign in to comment.