diff --git a/CHANGELOG.md b/CHANGELOG.md index 300160b..06447c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,11 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 -## [Unreleased] (date goes here) +## [10.0.0] (2024-09-06) + +The major version bump is due to using `jq` in preference to `node` for reading `package.json`. ### Changed - if `jq` is available, use `jq` for reading `engines` from `package.json` instead of using `node` ([#810]) +- avoid a network lookup if auto or engine find a fully specified numeric version. ([#813]) ## [9.2.3] (2024-04-21) @@ -511,10 +514,12 @@ Only minor functional changes, but technically could break scripts relying on sp [#764]: https://github.com/tj/n/pull/764 [#785]: https://github.com/tj/n/pull/785 [#810]: https://github.com/tj/n/pull/810 +[#813]: https://github.com/tj/n/pull/813 [Unreleased]: https://github.com/tj/n/compare/master...develop +[10.0.0]: https://github.com/tj/n/compare/v9.2.3...v10.0.0 [9.2.3]: https://github.com/tj/n/compare/v9.2.2...v9.2.3 [9.2.2]: https://github.com/tj/n/compare/v9.2.1...v9.2.2 [9.2.1]: https://github.com/tj/n/compare/v9.2.0...v9.2.1 diff --git a/bin/n b/bin/n index 007f9b6..60ad050 100755 --- a/bin/n +++ b/bin/n @@ -61,7 +61,7 @@ function n_grep() { # Setup and state # -VERSION="v9.2.4-0" +VERSION="v10.0.0" N_PREFIX="${N_PREFIX-/usr/local}" N_PREFIX=${N_PREFIX%/}