Browse Source

v1.5.0

remotes/origin/add-simple-redirecting-site v1.5.0
Gal Schlezinger 6 years ago
parent
commit
89e34dd1b1
  1. 29
      CHANGELOG.md
  2. 2
      README.md
  3. 2
      docs/fnm.svg
  4. 2
      library/Fnm__Package.re
  5. 2
      package.json

29
CHANGELOG.md

@ -1,3 +1,32 @@
## v1.5.0 (2019-02-21)
#### New Feature 🎉
- [#60](https://github.com/Schniz/fnm/pull/60) Disable colors for non-tty devices ([@Schniz](https://github.com/Schniz))
- [#48](https://github.com/Schniz/fnm/pull/48) Add parameters to the install script, enabling custom installs (`--install-dir` and `--skip-shell`) ([@from-nibly](https://github.com/from-nibly))
- [#54](https://github.com/Schniz/fnm/pull/54) Infer complete semver (`vX.X.X`) out of partial input (`vX`/`vX.X`). ([@Schniz](https://github.com/Schniz))
#### Bugfix 🐛
- [#58](https://github.com/Schniz/fnm/pull/58) Adding check for OSX during writing for bash shell ([@maxknee](https://github.com/maxknee))
- [#56](https://github.com/Schniz/fnm/pull/56) Correct status code on `install` failures ([@ranyitz](https://github.com/ranyitz))
#### Internal 🛠
- [#55](https://github.com/Schniz/fnm/pull/55) Make tests faster by using cnpmjs as Node.js mirror in tests ([@Schniz](https://github.com/Schniz))
#### Documentation 📝
- [#49](https://github.com/Schniz/fnm/pull/49) Add a `--fnm-dir` option to `fnm env` ([@Schniz](https://github.com/Schniz))
- [#50](https://github.com/Schniz/fnm/pull/50) Added CHANGELOG ([@Schniz](https://github.com/Schniz))
#### Committers: 4
- Gal Schlezinger ([@Schniz](https://github.com/Schniz))
- Jordan Davidson ([@from-nibly](https://github.com/from-nibly))
- Max Knee ([@maxknee](https://github.com/maxknee))
- Ran Yitzhaki ([@ranyitz](https://github.com/ranyitz))
## v1.4.0 (2019-02-18) ## v1.4.0 (2019-02-18)
#### New Feature 🎉 #### New Feature 🎉

2
README.md

@ -39,6 +39,7 @@ Set a custom directory for fnm to be installed. The default is `$HOME/.fnm`.
Skip appending shell specific loader to shell config file, based on the current user shell, defined in `$SHELL`. e.g. for Bash, `$HOME/.bashrc`. `$HOME/.zshrc` for Zsh. For Fish - `$HOME/.config/fish/config.fish` Skip appending shell specific loader to shell config file, based on the current user shell, defined in `$SHELL`. e.g. for Bash, `$HOME/.bashrc`. `$HOME/.zshrc` for Zsh. For Fish - `$HOME/.config/fish/config.fish`
Example: Example:
```bash ```bash
curl https://raw.githubusercontent.com/Schniz/fnm/master/.ci/install.sh | bash --install-dir "./.fnm" --skip-shell curl https://raw.githubusercontent.com/Schniz/fnm/master/.ci/install.sh | bash --install-dir "./.fnm" --skip-shell
``` ```
@ -90,7 +91,6 @@ Prints the required shell commands in order to configure your shell, Bash compli
## Future Plans ## Future Plans
- [ ] Feature: make versions complete the latest: `10` would infer the latest minor and patch versions of node 10. `10.1` would infer the latest patch version of node 10.1
- [ ] Feature: `fnm use --install` - [ ] Feature: `fnm use --install`
- [ ] Feature: `fnm install lts`? - [ ] Feature: `fnm install lts`?
- [ ] OSX: Add to homebrew? - [ ] OSX: Add to homebrew?

2
docs/fnm.svg

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 31 KiB

After

Width:  |  Height:  |  Size: 32 KiB

2
library/Fnm__Package.re

@ -1 +1 @@
let version = "1.4.0"; let version = "1.5.0";

2
package.json

@ -1,6 +1,6 @@
{ {
"name": "fnm", "name": "fnm",
"version": "1.4.0", "version": "1.5.0",
"description": "Fast and simple Node.js version manager, built in ReasonML", "description": "Fast and simple Node.js version manager, built in ReasonML",
"esy": { "esy": {
"build": "pesy", "build": "pesy",

Loading…
Cancel
Save