diff --git a/CHANGELOG.md b/CHANGELOG.md index fcb6456..c31747b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,27 @@ +## v1.11.0 (2019-05-27) + +#### New Feature 🎉 + +- [#98](https://github.com/Schniz/fnm/pull/98) Add `uninstall` command ([@tatchi](https://github.com/tatchi)) +- [#97](https://github.com/Schniz/fnm/pull/97) Add the ability to use system version of Node ([@Schniz](https://github.com/Schniz)) + +#### Bugfix 🐛 + +- [#103](https://github.com/Schniz/fnm/pull/103) Fix missing aliases due to newer `realpath` ([@Schniz](https://github.com/Schniz)) +- [#99](https://github.com/Schniz/fnm/pull/99) fix EACCES error when installing an already downloaded version ([@tatchi](https://github.com/tatchi)) + +#### Internal 🛠 + +- [#101](https://github.com/Schniz/fnm/pull/101) Move from base to core ([@ulrikstrid](https://github.com/ulrikstrid)) +- [#102](https://github.com/Schniz/fnm/pull/102) Implement `realpath` instead of binding to C library ([@Schniz](https://github.com/Schniz)) +- [#100](https://github.com/Schniz/fnm/pull/100) Add Semver to library, an simple non-spec implementation of semver ([@Schniz](https://github.com/Schniz)) + +#### Committers: 3 + +- Corentin Leruth ([@tatchi](https://github.com/tatchi)) +- Gal Schlezinger ([@Schniz](https://github.com/Schniz)) +- Ulrik Strid ([@ulrikstrid](https://github.com/ulrikstrid)) + ## v1.10.0 (2019-05-01) #### New Feature 🎉 diff --git a/docs/fnm.svg b/docs/fnm.svg index a2ed185..7eb7b3f 100644 --- a/docs/fnm.svg +++ b/docs/fnm.svg @@ -1 +1 @@ -evaleval`fnmeval`fnmenv`ffnfnmfnm--version1.10.0catcat.nvmrc10.9.0fnminstallLookingfornodev10.9.0fordarwinx64Downloadinghttps://nodejs.org/dist/v10.9.0/node-v10.9.0-darwin-x64.tar.xzto~/.fnm/downloads/v10.9.0.tar.xzExtracting~/.fnm/downloads/v10.9.0.tar.xzto~/.fnm/node-versions/v10.9.0fnmuseLinking~/.fnm/currentto~/.fnm/node-versions/v10.9.0/installationUsingv10.9.0nodenode-vv10.9.0eevevaeval`eval`feval`fneval`fnmeeval`fnmeneval`fnmenvfnm--fnm--vfnm--vefnm--verfnm--versfnm--versioccacat.cat.ncat.nvcat.nvmcat.nvmrfnmifnminfnminsfnminstfnminstafnmufnmusnnonodnode- \ No newline at end of file +eval`fnmeval`fnmenv`ffnfnmfnm--version1.11.0catcat.nvmrc10.9.0fnminstallLookingfornodev10.9.0fordarwinx64Downloadinghttps://nodejs.org/dist/v10.9.0/node-v10.9.0-darwin-x64.tar.xzto~/.fnm/downloads/v10.9.0.tar.xzExtracting~/.fnm/downloads/v10.9.0.tar.xzto~/.fnm/node-versions/v10.9.0fnmuseLinking~/.fnm/currentto~/.fnm/node-versions/v10.9.0/installationUsingv10.9.0node-vv10.9.0eevevaevaleval`eval`feval`fneval`fnmeneval`fnmenvfnm-fnm--fnm--vfnm--vefnm--verfnm--versifnm--versioccacat.cat.ncat.nvcat.nvmcat.nvmrfnmifnminfnminsfnminstfnminstafnminstalfnmusnnonodnodenode- \ No newline at end of file diff --git a/library/Fnm__Package.re b/library/Fnm__Package.re index c440f69..9139261 100644 --- a/library/Fnm__Package.re +++ b/library/Fnm__Package.re @@ -1 +1 @@ -let version = "1.10.0"; +let version = "1.11.0"; diff --git a/package.json b/package.json index 034df40..dd9f1ce 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "fnm", - "version": "1.10.0", + "version": "1.11.0", "description": "Fast and simple Node.js version manager, built in ReasonML", "esy": { "build": "pesy",