diff --git a/CHANGELOG.md b/CHANGELOG.md index e613bba..2083b99 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,13 @@ # main (unreleased) --[[feature]: refactor `depngn` internals to read files directly, instead of using `npm`/`yarn` commands](https://github.com/upgradejs/depngn/pull/39) --[[bugfix]: support Node versions 10-14](https://github.com/upgradejs/depngn/pull/35) +# 0.4.0 +- [[feature]: refactor `depngn` internals to read files directly, instead of using `npm`/`yarn` commands](https://github.com/upgradejs/depngn/pull/39) +- [[bugfix]: filter out `__ngcc_entry_points__.json` file](https://github.com/upgradejs/depngn/pull/38) +- [[bugfix]: remove whitespace from certain malformed version ranges](https://github.com/upgradejs/depngn/pull/37) +- [[bugfix]: support Node versions 10-14](https://github.com/upgradejs/depngn/pull/35) # 0.3.0 --[[feature]: add the ability to perform the check in the specified path using --cwd option](https://github.com/upgradejs/depngn/pull/30) +- [[feature]: add the ability to perform the check in the specified path using `--cwd` option](https://github.com/upgradejs/depngn/pull/30) # 0.2.0 - [[feature]: add links to the GitHub repo to be able to navigate from the npm package page](https://github.com/upgradejs/depngn/pull/27) diff --git a/package-lock.json b/package-lock.json index c61c26f..3d4c9ac 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "depngn", - "version": "0.3.0", + "version": "0.4.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "depngn", - "version": "0.3.0", + "version": "0.4.0", "license": "MIT", "dependencies": { "arg": "^5.0.2", diff --git a/package.json b/package.json index 84ebbf0..9c4c281 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "depngn", - "version": "0.3.0", + "version": "0.4.0", "description": "Determine the compatibility of your packages with a given Node version", "author": "Lewis D'Avanzo", "license": "MIT",