diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 47fb725..d4f6f29 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "2.0.2" + ".": "3.0.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 991bf8a..ee47966 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## [3.0.0](https://github.com/npm/node-which/compare/v2.0.2...v3.0.0) (2022-11-01) + +### ⚠️ BREAKING CHANGES + +* refactored with the following breaking changes + - callback has been removed from the async interface, it is now + `Promise` only + - `which` is now compatible with the following semver range for node: + `^14.17.0 || ^16.13.0 || >=18.0.0 + - cli now ignores any arguments after `--` + +### Features + +* [`8b0187c`](https://github.com/npm/node-which/commit/8b0187ceab57b0814ad6a77a5706319ffa5bf103) add @npmcli/template-oss and modernize (#86) (@lukekarrys) + ## 2.0.2 * Rename bin to `node-which` diff --git a/package.json b/package.json index 92d44b2..bde1563 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "author": "GitHub Inc.", "name": "which", "description": "Like which(1) unix command. Find the first instance of an executable in the PATH.", - "version": "2.0.2", + "version": "3.0.0", "repository": { "type": "git", "url": "https://github.com/npm/node-which.git"