diff --git a/CHANGES.md b/CHANGES.md index 7113be3..7e51d68 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,9 @@ # CHANGES for jsonpath-plus +## 0.20.1 (June 12, 2019) + +- npm: Avoid adding `core-js-bundle` as peerDep. (fixes #95) + ## 0.20.0 (June 4, 2019) - Build: Add `browserslist` for Babel builds diff --git a/README.md b/README.md index 1d9e6cc..94bf58b 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,11 @@ For browser usage you can directly include `dist/index-umd.js`; no Browserify magic is necessary: ```html - + + + + diff --git a/package.json b/package.json index b4f6cac..a97c5d7 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "author": "Stefan Goessner", "name": "jsonpath-plus", - "version": "0.20.0", + "version": "0.20.1", "main": "dist/index-umd.js", "module": "dist/index-es.js", "description": "A JS implementation of JSONPath with some additional operators", @@ -44,9 +44,6 @@ "react-native": { "vm": false }, - "peerDependencies": { - "core-js-bundle": "^3.1.3" - }, "dependencies": {}, "devDependencies": { "@babel/core": "^7.4.5",