Browse Source

v1.25.0

remotes/origin/add-with-shims v1.25.0
Gal Schlezinger 4 years ago
parent
commit
a810248e48
No known key found for this signature in database
GPG Key ID: 48841F4E54E9772D
  1. 25
      CHANGELOG.md
  2. 2
      Cargo.lock
  3. 2
      Cargo.toml
  4. 24
      docs/commands.md
  5. 2
      docs/fnm.svg

25
CHANGELOG.md

@ -1,4 +1,19 @@
## 1.24.0 (2021-04-02) ## 1.25.0 (2021-05-17)
#### New Feature 🎉
- [#436](https://github.com/Schniz/fnm/pull/436) feat: use arm for aarch64-darwin-node@16 platforms ([@pckilgore](https://github.com/pckilgore))
#### Documentation 📝
- [#432](https://github.com/Schniz/fnm/pull/432) Auto-generate command documentation markdown ([@Schniz](https://github.com/Schniz))
#### Committers: 2
- Gal Schlezinger ([@Schniz](https://github.com/Schniz))
- Patrick Kilgore ([@pckilgore](https://github.com/pckilgore))
## v1.24.0 (2021-04-02)
#### New Feature 🎉 #### New Feature 🎉
@ -61,7 +76,7 @@
#### Documentation 📝 #### Documentation 📝
- [#397](https://github.com/Schniz/fnm/pull/397) Fix minor typos ([@keirog](https://github.com/keirog)) - [#397](https://github.com/Schniz/fnm/pull/397) Fix minor typos ([@leafrogers](https://github.com/leafrogers))
- [#385](https://github.com/Schniz/fnm/pull/385) README: add symlink support on Windows ([@scadu](https://github.com/scadu)) - [#385](https://github.com/Schniz/fnm/pull/385) README: add symlink support on Windows ([@scadu](https://github.com/scadu))
- [#377](https://github.com/Schniz/fnm/pull/377) Improvements to the README ([@waldyrious](https://github.com/waldyrious)) - [#377](https://github.com/Schniz/fnm/pull/377) Improvements to the README ([@waldyrious](https://github.com/waldyrious))
@ -69,7 +84,7 @@
- Gal Schlezinger ([@Schniz](https://github.com/Schniz)) - Gal Schlezinger ([@Schniz](https://github.com/Schniz))
- Kaio Duarte ([@kaioduarte](https://github.com/kaioduarte)) - Kaio Duarte ([@kaioduarte](https://github.com/kaioduarte))
- Leaf Rogers ([@keirog](https://github.com/keirog)) - Leaf Rogers ([@leafrogers](https://github.com/leafrogers))
- Waldir Pimenta ([@waldyrious](https://github.com/waldyrious)) - Waldir Pimenta ([@waldyrious](https://github.com/waldyrious))
- Łukasz Jendrysik ([@scadu](https://github.com/scadu)) - Łukasz Jendrysik ([@scadu](https://github.com/scadu))
@ -547,7 +562,7 @@
#### Bugfix 🐛 #### Bugfix 🐛
- [#83](https://github.com/Schniz/fnm/pull/83) fix: remove unmatched quote written in the fish config file ([@ThomasMarcel](https://github.com/ThomasMarcel)) - [#83](https://github.com/Schniz/fnm/pull/83) fix: remove unmatched quote written in the fish config file ([@thomasmarcel](https://github.com/thomasmarcel))
#### Internal 🛠 #### Internal 🛠
@ -556,7 +571,7 @@
#### Committers: 2 #### Committers: 2
- Gal Schlezinger ([@Schniz](https://github.com/Schniz)) - Gal Schlezinger ([@Schniz](https://github.com/Schniz))
- Thomas Alcala Schneider ([@ThomasMarcel](https://github.com/ThomasMarcel)) - Thomas Alcala Schneider ([@thomasmarcel](https://github.com/thomasmarcel))
## v1.7.2 (2019-03-07) ## v1.7.2 (2019-03-07)

2
Cargo.lock generated

@ -484,7 +484,7 @@ dependencies = [
[[package]] [[package]]
name = "fnm" name = "fnm"
version = "1.24.0" version = "1.25.0"
dependencies = [ dependencies = [
"atty", "atty",
"chrono", "chrono",

2
Cargo.toml

@ -1,6 +1,6 @@
[package] [package]
name = "fnm" name = "fnm"
version = "1.24.0" version = "1.25.0"
authors = ["Gal Schlezinger <gal@spitfire.co.il>"] authors = ["Gal Schlezinger <gal@spitfire.co.il>"]
edition = "2018" edition = "2018"
build = "build.rs" build = "build.rs"

24
docs/commands.md

@ -1,7 +1,7 @@
# `fnm` # `fnm`
``` ```
fnm 1.24.0 fnm 1.25.0
A fast and simple Node.js manager A fast and simple Node.js manager
USAGE: USAGE:
@ -47,7 +47,7 @@ SUBCOMMANDS:
# `fnm alias` # `fnm alias`
``` ```
fnm-alias 1.24.0 fnm-alias 1.25.0
Alias a version to a common name Alias a version to a common name
USAGE: USAGE:
@ -75,7 +75,7 @@ ARGS:
# `fnm completions` # `fnm completions`
``` ```
fnm-completions 1.24.0 fnm-completions 1.25.0
Print shell completions to stdout Print shell completions to stdout
USAGE: USAGE:
@ -102,7 +102,7 @@ OPTIONS:
# `fnm current` # `fnm current`
``` ```
fnm-current 1.24.0 fnm-current 1.25.0
Print the current Node.js version Print the current Node.js version
USAGE: USAGE:
@ -126,7 +126,7 @@ OPTIONS:
# `fnm default` # `fnm default`
``` ```
fnm-default 1.24.0 fnm-default 1.25.0
Set a version as the default version Set a version as the default version
This is a shorthand for `fnm alias VERSION default` This is a shorthand for `fnm alias VERSION default`
@ -165,7 +165,7 @@ ARGS:
# `fnm env` # `fnm env`
``` ```
fnm-env 1.24.0 fnm-env 1.25.0
Print and set up required environment variables for fnm 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 This command generates a series of shell commands that should be evaluated by your shell to create a fnm-ready
@ -209,7 +209,7 @@ OPTIONS:
# `fnm exec` # `fnm exec`
``` ```
fnm-exec 1.24.0 fnm-exec 1.25.0
Run a command within fnm context Run a command within fnm context
Example: Example:
@ -260,7 +260,7 @@ ARGS:
# `fnm install` # `fnm install`
``` ```
fnm-install 1.24.0 fnm-install 1.25.0
Install a new Node.js version Install a new Node.js version
USAGE: USAGE:
@ -288,7 +288,7 @@ ARGS:
# `fnm list` # `fnm list`
``` ```
fnm-list 1.24.0 fnm-list 1.25.0
List all locally installed Node.js versions List all locally installed Node.js versions
USAGE: USAGE:
@ -312,7 +312,7 @@ OPTIONS:
# `fnm list` # `fnm list`
``` ```
fnm-list 1.24.0 fnm-list 1.25.0
List all locally installed Node.js versions List all locally installed Node.js versions
USAGE: USAGE:
@ -336,7 +336,7 @@ OPTIONS:
# `fnm uninstall` # `fnm uninstall`
``` ```
fnm-uninstall 1.24.0 fnm-uninstall 1.25.0
Uninstall a Node.js version 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 > Warning: when providing an alias, it will remove the Node version the alias is pointing to, along with the other
@ -376,7 +376,7 @@ ARGS:
# `fnm use` # `fnm use`
``` ```
fnm-use 1.24.0 fnm-use 1.25.0
Change Node.js version Change Node.js version
USAGE: USAGE:

2
docs/fnm.svg

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 30 KiB

After

Width:  |  Height:  |  Size: 29 KiB

Loading…
Cancel
Save