From b7152868fb29791dc833f3f22c1c36ab95b46e33 Mon Sep 17 00:00:00 2001 From: Jason Sommer Date: Wed, 9 Nov 2016 20:41:11 -0600 Subject: [PATCH] 5.0.4 --- CHANGELOG.md | 4 ++++ package.json | 16 ++++++++-------- 2 files changed, 12 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f28c7d0..c7effe0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## [5.0.4] - 2016-11-09 +### Changes +- Use `ladda` as a dependency instead of a peerDependency + ## [5.0.1] - 2016-09-22 ### Changed - Support `react@15.x.x` diff --git a/package.json b/package.json index 4dba322..3e6123b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-ladda", - "version": "5.0.3", + "version": "5.0.4", "description": "React wrapper for Ladda buttons", "main": "dist/index.js", "scripts": { @@ -25,6 +25,9 @@ "url": "https://github.com/jsdir/react-ladda/issues" }, "homepage": "https://github.com/jsdir/react-ladda#readme", + "dependencies": { + "ladda": "^1.0.0" + }, "devDependencies": { "babel-cli": "^6.14.0", "babel-eslint": "^6.1.2", @@ -43,18 +46,15 @@ "eslint-plugin-jsx-a11y": "^2.2.2", "eslint-plugin-react": "^6.3.0", "jsdom": "^8.0.1", - "ladda": "^1.0.0", "mocha": "^2.4.5", "react-addons-test-utils": "^15.3.1", "sinon": "^1.17.5", - "sinon-chai": "^2.8.0" - }, - "peerDependencies": { + "sinon-chai": "^2.8.0", "react": "^0.14.0 || ^15.0.0", - "ladda": "^1.0.0" + "react-dom": "^0.14.0 || ^15.0.0" }, - "dependencies": { + "peerDependencies": { "react": "^0.14.0 || ^15.0.0", - "react-dom": "^0.14.8 || ^15.0.0" + "react-dom": "^0.14.0 || ^15.0.0" } }