diff --git a/CHANGELOG.md b/CHANGELOG.md index 9dd1935..98cde18 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# 1.5.1 - 2016-08-06 + +- Fixed: Do not fail when browserslist gives a browser that caniuse-api doesn't + know about + ([#45](https://github.com/Nyalab/caniuse-api/pull/45) - @onigoetz) + # 1.5.0 - 2016-06-01 - Added: JSPM support with explicit file extensions ([#40](https://github.com/Nyalab/caniuse-api/issues/40)) diff --git a/package.json b/package.json index 1f2b3d9..218aec1 100644 --- a/package.json +++ b/package.json @@ -1,11 +1,8 @@ { "name": "caniuse-api", - "version": "1.5.0", + "version": "1.5.1", "description": "request the caniuse data to check browsers compatibilities", - "repository": { - "type": "git", - "url": "https://github.com/nyalab/caniuse-api.git" - }, + "repository": "https://github.com/nyalab/caniuse-api.git", "keywords": [ "caniuse", "browserslist" @@ -31,6 +28,7 @@ "babel": "^4.7.16", "babel-tape-runner": "^1.3.1", "jshint": "^2.5.10", + "npmpub": "^3.1.0", "tap-spec": "^4.1.1", "tape": "^4.5.1" }, @@ -40,6 +38,7 @@ "prepublish": "npm run build", "pretest": "babel-node src/generate-features.js", "test": "npm run lint && babel-tape-runner test/*.js | tap-spec", - "postinstall": "node generator.js" + "postinstall": "node generator.js", + "release": "npmpub" } }