Skip to content

Commit

Permalink
bump editor version
Browse files Browse the repository at this point in the history
  • Loading branch information
nikgraf committed Mar 26, 2016
1 parent 7c4b899 commit 7f3c285
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## To Be Released
## Checkout the CHANGELOG.md of each package …
5 changes: 5 additions & 0 deletions draft-js-plugins-editor/.npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ node_modules

# sources
/src/
webpack.config.js
.babelrc
.gitignore
README.md
CHANGELOG.md

# NPM debug
npm-debug.log
20 changes: 20 additions & 0 deletions draft-js-plugins-editor/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Change Log

All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## To Be Released

## 0.2.0 - 2016-03-25

### Changed

- Move DraftJS & ImmutableJS to peerDependencies instead of dependencies.

## 0.1.0 - 2016-03-25

### Added
- Allow to provide a custom handleKeyCommand to the Editor.

## 0.0.0 - 2016-03-23
### Released the first working of DraftJS Plugins Editor
10 changes: 5 additions & 5 deletions draft-js-plugins-editor/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "draft-js-plugins-editor",
"version": "0.0.0",
"version": "0.2.0",
"description": "Editor for DraftJS Plugins",
"author": {
"name": "Nik Graf",
Expand All @@ -23,8 +23,10 @@
"react-component"
],
"peerDependencies": {
"react": ">=0.14.0 || 15.0.0-rc.2",
"react-dom": ">=0.14.0 || 15.0.0-rc.2"
"draft-js": ">=0.3.0",
"immutable": ">=3.7.6",
"react": ">=0.14.0 || 15.0.0-rc",
"react-dom": ">=0.14.0 || 15.0.0-rc"
},
"scripts": {
"build": "BABEL_ENV=production ../node_modules/.bin/babel --out-dir='lib' --ignore='__tests__/*' src",
Expand All @@ -33,9 +35,7 @@
"license": "MIT",
"dependencies": {
"decorate-component-with-props": "^1.0.2",
"draft-js": "^0.3.0",
"find-with-regex": "^1.0.2",
"immutable": "^3.7.6",
"union-class-names": "^1.0.0"
}
}

0 comments on commit 7f3c285

Please sign in to comment.