From 3272a986402cd1c7e48aa3fd21623564939ca6c0 Mon Sep 17 00:00:00 2001 From: Gal Schlezinger Date: Tue, 16 Nov 2021 13:50:24 +0200 Subject: [PATCH] v1.28.0 --- CHANGELOG.md | 32 +++++++++++++++++++++++++++++++- Cargo.lock | 2 +- Cargo.toml | 2 +- docs/commands.md | 26 +++++++++++++------------- docs/fnm.svg | 2 +- 5 files changed, 47 insertions(+), 17 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c57427a..a1e8c19 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,34 @@ -## 1.27.0 (2021-09-16) +## 1.28.0 (2021-11-16) + +#### New Feature 🎉 + +- [#556](https://github.com/Schniz/fnm/pull/556) Allow aliasing to the system version ([@Schniz](https://github.com/Schniz)) +- [#547](https://github.com/Schniz/fnm/pull/547) Replace reqwest with ureq for less dependencies and smaller file size ([@dnaka91](https://github.com/dnaka91)) + +#### Bugfix 🐛 + +- [#573](https://github.com/Schniz/fnm/pull/573) Infer shell with `sysinfo` crate ([@Schniz](https://github.com/Schniz)) +- [#553](https://github.com/Schniz/fnm/pull/553) Fix Windows CMD `cd` failure on paths with spaces (`use-on-cd`) ([@Schniz](https://github.com/Schniz)) + +#### Internal 🛠 + +- [#554](https://github.com/Schniz/fnm/pull/554) Fix clippy & use musl target on Rust compiler for static compilation ([@dnaka91](https://github.com/dnaka91)) + +#### Documentation 📝 + +- [#545](https://github.com/Schniz/fnm/pull/545) docs(cli): Fix typo ([@SanchithHegde](https://github.com/SanchithHegde)) +- [#544](https://github.com/Schniz/fnm/pull/544) Replace error message with a more useful one ([@yonifra](https://github.com/yonifra)) +- [#537](https://github.com/Schniz/fnm/pull/537) Show log level options in help and error message ([@lucasweng](https://github.com/lucasweng)) + +#### Committers: 5 + +- Dominik Nakamura ([@dnaka91](https://github.com/dnaka91)) +- Gal Schlezinger ([@Schniz](https://github.com/Schniz)) +- Jonathan Fraimorice ([@yonifra](https://github.com/yonifra)) +- Lucas Weng ([@lucasweng](https://github.com/lucasweng)) +- Sanchith Hegde ([@SanchithHegde](https://github.com/SanchithHegde)) + +## v1.27.0 (2021-09-17) #### New Feature 🎉 diff --git a/Cargo.lock b/Cargo.lock index c376fa5..b334ae3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -450,7 +450,7 @@ dependencies = [ [[package]] name = "fnm" -version = "1.27.0" +version = "1.28.0" dependencies = [ "atty", "brotli-decompressor", diff --git a/Cargo.toml b/Cargo.toml index 389d99e..3f30f91 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fnm" -version = "1.27.0" +version = "1.28.0" authors = ["Gal Schlezinger "] edition = "2018" build = "build.rs" diff --git a/docs/commands.md b/docs/commands.md index 6adc961..92dddd5 100644 --- a/docs/commands.md +++ b/docs/commands.md @@ -1,7 +1,7 @@ # `fnm` ``` -fnm 1.27.0 +fnm 1.28.0 A fast and simple Node.js manager USAGE: @@ -48,7 +48,7 @@ SUBCOMMANDS: # `fnm alias` ``` -fnm-alias 1.27.0 +fnm-alias 1.28.0 Alias a version to a common name USAGE: @@ -78,7 +78,7 @@ ARGS: # `fnm completions` ``` -fnm-completions 1.27.0 +fnm-completions 1.28.0 Print shell completions to stdout USAGE: @@ -107,7 +107,7 @@ OPTIONS: # `fnm current` ``` -fnm-current 1.27.0 +fnm-current 1.28.0 Print the current Node.js version USAGE: @@ -133,7 +133,7 @@ OPTIONS: # `fnm default` ``` -fnm-default 1.27.0 +fnm-default 1.28.0 Set a version as the default version This is a shorthand for `fnm alias VERSION default` @@ -172,7 +172,7 @@ ARGS: # `fnm env` ``` -fnm-env 1.27.0 +fnm-env 1.28.0 Print and set up required environment variables for fnm This command generates a series of shell commands that should be evaluated by your shell to create a fnm-ready @@ -216,7 +216,7 @@ OPTIONS: # `fnm exec` ``` -fnm-exec 1.27.0 +fnm-exec 1.28.0 Run a command within fnm context Example: @@ -267,7 +267,7 @@ ARGS: # `fnm install` ``` -fnm-install 1.27.0 +fnm-install 1.28.0 Install a new Node.js version USAGE: @@ -297,7 +297,7 @@ ARGS: # `fnm list` ``` -fnm-list 1.27.0 +fnm-list 1.28.0 List all locally installed Node.js versions USAGE: @@ -323,7 +323,7 @@ OPTIONS: # `fnm list-remote` ``` -fnm-list-remote 1.27.0 +fnm-list-remote 1.28.0 List all remote Node.js versions USAGE: @@ -349,7 +349,7 @@ OPTIONS: # `fnm unalias` ``` -fnm-unalias 1.27.0 +fnm-unalias 1.28.0 Remove an alias definition USAGE: @@ -378,7 +378,7 @@ ARGS: # `fnm uninstall` ``` -fnm-uninstall 1.27.0 +fnm-uninstall 1.28.0 Uninstall a Node.js version > Warning: when providing an alias, it will remove the Node version the alias is pointing to, along with the other @@ -418,7 +418,7 @@ ARGS: # `fnm use` ``` -fnm-use 1.27.0 +fnm-use 1.28.0 Change Node.js version USAGE: diff --git a/docs/fnm.svg b/docs/fnm.svg index c0a334c..217b4df 100644 --- a/docs/fnm.svg +++ b/docs/fnm.svg @@ -1 +1 @@ -evaleval"$(fnmeval"$(fnmenv)"ffnfnmfnm--versionfnm1.27.0catcat.node-version14.17.6fnminstallInstallingNodev14.17.6(x64)fnmuseUsingNodev14.17.6nodenode-vv14.17.6eevevaeval"eval"$eval"$(eval"$(feval"$(fneval"$(fnmeeval"$(fnmeneval"$(fnmenveval"$(fnmenv)fnm--fnm--vfnm--vefnm--verfnm--versfnm--versioccacat.cat.ncat.nocat.nodcat.nodecat.node-cat.node-vcat.node-vecat.node-vercat.node-verscat.node-versicat.node-versiofnminfnminsfnminstfnminstafnminstalfnmufnmusnnonodnode- \ No newline at end of file +evaleval"$(fnmeval"$(fnmenv)"ffnfnmfnm--versionfnm1.28.0catcat.node-version16.13.0fnminstallInstallingNodev16.13.0(x64)fnmuseUsingNodev16.13.0node-vv16.13.0eevevaeval"eval"$eval"$(eval"$(feval"$(fneval"$(fnmeeval"$(fnmeneval"$(fnmenveval"$(fnmenv)fnm-fnm--fnm--vfnm--vefnm--verfnm--versfnm--versifnm--versioccacat.cat.ncat.nocat.nodcat.nodecat.node-vcat.node-vecat.node-vercat.node-verscat.node-versicat.node-versiofnminfnminsfnminstfnminstafnminstalfnmufnmusnnonodnodenode- \ No newline at end of file