diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c088f2..4587f29 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. -## [Unreleased] (date goes here) +## [6.1.0] (2019-10-25) + +### Added + +- deletion of cached versions from menu using 'd' ([#590]) ## [6.0.1] (2019-08-20) @@ -202,10 +206,12 @@ Only minor functional changes, but technically could break scripts relying on sp [#560]: https://github.com/tj/n/issues/560 [#562]: https://github.com/tj/n/issues/562 [#574]: https://github.com/tj/n/issues/574 +[#590]: https://github.com/tj/n/issues/590 [Unreleased]: https://github.com/tj/n/compare/master...develop +[6.1.0]: https://github.com/tj/n/compare/v6.0.1...v6.1.0 [6.0.1]: https://github.com/tj/n/compare/v6.0.0...v6.0.1 [6.0.0]: https://github.com/tj/n/compare/v5.0.2...v6.0.0 [5.0.2]: https://github.com/tj/n/compare/v5.0.1...v5.0.2 diff --git a/README.md b/README.md index c5aad6d..71dac6e 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ Execute `n` on its own to view your downloaded versions, and install the selecte ο node/8.11.3 node/10.15.0 - Use up/down arrow keys to select a version, return key to install, q to quit + Use up/down arrow keys to select a version, return key to install, d to delete, q to quit (You can also use `j` and `k` to navigate up or down without using arrows.) diff --git a/bin/n b/bin/n index fe6297f..62e58f6 100755 --- a/bin/n +++ b/bin/n @@ -40,7 +40,7 @@ function echo_red() { # Setup and state # -VERSION="6.0.2-0" +VERSION="6.1.0" N_PREFIX="${N_PREFIX-/usr/local}" N_PREFIX=${N_PREFIX%/}