From 4f910e464e8eb3b320166462c48b0828007849e7 Mon Sep 17 00:00:00 2001 From: Gal Schlezinger Date: Fri, 17 Sep 2021 00:18:16 +0300 Subject: [PATCH] v1.27.0 --- CHANGELOG.md | 33 ++++++++++++++++++++++++++++++++- Cargo.lock | 2 +- Cargo.toml | 2 +- docs/commands.md | 26 +++++++++++++------------- docs/fnm.svg | 2 +- 5 files changed, 48 insertions(+), 17 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c7b77b6..c57427a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,35 @@ -## 1.26.0 (2021-07-15) +## 1.27.0 (2021-09-16) + +#### New Feature 🎉 + +- [#519](https://github.com/Schniz/fnm/pull/519) Windows: Use junctions rather than symlinks ([@davidaurelio](https://github.com/davidaurelio)) +- [#489](https://github.com/Schniz/fnm/pull/489) Add unalias command ([@AlexMunoz](https://github.com/AlexMunoz)) + +#### Bugfix 🐛 + +- [#528](https://github.com/Schniz/fnm/pull/528) installation script: Use `=` instead of `==` ([@develoot](https://github.com/develoot)) +- [#512](https://github.com/Schniz/fnm/pull/512) fix(dep): Revert "Include feature for (native) certificates #468" ([@itotallyrock](https://github.com/itotallyrock)) +- [#514](https://github.com/Schniz/fnm/pull/514) Invoke fnm use on startup for PowerShell ([@naoey](https://github.com/naoey)) + +#### Documentation 📝 + +- [#529](https://github.com/Schniz/fnm/pull/529) Add Chocolatey installation instructions ([@CMeeg](https://github.com/CMeeg)) +- [#496](https://github.com/Schniz/fnm/pull/496) install.sh: print an exit message for missing deps ([@waldyrious](https://github.com/waldyrious)) +- [#516](https://github.com/Schniz/fnm/pull/516) More informative log level error message ([@waldyrious](https://github.com/waldyrious)) +- [#493](https://github.com/Schniz/fnm/pull/493) Add instructions to setup the file for Cmder ([@Lunchb0ne](https://github.com/Lunchb0ne)) + +#### Committers: 8 + +- Abhishek Aryan ([@Lunchb0ne](https://github.com/Lunchb0ne)) +- Alex Munoz ([@AlexMunoz](https://github.com/AlexMunoz)) +- Chris Meagher ([@CMeeg](https://github.com/CMeeg)) +- David Aurelio ([@davidaurelio](https://github.com/davidaurelio)) +- Jeffrey Meyer ([@itotallyrock](https://github.com/itotallyrock)) +- Kitae Kim ([@develoot](https://github.com/develoot)) +- Waldir Pimenta ([@waldyrious](https://github.com/waldyrious)) +- [@naoey](https://github.com/naoey) + +## v1.26.0 (2021-07-15) #### Bugfix 🐛 diff --git a/Cargo.lock b/Cargo.lock index 8c3a22b..77b57cc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -444,7 +444,7 @@ dependencies = [ [[package]] name = "fnm" -version = "1.26.0" +version = "1.27.0" dependencies = [ "atty", "chrono", diff --git a/Cargo.toml b/Cargo.toml index 16a150a..db5fbff 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fnm" -version = "1.26.0" +version = "1.27.0" authors = ["Gal Schlezinger "] edition = "2018" build = "build.rs" diff --git a/docs/commands.md b/docs/commands.md index e6d7fa5..e9f1b3e 100644 --- a/docs/commands.md +++ b/docs/commands.md @@ -1,7 +1,7 @@ # `fnm` ``` -fnm 1.26.0 +fnm 1.27.0 A fast and simple Node.js manager USAGE: @@ -48,7 +48,7 @@ SUBCOMMANDS: # `fnm alias` ``` -fnm-alias 1.26.0 +fnm-alias 1.27.0 Alias a version to a common name USAGE: @@ -76,7 +76,7 @@ ARGS: # `fnm completions` ``` -fnm-completions 1.26.0 +fnm-completions 1.27.0 Print shell completions to stdout USAGE: @@ -103,7 +103,7 @@ OPTIONS: # `fnm current` ``` -fnm-current 1.26.0 +fnm-current 1.27.0 Print the current Node.js version USAGE: @@ -127,7 +127,7 @@ OPTIONS: # `fnm default` ``` -fnm-default 1.26.0 +fnm-default 1.27.0 Set a version as the default version This is a shorthand for `fnm alias VERSION default` @@ -166,7 +166,7 @@ ARGS: # `fnm env` ``` -fnm-env 1.26.0 +fnm-env 1.27.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 @@ -210,7 +210,7 @@ OPTIONS: # `fnm exec` ``` -fnm-exec 1.26.0 +fnm-exec 1.27.0 Run a command within fnm context Example: @@ -261,7 +261,7 @@ ARGS: # `fnm install` ``` -fnm-install 1.26.0 +fnm-install 1.27.0 Install a new Node.js version USAGE: @@ -289,7 +289,7 @@ ARGS: # `fnm list` ``` -fnm-list 1.26.0 +fnm-list 1.27.0 List all locally installed Node.js versions USAGE: @@ -313,7 +313,7 @@ OPTIONS: # `fnm list-remote` ``` -fnm-list-remote 1.26.0 +fnm-list-remote 1.27.0 List all remote Node.js versions USAGE: @@ -337,7 +337,7 @@ OPTIONS: # `fnm unalias` ``` -fnm-unalias 1.26.0 +fnm-unalias 1.27.0 Remove an alias definiton USAGE: @@ -364,7 +364,7 @@ ARGS: # `fnm uninstall` ``` -fnm-uninstall 1.26.0 +fnm-uninstall 1.27.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 @@ -404,7 +404,7 @@ ARGS: # `fnm use` ``` -fnm-use 1.26.0 +fnm-use 1.27.0 Change Node.js version USAGE: diff --git a/docs/fnm.svg b/docs/fnm.svg index 3b4fd4e..c0a334c 100644 --- a/docs/fnm.svg +++ b/docs/fnm.svg @@ -1 +1 @@ -evaleval"$(fnmeval"$(fnmenv)"ffnfnmfnm--versionfnm1.26.0catcat.node-version14.17.3fnminstallInstallingNodev14.17.3(x64)fnmuseUsingNodev14.17.3nodenode-vv14.17.3eevevaeval"eval"$eval"$(eval"$(feval"$(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-versiofnmifnminfnminsfnminstfnminstafnminstalfnmufnmusnnonodnode- \ No newline at end of file +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